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

Side by Side Diff: LayoutTests/inspector-protocol/css/cssom-matching-rules-multiple-expected.txt

Issue 1211813002: DevTools: allow injecting CSS rules without breaking styles sidebar. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comments addressed. Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 The test verifies CSS.getMatchedStylesForNode when used concurrently with multip le CSSOM modifications.
2
3
4 Running test: testModifyRule
5 --------------
6 Original rule:
7 *#test* { regular
8 color: red;
9 }
10 *#test* { regular
11 color: green;
12 }
13 *#test* { regular
14 color: blue;
15 }
16 *#test* { regular
17 width: 10%;
18 }
19 *#test* { regular
20 width: 20%;
21 }
22 *#test* { regular
23 width: 30%;
24 }
25 *#test* { regular
26 width: 40%;
27 }
28 *#test* { regular
29 width: 50%;
30 }
31 *#test* { regular
32 width: 60%;
33 }
34 Mutating 3rd:
35 ---------------
36 *#test* { regular
37 color: red;
38 }
39 *#test* { regular
40 color: green;
41 }
42 *#test* { regular
43 color: blue;
44 }
45 *#test* { regular readonly
46 color: red;
47 }
48 *#test* { regular
49 width: 20%;
50 }
51 *#test* { regular
52 width: 30%;
53 }
54 *#test* { regular
55 width: 40%;
56 }
57 *#test* { regular
58 width: 50%;
59 }
60 *#test* { regular
61 width: 60%;
62 }
63 Mutating 4th:
64 --------------
65 *#test* { regular
66 color: red;
67 }
68 *#test* { regular
69 color: green;
70 }
71 *#test* { regular
72 color: blue;
73 }
74 *#test* { regular readonly
75 color: red;
76 }
77 *#test* { regular readonly
78 color: green;
79 }
80 *#test* { regular
81 width: 30%;
82 }
83 *#test* { regular
84 width: 40%;
85 }
86 *#test* { regular
87 width: 50%;
88 }
89 *#test* { regular
90 width: 60%;
91 }
92 Mutating 5th:
93 --------------
94 *#test* { regular
95 color: red;
96 }
97 *#test* { regular
98 color: green;
99 }
100 *#test* { regular
101 color: blue;
102 }
103 *#test* { regular readonly
104 color: red;
105 }
106 *#test* { regular readonly
107 color: green;
108 }
109 *#test* { regular readonly
110 color: blue;
111 }
112 *#test* { regular
113 width: 40%;
114 }
115 *#test* { regular
116 width: 50%;
117 }
118 *#test* { regular
119 width: 60%;
120 }
121 Delete first 3:
122 ---------------
123 *#test* { regular
124 color: red;
125 }
126 *#test* { regular
127 color: green;
128 }
129 *#test* { regular
130 color: blue;
131 }
132 *#test* { regular
133 width: 40%;
134 }
135 *#test* { regular
136 width: 50%;
137 }
138 *#test* { regular
139 width: 60%;
140 }
141
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698