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

Side by Side Diff: LayoutTests/svg/css/getComputedStyle-basic.xhtml

Issue 302553002: Computed style of resource references drops hash from fragment (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add test Created 6 years, 7 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 | LayoutTests/svg/css/getComputedStyle-basic-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 <html xmlns="http://www.w3.org/1999/xhtml">
2 <body> 2 <body>
3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/ xlink"> 3 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/ xlink">
4 <g id="g" stroke="orange" stroke-width="2px"> 4 <g id="g" stroke="orange" stroke-width="2px" marker-start="url(#pserver)">
5 <rect id="rect" width="100" height="100" fill="blue" /> 5 <rect id="rect" width="100" height="100" fill="blue" />
6 </g> 6 </g>
7 </svg> 7 </svg>
8 <div id="log"></div> 8 <div id="log"></div>
9 <script src="../../fast/css/getComputedStyle/resources/property-names.js"/> 9 <script src="../../fast/css/getComputedStyle/resources/property-names.js"/>
10 <script><![CDATA[ 10 <script><![CDATA[
11 if (window.testRunner) 11 if (window.testRunner)
12 testRunner.dumpAsText(); 12 testRunner.dumpAsText();
13 13
14 function debugLog(s) { 14 function debugLog(s) {
(...skipping 15 matching lines...) Expand all
30 debugLog(elementId + ": style.getPropertyValue(" + name + ") : " + val ue); 30 debugLog(elementId + ": style.getPropertyValue(" + name + ") : " + val ue);
31 debugLog(elementId + ": style.getPropertyCSSValue(" + name + ") : " + cssValue); 31 debugLog(elementId + ": style.getPropertyCSSValue(" + name + ") : " + cssValue);
32 } 32 }
33 } 33 }
34 34
35 printStyle("rect"); 35 printStyle("rect");
36 printStyle("g"); 36 printStyle("g");
37 ]]></script> 37 ]]></script>
38 </body> 38 </body>
39 </html> 39 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/css/getComputedStyle-basic-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698