| Index: third_party/WebKit/LayoutTests/fast/css/variables/computed-style.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/variables/computed-style.html b/third_party/WebKit/LayoutTests/fast/css/variables/computed-style.html
|
| index da64b01340e95a8671c29baaf06b5645bc1c8f18..586d2ce09d8132b340713af55991fda0a0b7f0cf 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css/variables/computed-style.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/css/variables/computed-style.html
|
| @@ -5,6 +5,7 @@
|
| <style>
|
| #color {
|
| --color-value: blue;
|
| + --accordionColor:#0000ee;
|
| background-color: var(--color-value);
|
| }
|
|
|
| @@ -42,6 +43,10 @@ test(function() {
|
| }, 'background-color property, color value');
|
|
|
| test(function() {
|
| + assert_equals(getComputedStyle(color).getPropertyValue('--accordionColor'), '#0000ee');
|
| +}, 'property value, accordionColor');
|
| +
|
| +test(function() {
|
| assert_equals(getComputedStyle(float_pixel).borderWidth, '0px');
|
| }, 'border-width property, border-style = none');
|
|
|
|
|