| Index: third_party/WebKit/LayoutTests/paint/tables/table-cell-changes-to-colgroup.html
|
| diff --git a/third_party/WebKit/LayoutTests/paint/tables/table-cell-changes-to-colgroup.html b/third_party/WebKit/LayoutTests/paint/tables/table-cell-changes-to-colgroup.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d1444acc6737650e8ac1d36d02436d4b88bbde15
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/paint/tables/table-cell-changes-to-colgroup.html
|
| @@ -0,0 +1,31 @@
|
| +<!doctype html>
|
| +<script src="../../resources/run-after-layout-and-paint.js"></script>
|
| +<!-- Test passes if it does not crash on an ASAN build. -->
|
| +<style>
|
| +.c7 {
|
| + background: white;
|
| + display: table-column-group;
|
| +}
|
| +.c13 {
|
| + display: table-cell;
|
| + border-style: ridge;
|
| + will-change: transform;
|
| +}
|
| +</style>
|
| +<script>
|
| +var label = document.createElement('label');
|
| +label.setAttribute('class', 'c13');
|
| +document.documentElement.appendChild(label);
|
| +var colgroup = document.createElement('colgroup');
|
| +colgroup.setAttribute('class', 'c13');
|
| +document.documentElement.appendChild(colgroup);
|
| +var aside = document.createElement('aside');
|
| +aside.setAttribute('class', 'c13');
|
| +document.documentElement.appendChild(aside);
|
| +if (window.testRunner)
|
| + testRunner.waitUntilDone();
|
| +runAfterLayoutAndPaint(function() {
|
| + colgroup.setAttribute('class', 'c11');
|
| + label.setAttribute('class', 'c7');
|
| +}, true);
|
| +</script>
|
|
|