Bug 893515 - Add crashtest. r=me

This commit is contained in:
Jesse Ruderman 2017-10-25 14:58:31 -04:00
parent 9712d25eef
commit 006061ed6c
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
document.designMode = 'on';
var otherDoc = document.implementation.createDocument("", "", null);
otherDoc.adoptNode(document.getElementById("t"));
}
</script>
</head>
<body onload="setTimeout(boom, 0);"><textarea id="t"></textarea></body>
</html>

View File

@ -1,6 +1,7 @@
load 448064.xhtml # This test instantiates a11y, so be careful about adding tests before it
load 471493.xul
asserts-if(!browserIsRemote,2) load 884202.html
load 893515.html
# last_test_to_unload_testsuite.xul MUST be the last test in the list because it
# is responsible for shutting down accessibility service affecting later tests.