Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html

Issue 2087653003: DevTools:Don't lowercase SVG and other XML-like elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698