Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / dom / nodesFromRect / nodesFromRect-continuation-crash.html
blobaffa5e511ec77fd4002cbf169994f2d05dc5468a
1 <html>
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
7 window.onload = function() {
8 if (!window.internals)
9 alert("This test requires window.internals");
10 var nodes = internals.nodesFromRect(document, 100, 100, 20, 20, 20, 20, false, false);
11 alert("PASS: This test did not trigger an ASSERT");
13 </script>
14 </head>
15 <body style="background:gray;">
16 <article style="width:100px;position:relative;">
17 <a id="anchor" href="#">
18 <div style="position: relative;">
19 <img alt="Test image" style="max-width: 100px;" height="100" width="100">
20 </div>
21 </a>
22 </article>
23 </body>
24 </html>