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

Unified Diff: LayoutTests/fast/css/border-width-large.html

Issue 703323002: Continue removing testing of getPropertyCSSValue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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/css/border-width-large.html
diff --git a/LayoutTests/fast/css/border-width-large.html b/LayoutTests/fast/css/border-width-large.html
index 860ed9ca90a536d40f927bbb94d1621f01c857e6..7c64825502a853e9c052d670498a40ed34e97e63 100644
--- a/LayoutTests/fast/css/border-width-large.html
+++ b/LayoutTests/fast/css/border-width-large.html
@@ -20,10 +20,10 @@
test.style.borderWidth = "120em 110em 100em 90.1em";
var computedStyle = window.getComputedStyle(test, null);
shouldBe("computedStyle.getPropertyValue('border-width')", "'12000px 11000px 10000px 9010px'");
- shouldBe("computedStyle.getPropertyCSSValue('border-top-width').cssText","'12000px'");
- shouldBe("computedStyle.getPropertyCSSValue('border-right-width').cssText","'11000px'");
- shouldBe("computedStyle.getPropertyCSSValue('border-bottom-width').cssText","'10000px'");
- shouldBe("computedStyle.getPropertyCSSValue('border-left-width').cssText","'9010px'");
+ shouldBe("computedStyle.borderTopWidth","'12000px'");
+ shouldBe("computedStyle.borderRightWidth","'11000px'");
+ shouldBe("computedStyle.borderBottomWidth","'10000px'");
+ shouldBe("computedStyle.borderLeftWidth","'9010px'");
// clean up after ourselves
var tests_container = document.getElementById("tests_container");
tests_container.parentNode.removeChild(tests_container);

Powered by Google App Engine
This is Rietveld 408576698