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

Unified Diff: third_party/WebKit/LayoutTests/fast/table/row-height-recalc-terminates.html

Issue 2328883003: Freeze auto scrollbars while calculating table row height. (Closed)
Patch Set: Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutTableSection.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/table/row-height-recalc-terminates.html
diff --git a/third_party/WebKit/LayoutTests/fast/table/row-height-recalc-terminates.html b/third_party/WebKit/LayoutTests/fast/table/row-height-recalc-terminates.html
new file mode 100644
index 0000000000000000000000000000000000000000..634779adc2527ab6f0a09dd66b15c765ed452cc1
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/table/row-height-recalc-terminates.html
@@ -0,0 +1,29 @@
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<div id="div" style="display: none; position: absolute">
+ <div style="height: 100%;">
+ <table style="height: 100%;">
+ <tbody>
+ <tr>
+ <td>
+ <div style="height: 100%; overflow: auto;">
+ <table>
+ <tbody>
+ </tbody>
+ </table>
+ </div>
+ </td>
+ <td>
+ <img src="xxx" />
esprehn 2016/09/09 23:57:12 / doesn't do anything
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+</div>
+
+<script>
+test(function() {
+ document.getElementById("div").style.display = "";
+}, "row-height-recalc-terminates");
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutTableSection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698