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

Unified Diff: LayoutTests/fast/box-sizing/table-collapse-expected.html

Issue 25206002: A height of a table which has position: absolute and box-sizing: border-box ignores half of the bor… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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/box-sizing/table-collapse-expected.html
diff --git a/LayoutTests/fast/box-sizing/table-collapse-expected.html b/LayoutTests/fast/box-sizing/table-collapse-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..24359355efeccc592b6bf719930f2ba082884cde
--- /dev/null
+++ b/LayoutTests/fast/box-sizing/table-collapse-expected.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html>
+<head>
+</head>
+<body>
+ <style>
+ table {
+ border-collapse: collapse;
+ border: 25px solid green;
+ border-top: 10px solid cyan;
+ position: absolute;
+ outline: 5px solid blue;
+ }
+ div {
+ background-color: yellow;
+ height: 50px;
+ width: 50px;
+ }
+ </style>
+ <table>
+ <tbody>
+ <tr>
+ <td>
+ <div></div>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <table style="top: 200px;">
+ <tbody>
+ <tr>
+ <td>
+ <div></div>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <table style="bottom: 100px;">
+ <tbody>
+ <tr>
+ <td>
+ <div></div>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698