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

Unified Diff: third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html

Issue 2735903006: Reland of Add test for crbug.com/667045 (Closed)
Patch Set: - Created 3 years, 9 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/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html
diff --git a/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html
new file mode 100644
index 0000000000000000000000000000000000000000..680d57482d2ffb11150aa51409a2817bc53f3eb2
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/paint/invalidation/table/composited-cell-collapsed-border-add-anonymous.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<style>
+td { will-change: transform; }
+</style>
+Passes if no crash.
+<table id="table" style="border-collapse: collapse">
+ <tr>
+ <td style="border: 4px solid pink"></td>
+ <td></td>
+ </tr>
+</table>
+<script src="../../../resources/run-after-layout-and-paint.js"></script>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+runAfterLayoutAndPaint(function() {
+ table.appendChild(document.createTextNode("A"));
+}, true);
+</script>

Powered by Google App Engine
This is Rietveld 408576698