Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html |
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html b/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..dd71600337c6433ff5c6037885275a7845fe91c1 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html |
| @@ -0,0 +1,34 @@ |
| +<!DOCTYPE html> |
| +<html> |
| + <head> |
|
dgozman
2016/06/20 23:58:52
Please follow the formatting of nearby tests.
einbinder
2016/06/21 00:20:51
Done.
|
| + <link rel="stylesheet" type="text/css" href="resources/elements-panel-styles.css"> |
| + |
| + <script src="../../http/tests/inspector/inspector-test.js"></script> |
| + <script src="../../http/tests/inspector/elements-test.js"></script> |
| + <script> |
| + function test() |
| + { |
| + InspectorTest.expandElementsTree(step1); |
| + |
| + function step1() |
| + { |
| + InspectorTest.dumpElementsTree(); |
| + InspectorTest.completeTest(); |
| + } |
| + } |
| + </script> |
| + </head> |
| + <body onload="runTest()"> |
| + <p> |
| + Tests that elements panel shows all types of elements in the correct case. |
| + </p> |
| + <svg> |
| + <feComposite></feComposite> |
| + </svg> |
| + <svg> |
| + <circle></circle> |
| + </svg> |
| + <DIv></DIv> |
| + <DIV></DIV> |
| + </body> |
| +</html> |