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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-invalid-color-values-expected.txt

Issue 1797323003: DevTools: Hex colors aren't forced to uppercase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tests Created 4 years, 9 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: third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-invalid-color-values-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-invalid-color-values-expected.txt b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-invalid-color-values-expected.txt
index e7fdf936bd28ff797e77049cf9c518997ad2de76..29d72a7ab5e2b473c88b64cc5617f3e5eb94ab64 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-invalid-color-values-expected.txt
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/styles-invalid-color-values-expected.txt
@@ -7,8 +7,8 @@ color: red
simple: true
original: red
nickname: red
- hex: #FF0000
- shorthex: #F00
+ hex: #ff0000
+ shorthex: #f00
rgb: rgb(255, 0, 0)
hsl: hsl(0, 100%, 50%)
@@ -16,7 +16,7 @@ color: #F00
simple: true
original: #F00
nickname: red
- hex: #FF0000
+ hex: #ff0000
shorthex: #F00
rgb: rgb(255, 0, 0)
hsl: hsl(0, 100%, 50%)
@@ -25,8 +25,8 @@ color: rgb(255,0,0)
simple: true
original: rgb(255,0,0)
nickname: red
- hex: #FF0000
- shorthex: #F00
+ hex: #ff0000
+ shorthex: #f00
rgb: rgb(255,0,0)
hsl: hsl(0, 100%, 50%)
@@ -34,8 +34,8 @@ color: rgb(300,0,0)
simple: true
original: rgb(300,0,0)
nickname: red
- hex: #FF0000
- shorthex: #F00
+ hex: #ff0000
+ shorthex: #f00
rgb: rgb(255, 0, 0)
hsl: hsl(0, 100%, 50%)
@@ -43,8 +43,8 @@ color: rgb(255,-10,0)
simple: true
original: rgb(255,-10,0)
nickname: red
- hex: #FF0000
- shorthex: #F00
+ hex: #ff0000
+ shorthex: #f00
rgb: rgb(255, 0, 0)
hsl: hsl(0, 100%, 50%)
@@ -52,8 +52,8 @@ color: rgb(110%, 0%, 0%)
simple: true
original: rgb(110%, 0%, 0%)
nickname: red
- hex: #FF0000
- shorthex: #F00
+ hex: #ff0000
+ shorthex: #f00
rgb: rgb(255, 0, 0)
hsl: hsl(0, 100%, 50%)
@@ -69,8 +69,8 @@ color: hsl(-120, 100%, 50%)
simple: true
original: hsl(-120, 100%, 50%)
nickname: blue
- hex: #0000FF
- shorthex: #00F
+ hex: #0000ff
+ shorthex: #00f
rgb: rgb(0, 0, 255)
hsl: hsl(-120, 100%, 50%)
@@ -78,8 +78,8 @@ color: hsl(-120, 200%, 200%)
simple: true
original: hsl(-120, 200%, 200%)
nickname: white
- hex: #FFFFFF
- shorthex: #FFF
+ hex: #ffffff
+ shorthex: #fff
rgb: rgb(255, 255, 255)
hsl: hsl(-120, 200%, 200%)
@@ -120,7 +120,7 @@ color: hsl(200.5,0%,50%)
color: hsla(200,1.5%,50%,1)
simple: true
original: hsla(200,1.5%,50%,1)
- hex: #7E8081
+ hex: #7e8081
rgb: rgb(126, 128, 129)
hsl: hsl(200, 1%, 50%)
@@ -160,8 +160,8 @@ color: rgba(255, 0, 0, 5)
simple: true
original: rgba(255, 0, 0, 5)
nickname: red
- hex: #FF0000
- shorthex: #F00
+ hex: #ff0000
+ shorthex: #f00
rgb: rgb(255, 0, 0)
hsl: hsl(0, 100%, 50%)

Powered by Google App Engine
This is Rietveld 408576698