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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-over-constrained.html

Issue 1988813002: getComputedStyle should handle over-constrained properties. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update test case's expected file Created 4 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: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-over-constrained.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-over-constrained.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-over-constrained.html
new file mode 100644
index 0000000000000000000000000000000000000000..320837509b5a8535c57f8c5b7c6bc84beaa07875
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-over-constrained.html
@@ -0,0 +1,44 @@
+<!DOCTYPE html>
+<style>
+ #container {
+ width: 500px;
+ }
+ #container > div {
+ background-color: red;
+ position: relative;
+ left: 5px;
+ right: 5px;
+ top: 5px;
+ bottom: 5px;
+ }
+</style>
+<script src="../../../resources/js-test.js"></script>
+<p>
+ getComputedStyle should handle over-constrained properties.
+</p>
+<div id="container">
+ <div id=ltr>
+ If direction of containing block is ltr, bottom and right should be negative
+ </div>
+ bottom and right should be negative
+</div>
+<div id="container" dir="rtl">
+ <div id=rtl>
+ If direction of containing block is rtl, bottom and left should be negative
+ </div>
+ bottom and left should be negative
+</div>
+<script>
+ var ltrElement = document.getElementById("ltr");
+ var rtlElement = document.getElementById("rtl");
+
+ shouldBe("window.getComputedStyle(ltrElement).top", "'5px'");
+ shouldBe("window.getComputedStyle(ltrElement).right", "'-5px'");
+ shouldBe("window.getComputedStyle(ltrElement).bottom", "'-5px'");
+ shouldBe("window.getComputedStyle(ltrElement).left", "'5px'");
+
+ shouldBe("window.getComputedStyle(rtlElement).top", "'5px'");
+ shouldBe("window.getComputedStyle(rtlElement).right", "'5px'");
+ shouldBe("window.getComputedStyle(rtlElement).bottom", "'-5px'");
+ shouldBe("window.getComputedStyle(rtlElement).left", "'-5px'");
+</script>

Powered by Google App Engine
This is Rietveld 408576698