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

Unified Diff: LayoutTests/inspector/elements/styles/styles-invalid-color-values-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-invalid-color-values-expected.txt
diff --git a/LayoutTests/inspector/elements/styles/styles-invalid-color-values-expected.txt b/LayoutTests/inspector/elements/styles/styles-invalid-color-values-expected.txt
deleted file mode 100644
index 5e13ade8f81e68488cb9f9b811a9ead6db5a7a5a..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/styles-invalid-color-values-expected.txt
+++ /dev/null
@@ -1,173 +0,0 @@
-Tests that the displayed string for colors correctly handles clipped CSS values and RGB percentages.
-
-
-Running: testColors
-
-color: red
- simple: true
- original: red
- nickname: red
- hex: #FF0000
- shorthex: #F00
- rgb: rgb(255, 0, 0)
- hsl: hsl(0, 100%, 50%)
-
-color: #F00
- simple: true
- original: #F00
- nickname: red
- hex: #FF0000
- shorthex: #F00
- rgb: rgb(255, 0, 0)
- hsl: hsl(0, 100%, 50%)
-
-color: rgb(255,0,0)
- simple: true
- original: rgb(255,0,0)
- nickname: red
- hex: #FF0000
- shorthex: #F00
- rgb: rgb(255, 0, 0)
- hsl: hsl(0, 100%, 50%)
-
-color: rgb(300,0,0)
- simple: true
- original: rgb(300,0,0)
- nickname: red
- hex: #FF0000
- shorthex: #F00
- rgb: rgb(255, 0, 0)
- hsl: hsl(0, 100%, 50%)
-
-color: rgb(255,-10,0)
- simple: true
- original: rgb(255,-10,0)
- nickname: red
- hex: #FF0000
- shorthex: #F00
- rgb: rgb(255, 0, 0)
- hsl: hsl(0, 100%, 50%)
-
-color: rgb(110%, 0%, 0%)
- simple: true
- original: rgb(110%, 0%, 0%)
- nickname: red
- hex: #FF0000
- shorthex: #F00
- rgb: rgb(255, 0, 0)
- hsl: hsl(0, 100%, 50%)
-
-color: rgba(0,0,0,0.5)
- simple: false
- original: rgba(0,0,0,0.5)
- rgb: null
- rgba: rgba(0, 0, 0, 0.5)
- hsl: null
- hsla: hsla(0, 0%, 0%, 0.5)
-
-color: hsl(-120, 100%, 50%)
- simple: true
- original: hsl(-120, 100%, 50%)
- nickname: blue
- hex: #0000FF
- shorthex: #00F
- rgb: rgb(0, 0, 255)
- hsl: hsl(240, 100%, 50%)
-
-color: hsl(-120, 200%, 200%)
- simple: true
- original: hsl(-120, 200%, 200%)
- nickname: white
- hex: #FFFFFF
- shorthex: #FFF
- rgb: rgb(255, 255, 255)
- hsl: hsl(0, 100%, 100%)
-
-color: hsl(-120, -200%, -200%)
- simple: true
- original: hsl(-120, -200%, -200%)
- nickname: black
- hex: #000000
- shorthex: #000
- rgb: rgb(0, 0, 0)
- hsl: hsl(0, 0%, 0%)
-
-color: hsla(-120, -200%, -200%, -5)
- simple: false
- original: hsla(-120, -200%, -200%, -5)
- nickname: transparent
- rgb: null
- rgba: rgba(0, 0, 0, 0)
- hsl: null
- hsla: hsla(0, 0%, 0%, 0)
-
-color: hsla(240,100%,50%,0.05)
- simple: false
- original: hsla(240,100%,50%,0.05)
- rgb: null
- rgba: rgba(0, 0, 255, 0.05)
- hsl: null
- hsla: hsla(240, 100%, 50%, 0.05)
-
-color: hsl(200.5,0%,50%)
- simple: true
- original: hsl(200.5,0%,50%)
- nickname: grey
- hex: #808080
- rgb: rgb(128, 128, 128)
- hsl: hsl(0, 0%, 50%)
-
-color: hsla(200,1.5%,50%,1)
- simple: true
- original: hsla(200,1.5%,50%,1)
- hex: #7E8081
- rgb: rgb(126, 128, 129)
- hsl: hsl(200, 1%, 50%)
-
-color: rgba(255, 0, 0, -5)
- simple: false
- original: rgba(255, 0, 0, -5)
- rgb: null
- rgba: rgba(255, 0, 0, 0)
- hsl: null
- hsla: hsla(0, 100%, 50%, 0)
-
-color: rgba(255, 0, 0, 5)
- simple: true
- original: rgba(255, 0, 0, 5)
- nickname: red
- hex: #FF0000
- shorthex: #F00
- rgb: rgb(255, 0, 0)
- hsl: hsl(0, 100%, 50%)
-
-Running: testInvalidColors
-
-SUCCESS: parsed invalid color none to null
-
-SUCCESS: parsed invalid color #0000 to null
-
-SUCCESS: parsed invalid color #00000 to null
-
-SUCCESS: parsed invalid color #ggg to null
-
-SUCCESS: parsed invalid color rgb(a,b,c) to null
-
-SUCCESS: parsed invalid color rgb(a,b,c,d) to null
-
-SUCCESS: parsed invalid color rgb(1,1,1.2) to null
-
-SUCCESS: parsed invalid color rgba(0,0,0,1%) to null
-
-SUCCESS: parsed invalid color hsl(0,0,0) to null
-
-SUCCESS: parsed invalid color hsl(0%, 0%, 0%) to null
-
-SUCCESS: parsed invalid color hsl(0, 0%, 0) to null
-
-SUCCESS: parsed invalid color hsl(a,b,c) to null
-
-SUCCESS: parsed invalid color hsla(0,0,0,0) to null
-
-SUCCESS: parsed invalid color hsla to null
-

Powered by Google App Engine
This is Rietveld 408576698