Bug 1486536 - Crashtest. r=heycam

Differential Revision: https://phabricator.services.mozilla.com/D4362
This commit is contained in:
Emilio Cobos Álvarez 2018-08-27 21:07:59 +02:00
parent ffd639d223
commit 4e8ecbf0a6
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<script>
function start () {
try { o1 = document.createElement('div') } catch (e) {}
try { document.writeln('') } catch (e) {}
try { document.appendChild(o1) } catch (e) {}
try { document.write('>') } catch (e) {}
}
document.addEventListener('DOMContentLoaded', start)
</script>
</head>
</html>

View File

@ -292,3 +292,4 @@ pref(dom.webcomponents.shadowdom.enabled,true) load 1468640.html
load 1469076.html
load 1475003.html
load 1479681.html
load 1486536.html