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

Side by Side Diff: LayoutTests/fast/selectors/attr-list-01.html

Issue 14980012: Recognize html whitespaces as separators for attribute selectors. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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/fast/selectors/attr-list-01-expected.html » ('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 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Whitespace-separated attribute selectors</title>
5 <style>
6 span { color: red; }
7 [data-list~="b"] { color: green; }
8 #t1:not([data-list~=" z"]) { color: green; }
9 #t2:not([data-list~="u "]) { color: green; }
10 </style>
11 </head>
12 <body>
13 <p>
14 <span data-list="a b ">This</span>
15 <span data-list="a&#10;b&#13;c">text</span>
16 <span data-list="a &#12;b &#12;">should</span>
17 <span id="t1" data-list="w z x&#09;">be</span>
18 <span id="t2" data-list="u&#09;">green</span>
19 </p>
20 </body>
21 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/selectors/attr-list-01-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698