Bug 1066089: add crashtest. (test-only)

This commit is contained in:
Daniel Holbert 2014-09-23 14:12:54 -07:00
Родитель f07a938b7c
Коммит e0b9e676dc
2 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<style>
@counter-style triangle { symbols: a; }
@counter-style disc { system: extends triangle; }
</style>
<script>
function crash() {
var styleNode = document.createElement("style");
styleNode.textContent =
"@counter-style triangle { symbols: b; } " +
"@counter-style disc { system: extends triangle; } " +
"ul {}";
document.getElementsByTagName("head")[0].appendChild(styleNode);
}
</script>
</head>
<body onload="crash()">
<ul><li>Don't technically need any text here, but here's some anyway.

Просмотреть файл

@ -107,5 +107,6 @@ load 989965-1.html
load 992333-1.html
pref(dom.webcomponents.enabled,true) load 1017798-1.html
load 1028514-1.html
load 1066089-1.html
load large_border_image_width.html
load border-image-visited-link.html