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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
dgozman 2016/06/20 23:58:52 Please follow the formatting of nearby tests.
einbinder 2016/06/21 00:20:51 Done.
4 <link rel="stylesheet" type="text/css" href="resources/elements-panel-st yles.css">
5
6 <script src="../../http/tests/inspector/inspector-test.js"></script>
7 <script src="../../http/tests/inspector/elements-test.js"></script>
8 <script>
9 function test()
10 {
11 InspectorTest.expandElementsTree(step1);
12
13 function step1()
14 {
15 InspectorTest.dumpElementsTree();
16 InspectorTest.completeTest();
17 }
18 }
19 </script>
20 </head>
21 <body onload="runTest()">
22 <p>
23 Tests that elements panel shows all types of elements in the correct case.
24 </p>
25 <svg>
26 <feComposite></feComposite>
27 </svg>
28 <svg>
29 <circle></circle>
30 </svg>
31 <DIv></DIv>
32 <DIV></DIV>
33 </body>
34 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698