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

Side by Side Diff: LayoutTests/fast/dom/css-selectorText-expected.txt

Issue 1015303002: Promote new CSS parser to experimental (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
1 * 1 *
2 div 2 div
3 div span 3 div span
4 div ~ span 4 div ~ span
5 div > span 5 div > span
6 div + span 6 div + span
7 #temp 7 #temp
8 div#temp 8 div#temp
9 div.test[title="test"] 9 div.test[title="test"]
10 .test[title~="test"] 10 .test[title~="test"]
(...skipping 12 matching lines...) Expand all
23 :active 23 :active
24 :focus 24 :focus
25 :target 25 :target
26 :lang(en) 26 :lang(en)
27 :not(table) 27 :not(table)
28 :root 28 :root
29 :enabled 29 :enabled
30 :disabled 30 :disabled
31 :checked 31 :checked
32 :indeterminate 32 :indeterminate
33 :nth-child(odd) 33 :nth-child(2n+1)
34 :nth-child(even) 34 :nth-child(2n)
35 :nth-child(2n) 35 :nth-child(2n)
36 :nth-child(2n+1) 36 :nth-child(2n+1)
37 :nth-child(-n+6) 37 :nth-child(-1n+6)
38 :nth-last-child(odd) 38 :nth-last-child(2n+1)
39 :nth-last-child(even) 39 :nth-last-child(2n)
40 :nth-last-child(2n) 40 :nth-last-child(2n)
41 :nth-last-child(2n+1) 41 :nth-last-child(2n+1)
42 :nth-last-child(-n+6) 42 :nth-last-child(-1n+6)
43 :nth-of-type(odd) 43 :nth-of-type(2n+1)
44 :nth-of-type(even) 44 :nth-of-type(2n)
45 :nth-of-type(2n) 45 :nth-of-type(2n)
46 :nth-of-type(2n+1) 46 :nth-of-type(2n+1)
47 :nth-of-type(-n+6) 47 :nth-of-type(-1n+6)
48 :nth-last-of-type(odd) 48 :nth-last-of-type(2n+1)
49 :nth-last-of-type(even) 49 :nth-last-of-type(2n)
50 :nth-last-of-type(2n) 50 :nth-last-of-type(2n)
51 :nth-last-of-type(2n+1) 51 :nth-last-of-type(2n+1)
52 :nth-last-of-type(-n+6) 52 :nth-last-of-type(-1n+6)
53 :first-child 53 :first-child
54 :last-child 54 :last-child
55 :first-of-type 55 :first-of-type
56 :last-of-type 56 :last-of-type
57 :only-child 57 :only-child
58 :only-of-type 58 :only-of-type
59 :empty 59 :empty
60 ::first-line 60 ::first-line
61 ::selection 61 ::selection
62 ::before 62 ::before
63 ::after 63 ::after
64 64
OLDNEW
« no previous file with comments | « LayoutTests/fast/css/unknown-pseudo-element-matching-expected.txt ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698