Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / elements / dom-search-crash.html
blob70458b4a259b9e5bef5ac7416679d966d88782e3
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script>
5 function test()
7 InspectorTest.runTestSuite([
8 function testSetUp(next)
10 InspectorTest.domModel.requestDocument(next);
13 function testNoCrash(next)
15 InspectorTest.domModel.performSearch("FooBar", false, next);
17 ]);
19 </script>
20 </head>
22 <body>
23 <p>
24 Tests that elements panel search is not crashing on documentElement-less cases.
25 </p>
26 <iframe src="resources/dom-search-crash-iframe.html" onload="runTest()"></iframe>
27 </body>
28 </html>