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

Unified Diff: LayoutTests/fast/dom/HTMLHrElement/script-tests/color-noshade-attribute.js

Issue 162993002: hr color attribute not working. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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/fast/dom/HTMLHrElement/script-tests/color-noshade-attribute.js
diff --git a/LayoutTests/fast/dom/HTMLHrElement/script-tests/color-noshade-attribute.js b/LayoutTests/fast/dom/HTMLHrElement/script-tests/color-noshade-attribute.js
new file mode 100644
index 0000000000000000000000000000000000000000..716ca1567753ec769fd81f6a2d5207fc520058b7
--- /dev/null
+++ b/LayoutTests/fast/dom/HTMLHrElement/script-tests/color-noshade-attribute.js
@@ -0,0 +1,19 @@
+description("HTMLHeaderElement color and noshade attribute test");
+
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement1'),null).getPropertyValue('border-color')","rgb(255, 0, 0)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement1'),null).getPropertyValue('background-color')","rgb(255, 0, 0)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement2'),null).getPropertyValue('border-color')","rgb(0, 0, 255)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement2'),null).getPropertyValue('background-color')","rgb(0, 0, 255)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement3'),null).getPropertyValue('border-color')","rgb(0, 0, 0)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement3'),null).getPropertyValue('background-color')","rgb(0, 0, 0)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement4'),null).getPropertyValue('border-color')","rgb(128, 128, 128)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement4'),null).getPropertyValue('background-color')","rgb(128, 128, 128)");
+document.getElementById('hrElement5').setAttribute('color','yellow');
+document.getElementById('hrElement5').setAttribute('noshade', '');
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement5'),null).getPropertyValue('border-color')","rgb(255, 255, 0)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement5'),null).getPropertyValue('background-color')","rgb(255, 255, 0)");
+document.getElementById('hrElement6').setAttribute('noshade', '');
+document.getElementById('hrElement6').setAttribute('color','green');
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement6'),null).getPropertyValue('border-color')","rgb(0, 128, 0)");
+shouldBeEqualToString("window.getComputedStyle(document.getElementById('hrElement6'),null).getPropertyValue('background-color')","rgb(0, 128, 0)");
+
« no previous file with comments | « LayoutTests/fast/dom/HTMLHrElement/hr-color-noshade-attribute-expected.txt ('k') | Source/core/html/HTMLHRElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698