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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/css/attribute-selector.svg

Issue 2490393002: Match camelCased SVG attributes selectors in html documents. (Closed)
Patch Set: Rebased and fixed return statement Created 4 years, 1 month 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/svg/css/attribute-selector-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
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1 .1/DTD/svg11.dtd">
3 <svg version="1.1" viewBox="0 0 800 600" xmlns="http://www.w3.org/2000/svg" widt h="600" height="500">
4 <style>
5 [viewBox] { background-color: green; }
6 [viewbox], [VIEWBOX] { background-color: red; }
7 </style>
8 <text y="20">You should see the word PASS below and the background should be gre en.</text>
9 <text y="40" id="result">FAIL</text>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13
14 if (getComputedStyle(document.querySelector("svg")).backgroundColor == "rgb( 0, 128, 0)")
15 document.getElementById("result").firstChild.data = "PASS";
16 </script>
17 </svg>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/svg/css/attribute-selector-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698