OLD | NEW |
1 Tests that elements panel shows all types of elements in the correct case. | 1 Tests that elements panel shows all types of elements in the correct case. |
2 | 2 |
3 | 3 |
4 <!DOCTYPE html> | 4 <!DOCTYPE html> |
5 - <html> | 5 - <html> |
6 - <head> | 6 - <head> |
7 <link rel="stylesheet" type="text/css" href="resources/elements-panel-
styles.css"> | 7 <link rel="stylesheet" type="text/css" href="resources/elements-panel-
styles.css"> |
8 <script src="../../http/tests/inspector/inspector-test.js"></script> | 8 <script src="../../http/tests/inspector/inspector-test.js"></script> |
9 <script src="../../http/tests/inspector/elements-test.js"></script> | 9 <script src="../../http/tests/inspector/elements-test.js"></script> |
10 - <script> | 10 - <script> |
11 \nfunction test()\n{\n InspectorTest.expandElementsTree(step1);
\n\n function step1()\n {\n InspectorTest.dumpElementsTree();\n
InspectorTest.completeTest();\n }\n}\n | 11 function test()\n{\n InspectorTest.expandElementsTree(step1);\n
\n function step1()\n {\n InspectorTest.dumpElementsTree();\n
InspectorTest.completeTest();\n }\n}\n |
12 </script> | 12 </script> |
13 </head> | 13 </head> |
14 - <body onload="runTest()"> | 14 - <body onload="runTest()"> |
15 <p>\nTests that elements panel shows all types of elements in the corr
ect case.\n</p> | 15 <p>\nTests that elements panel shows all types of elements in the corr
ect case.\n</p> |
16 - <svg> | 16 - <svg> |
17 <feComposite></feComposite> | 17 <feComposite></feComposite> |
18 </svg> | 18 </svg> |
19 - <svg> | 19 - <svg> |
20 <circle></circle> | 20 <circle></circle> |
21 </svg> | 21 </svg> |
22 <div></div> | 22 <div></div> |
23 <div></div> | 23 <div></div> |
24 </body> | 24 </body> |
25 </html> | 25 </html> |
26 | 26 |
OLD | NEW |