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

Unified Diff: third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-resolved-values.html

Issue 2102843002: Fix getComputedStyle for non-box-layout elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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-resolved-values.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-resolved-values.html b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-resolved-values.html
index 806dc5d0820cb5dc3fa585354136c7592782e2e7..685be70b698194d6c9c28f24a619e42461817998 100644
--- a/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-resolved-values.html
+++ b/third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-resolved-values.html
@@ -101,6 +101,11 @@
padding: 20px;
}
+ #ruby {
+ bottom: 1%;
+ position: relative;
+ }
+
</style>
<script>
@@ -163,6 +168,7 @@
test('mixed');
test('rel_positioned');
test('abs_positioned');
+ test('ruby');
}
</script>
</head>
@@ -195,5 +201,8 @@
<div class="outer" id="abs_container">
<div class="testbox" id="abs_positioned">Absolute Positioned</div>
</div>
+ <div class="outer">
+ <ruby id="ruby"></ruby>
+ </div>
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698