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

Side by Side Diff: third_party/WebKit/LayoutTests/inspector/elements/styles/original-content-provider-expected.txt

Issue 1974543002: DevTools: do not pro-actively query all StyleSheets for their content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 Verifies that CSSStyleSheetHeader.originalContentProvider() indeed returns origi nal content. 1 Verifies that CSSStyleSheetHeader.originalContentProvider() indeed returns origi nal content.
2 2
3 3
4 Running: testSetStyle 4 Running: testSetStyle
5 original content loaded for header: set-style.css
5 == Original == 6 == Original ==
6 div { color: red; } 7 div { color: red; }
7 == Current == 8 == Current ==
8 div {EDITED: EDITED} 9 div {EDITED: EDITED}
9 10
10 Running: testSetSelector 11 Running: testSetSelector
12 original content loaded for header: set-selector.css
11 == Original == 13 == Original ==
12 div {} 14 div {}
13 == Current == 15 == Current ==
14 EDITED {} 16 EDITED {}
15 17
16 Running: testSetMedia 18 Running: testSetMedia
19 original content loaded for header: set-media.css
17 == Original == 20 == Original ==
18 @media (all) { } 21 @media (all) { }
19 == Current == 22 == Current ==
20 @media EDITED { } 23 @media EDITED { }
21 24
22 Running: testSetKeyframeKey 25 Running: testSetKeyframeKey
26 original content loaded for header: set-keyframe-key.css
23 == Original == 27 == Original ==
24 @keyframes animation { 100% { color: red; } } 28 @keyframes animation { 100% { color: red; } }
25 == Current == 29 == Current ==
26 @keyframes animation { from { color: red; } } 30 @keyframes animation { from { color: red; } }
27 31
28 Running: testAddRule 32 Running: testAddRule
33 original content loaded for header: add-rule.css
29 == Original == 34 == Original ==
30 div {} 35 div {}
31 == Current == 36 == Current ==
32 EDITED {} 37 EDITED {}
33 div {} 38 div {}
34 39
35 Running: testSetStyleSheetText 40 Running: testSetStyleSheetText
41 original content loaded for header: set-text.css
36 == Original == 42 == Original ==
37 div {} 43 div {}
38 == Current == 44 == Current ==
39 EDITED {} 45 EDITED {}
40 46
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698