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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/max-width-integer-overflow.html

Issue 1921973005: [css tables] Don't pass table width increase due to % columns to parents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge ToT 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/table/max-width-integer-overflow.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/max-width-integer-overflow.html b/third_party/WebKit/LayoutTests/fast/table/max-width-integer-overflow.html
index c093d8df7f8b81841016f13736f69625da87a490..712610760af3fd6d978cde0f879ebbce118ae710 100644
--- a/third_party/WebKit/LayoutTests/fast/table/max-width-integer-overflow.html
+++ b/third_party/WebKit/LayoutTests/fast/table/max-width-integer-overflow.html
@@ -1,30 +1,26 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-<html>
-<head>
-</head>
-<body>
- <table style="width: 780px; background-color: red;" cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <table cellspacing="0" cellpadding="0">
- <tr>
- <td>
- <div style="width: 100%;">
- <table style="background-color: green;">
- <tr style="height: 20px;">
- <td width="100%"></td>
- <td width="300"></td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- </table>
- </td>
- <td>
- <div style="width: 10px; background-color: green; height: 24px;"></div>
- </td>
- </tr>
- </table>
-</body>
-</html>
+<p>There should be a smattering of blue and green in this bar. TODO(dgrogan):
+convert to checkLayout or just delete.</p>
+<table style="width: 780px; background-color: blue;" cellspacing="0" cellpadding="0">
+ <tr>
+ <td>
+ <table cellspacing="0" cellpadding="0">
+ <tr>
+ <td>
+ <div style="width: 100%;">
+ <table style="background-color: green;">
+ <tr style="height: 20px;">
+ <td width="100%"></td>
+ <td width="300"></td>
+ </tr>
+ </table>
+ </div>
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td>
+ <div style="width: 10px; background-color: green; height: 24px;"></div>
+ </td>
+ </tr>
+</table>

Powered by Google App Engine
This is Rietveld 408576698