Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / shape-outside-floats / shape-outside-no-image-crash.html
blob2d285b4d849f853308222b3e794ef786402e4aff
1 <body id=theBody>
2 <style>
3 .bogus-shape-outside:not(h1) { shape-outside: url(#no-such-anchor); }
4 </style>
5 <script>
6 if (window.testRunner) {
7 testRunner.waitUntilDone();
8 testRunner.dumpAsText();
11 function initCF() {
12 setTimeout("tCFcrash()", 0);
15 document.addEventListener("DOMContentLoaded", initCF, false);
17 function tCFcrash() {
18 theBody.classList.add("bogus-shape-outside");
19 rr3706 = document.createRange();
20 window.getSelection().addRange(rr3706);
21 theBody.style.display = "table-row";
22 theBody.setAttribute("class", "c11");
23 if (window.testRunner)
24 testRunner.notifyDone();
26 </script>
27 This test should not crash.
29 <!--
30 Based on https://cluster-fuzz.appspot.com/testcase?key=4709517736542208
31 -->