OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
4 <script src="../../http/tests/inspector/elements-test.js"></script> | 4 <script src="../../../http/tests/inspector/elements-test.js"></script> |
5 <script> | 5 <script> |
6 | 6 |
7 function typeText() | 7 function typeText() |
8 { | 8 { |
9 var input = document.getElementById("input1"); | 9 var input = document.getElementById("input1"); |
10 input.focus(); | 10 input.focus(); |
11 eventSender.keyDown("B"); | 11 eventSender.keyDown("B"); |
12 eventSender.keyDown("a"); | 12 eventSender.keyDown("a"); |
13 eventSender.keyDown("r"); | 13 eventSender.keyDown("r"); |
14 } | 14 } |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 | 49 |
50 <body onload="runTest()"> | 50 <body onload="runTest()"> |
51 <p> | 51 <p> |
52 Tests that elements panel updates shadow dom tree structure upon typing. | 52 Tests that elements panel updates shadow dom tree structure upon typing. |
53 </p> | 53 </p> |
54 | 54 |
55 <div id="container"><input type="text" id="input1"></div> | 55 <div id="container"><input type="text" id="input1"></div> |
56 | 56 |
57 </body> | 57 </body> |
58 </html> | 58 </html> |
OLD | NEW |