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

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: 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <HTML xmlns="http://www.w3.org/1999/xhtml"> 1 <!DOCTYPE html>
2 <Head> 2 <html>
3 <head>
4 <link rel="stylesheet" type="text/css" href="resources/elements-panel-styles.css ">
5
3 <script src="../../http/tests/inspector/inspector-test.js"></script> 6 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/elements-test.js"></script> 7 <script src="../../http/tests/inspector/elements-test.js"></script>
5 <script> 8 <script>
6 <![CDATA[
7 function test() 9 function test()
8 { 10 {
9 InspectorTest.expandElementsTree(step1); 11 InspectorTest.expandElementsTree(step1);
10 12
11 function step1() 13 function step1()
12 { 14 {
13 InspectorTest.dumpElementsTree(); 15 InspectorTest.dumpElementsTree();
14 InspectorTest.completeTest(); 16 InspectorTest.completeTest();
15 } 17 }
16 } 18 }
17 ]]>
18 </script> 19 </script>
19 </Head> 20 </head>
20
21 <body onload="runTest()"> 21 <body onload="runTest()">
22 <p> 22 <p>
23 Tests that elements panel shows XML dom tree structure with closing tags for all elements. 23 Tests that elements panel shows all types of elements in the correct case.
24 </p> 24 </p>
25 25 <svg>
26 <hr></hr> 26 <feComposite></feComposite>
27 <p>Paragraph BR test<br/>Next line 27 </svg>
28 </p> 28 <svg>
29 <![CDATA[ CData Content ]]> 29 <circle></circle>
30 30 </svg>
31 <img alt="Random Image"></img> 31 <DIv></DIv>
32 32 <DIV></DIV>
33 </body> 33 </body>
34 </HTML> 34 </html>
OLDNEW
« 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