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

Unified Diff: LayoutTests/inspector/elements/styles/styles-update-from-js-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, 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector/elements/styles/styles-update-from-js-expected.txt
diff --git a/LayoutTests/inspector/elements/styles/styles-update-from-js-expected.txt b/LayoutTests/inspector/elements/styles/styles-update-from-js-expected.txt
deleted file mode 100644
index b33f55171dc14e4b2caa39cdbd61f28820665d33..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/styles-update-from-js-expected.txt
+++ /dev/null
@@ -1,102 +0,0 @@
-Tests that changes to an inline style and ancestor/sibling className from JavaScript are reflected in the Styles pane and Elements tree.
-
-
-Running: testInit
-
-Running: testSetStyleAttribute
-<div id="container" style="color: #daC0DE; border: 1px solid black;">…</div>
-[expanded]
-element.style { ()
- color: #daC0DE;
- border: 1px solid black;
- border-top-color: black;
- border-top-style: solid;
- border-top-width: 1px;
- border-right-color: black;
- border-right-style: solid;
- border-right-width: 1px;
- border-bottom-color: black;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- border-left-color: black;
- border-left-style: solid;
- border-left-width: 1px;
-
-[expanded]
-div { (user agent stylesheet)
- display: block;
-
-
-Running: testSetStyleCSSText
-<div id="container" style="color: rgb(192, 255, 238);">…</div>
-[expanded]
-element.style { ()
- color: rgb(192, 255, 238);
-
-[expanded]
-div { (user agent stylesheet)
- display: block;
-
-
-Running: testSetViaParsedAttributes
-<div id="container" style="color: rgb(192, 255, 238); border: 3px dashed green;">…</div>
-[expanded]
-element.style { ()
- color: rgb(192, 255, 238);
- border: 3px dashed green;
- border-top-color: green;
- border-top-style: dashed;
- border-top-width: 3px;
- border-right-color: green;
- border-right-style: dashed;
- border-right-width: 3px;
- border-bottom-color: green;
- border-bottom-style: dashed;
- border-bottom-width: 3px;
- border-left-color: green;
- border-left-style: dashed;
- border-left-width: 3px;
-
-[expanded]
-div { (user agent stylesheet)
- display: block;
-
-
-Running: testSetViaAncestorClass
-<div id="child"></div>
-[expanded]
-element.style { ()
-
-[expanded]
-.red div:first-child { (styles-update-from-js.html:4 -> styles-update-from-js.html:4:1)
- background-color: red;
-
-[expanded]
-div { (user agent stylesheet)
- display: block;
-
-======== Inherited from div#container.red ========
-[expanded]
-Style Attribute { ()
- color: rgb(192, 255, 238);
-
-
-Running: testSetViaSiblingAttr
-<div id="childSibling"></div>
-[expanded]
-element.style { ()
-
-[expanded]
-div[foo="bar"] + div { (styles-update-from-js.html:8 -> styles-update-from-js.html:8:1)
- background-color: blue;
-
-[expanded]
-div { (user agent stylesheet)
- display: block;
-
-======== Inherited from div#container.red ========
-[expanded]
-Style Attribute { ()
- color: rgb(192, 255, 238);
-
-

Powered by Google App Engine
This is Rietveld 408576698