forked from mirrors/gecko-dev
Automatic update from web-platform-tests Move some internal scroll anchoring tests to wpt (#23413) Change-Id: Ic7e3183b490c1f68a3b79f147d00593341b286c8 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2182735 Reviewed-by: Nick Burris <nburris@chromium.org> Commit-Queue: Navid Zolghadr <nzolghadr@chromium.org> Cr-Commit-Position: refs/heads/master@{#765973} Co-authored-by: Navid Zolghadr <nzolghadr@chromium.org> -- wpt-commits: 4334e99c203a10db1fa0d23af2b00f04d78283ed wpt-pr: 23413
25 lines
705 B
HTML
25 lines
705 B
HTML
<!doctype html>
|
|
<html class="test-wait">
|
|
<link rel="help" href="https://drafts.csswg.org/css-scroll-anchoring/">
|
|
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=746570">
|
|
<meta name="assert" content="No crash when a table with dirty internal layout is the scroll anchor."/>
|
|
<style>
|
|
body {
|
|
height:200vh;
|
|
}
|
|
table {
|
|
height: 200px;
|
|
width: 200px;
|
|
background-color: lime;
|
|
border-collapse: collapse; /* triggers problematic border calculation */
|
|
}
|
|
</style>
|
|
|
|
<table id=table1></table>
|
|
|
|
<script>
|
|
window.scrollBy(0, 10);
|
|
table1.innerHTML = "<tr><td style='background-color:lightblue'></td></tr>";
|
|
document.documentElement.classList.remove('test-wait');
|
|
</script>
|
|
</html>
|