OLD | NEW |
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 Loading... |
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> |
OLD | NEW |