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

Unified Diff: LayoutTests/inspector-protocol/css/css-set-property-text-expected.txt

Issue 1187193005: DevTools: migrate from CSS.setPropertyText to CSS.setStyleText (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: for landing 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/inspector-protocol/css/css-set-property-text-expected.txt
diff --git a/LayoutTests/inspector-protocol/css/css-set-property-text-expected.txt b/LayoutTests/inspector-protocol/css/css-set-property-text-expected.txt
deleted file mode 100644
index e2a7f95c434461a57380a62ad053d367f3f42360..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector-protocol/css/css-set-property-text-expected.txt
+++ /dev/null
@@ -1,234 +0,0 @@
-==== Initial style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- margin: 0;
- border: 0;
- display: flex; /* flex FTW! */
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-
-Running test: testEditProperty
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- content: 'EDITED PROPERTY';
- border: 0;
- display: flex; /* flex FTW! */
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-
-Running test: testBreakingCommentEditProperty
-Expected protocol error: SyntaxError The property '/*<--OPENED COMMENT' could not be set.
-
-Running test: testInsertFirstProperty
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- content: 'INSERTED PROPERTY';
- padding: 0;
- margin: 0;
- border: 0;
- display: flex; /* flex FTW! */
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-
-Running test: testInsertLastProperty
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- margin: 0;
- border: 0;
- display: flex; /* flex FTW! */
- content: 'INSERTED PROPERTY';
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-
-Running test: testInsertMultipleProperties
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- margin: 0;
- content: 'INSERTED #1';content: 'INSERTED #2';
- border: 0;
- display: flex; /* flex FTW! */
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-
-Running test: testInsertPropertyInEmptyRule
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- margin: 0;
- border: 0;
- display: flex; /* flex FTW! */
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
- content: 'INSERTED PROPERTY';
-}
-
-
-Running test: testInsertPropertyOutsideRule
-Expected protocol error: Source range didn't match any existing property source range nor any property insertion point
-
-Running test: testInsertBreakingPropertyInLastEmptyRule
-Expected protocol error: SyntaxError The property 'content: 'INSERTED PROPERTY'/*' could not be set.
-
-Running test: testDisableProperty
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- /* margin: 0; */
- border: 0;
- display: flex; /* flex FTW! */
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-
-Running test: testRedo
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- margin: 0;
- border: 0;
- display: flex; /* flex FTW! */
- align-items: center;
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-==== Style sheet text ====
-* {
- box-sizing: border-box;
-}
-
-html, body, div, a {
- /* resetting some properties */
- padding: 0;
- margin: 0;
- border: 0;
- display: flex; /* flex FTW! */
- align-items: center;
-}
-
-p:first-letter {
- font-size: 200%;
-}
-
-.empty-rule {
-}
-
-
-Running test: testInvalidParameters
-Expected protocol error: range.startLine must be a non-negative integer
-
-Running test: testNegativeRangeParameters
-Expected protocol error: range.startLine must be a non-negative integer
-
-Running test: testStartLineOutOfBounds
-Expected protocol error: Specified range is out of bounds
-
-Running test: testEndLineOutOfBounds
-Expected protocol error: Specified range is out of bounds
-
-Running test: testStartColumnBeyondLastLineCharacter
-Expected protocol error: Specified range is out of bounds
-
-Running test: testEndColumnBeyondLastLineCharacter
-Expected protocol error: Specified range is out of bounds
-
-Running test: testInsertBeyondLastCharacterOfLastLine
-Expected protocol error: Specified range is out of bounds
-
-Running test: testReversedRange
-Expected protocol error: Range start must not succeed its end
-

Powered by Google App Engine
This is Rietveld 408576698