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

Side by Side Diff: LayoutTests/inspector/elements/styles/styles-disable-then-enable-overriden-ua-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 disabling shorthand removes the "overriden" mark from the UA shorthan d it overrides.
2
3 Before disable
4 [expanded]
5 element.style { ()
6 margin: 10px;
7
8 [expanded]
9 body { (user agent stylesheet)
10 display: block;
11 /-- overloaded --/ margin: 8px;
12
13 After disable
14 [expanded]
15 element.style { ()
16 /-- overloaded --/ /-- disabled --/ /* margin: 10px; */
17
18 [expanded]
19 body { (user agent stylesheet)
20 display: block;
21 margin: 8px;
22
23 After enable
24 [expanded]
25 element.style { ()
26 margin: 10px;
27
28 [expanded]
29 body { (user agent stylesheet)
30 display: block;
31 /-- overloaded --/ margin: 8px;
32
33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698