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

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: Reformat test 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-xhtml-structure.xhtml-disabled b/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html
similarity index 55%
copy from third_party/WebKit/LayoutTests/inspector/elements/elements-panel-xhtml-structure.xhtml-disabled
copy to third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html
index 81f9a88a4eadb62c77870ece86fc6d4d842c868b..d9c174c0387569ac81ddad330cb9d66e8e5ad9a7 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-xhtml-structure.xhtml-disabled
+++ b/third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case.html
@@ -1,9 +1,11 @@
-<HTML xmlns="http://www.w3.org/1999/xhtml">
-<Head>
+<!DOCTYPE html>
+<html>
+<head>
+<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>
-<![CDATA[
function test()
{
InspectorTest.expandElementsTree(step1);
@@ -14,21 +16,19 @@ function test()
InspectorTest.completeTest();
}
}
-]]>
</script>
-</Head>
-
+</head>
<body onload="runTest()">
<p>
-Tests that elements panel shows XML dom tree structure with closing tags for all elements.
-</p>
-
-<hr></hr>
-<p>Paragraph BR test<br/>Next line
+Tests that elements panel shows all types of elements in the correct case.
</p>
-<![CDATA[ CData Content ]]>
-
-<img alt="Random Image"></img>
-
+<svg>
+ <feComposite></feComposite>
+</svg>
+<svg>
+ <circle></circle>
+</svg>
+<DIv></DIv>
+<DIV></DIV>
</body>
-</HTML>
+</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/elements/elements-panel-correct-case-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698