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

Side by Side Diff: LayoutTests/inspector/elements/styles/styles-add-blank-property-expected.txt

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 Tests that adding a new blank property works.
2
3 Text
4 Before append:
5 [expanded]
6 element.style { ()
7 font-size: 12px;
8
9 [expanded]
10 div { (user agent stylesheet)
11 display: block;
12
13 After insertion at index 0:
14 [expanded]
15 element.style { ()
16 margin-left: 3px;
17 font-size: 12px;
18
19 [expanded]
20 div { (user agent stylesheet)
21 display: block;
22
23 After appending and changing a 'compound' property:
24 [expanded]
25 element.style { ()
26 margin-left: 3px;
27 font-size: 12px;
28 color: red;
29 font-weight: bold;
30
31 [expanded]
32 div { (user agent stylesheet)
33 display: block;
34
35 After insertion at index 2:
36 [expanded]
37 element.style { ()
38 margin-left: 3px;
39 font-size: 12px;
40 /-- overloaded --/ third-property: third-value;
41 color: red;
42 font-weight: bold;
43
44 [expanded]
45 div { (user agent stylesheet)
46 display: block;
47
48
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698