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

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: Fix getComputedStyle for non-box-layout elements Created 4 years, 5 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-resolved-values-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..842b5f94f02e7d4f6de25ce40f871d16a703682b 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 {
+ left: 10%;
+ 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 class="testbox" id="ruby"></ruby>
+ </div>
</body>
</html>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/getComputedStyle/getComputedStyle-resolved-values-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698