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

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

Issue 1954423002: DevTools: introduce CSSStyleSheetHeader.originalContentProvider() method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simplify-network-project
Patch Set: address comments 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
(Empty)
1 Verifies that CSSStyleSheetHeader.originalContentProvider() indeed returns origi nal content.
2
3
4 Running: testSetStyle
5 == Original ==
6 div { color: red; }
7 == Current ==
8 div {EDITED: EDITED}
9
10 Running: testSetSelector
11 == Original ==
12 div {}
13 == Current ==
14 EDITED {}
15
16 Running: testSetMedia
17 == Original ==
18 @media (all) { }
19 == Current ==
20 @media EDITED { }
21
22 Running: testSetKeyframeKey
23 == Original ==
24 @keyframes animation { 100% { color: red; } }
25 == Current ==
26 @keyframes animation { from { color: red; } }
27
28 Running: testAddRule
29 == Original ==
30 div {}
31 == Current ==
32 EDITED {}
33 div {}
34
35 Running: testSetStyleSheetText
36 == Original ==
37 div {}
38 == Current ==
39 EDITED {}
40
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698