Commit 99c5832c authored by Manuel Rego Casasnovas's avatar Manuel Rego Casasnovas Committed by Commit Bot

Move overflow recalc regression test to WPT

In r729750 we added a regression test as an internal test
but it's better to move the test into WPT.

BUG=1036644

Change-Id: I16bcfc99ef2faff90bd03020a8cc4809689d2d5c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1994299Reviewed-by: default avatarPhilip Rogers <pdr@chromium.org>
Commit-Queue: Manuel Rego <rego@igalia.com>
Cr-Commit-Position: refs/heads/master@{#730180}
parent 6200190a
<!DOCTYPE html> <!DOCTYPE html>
<script src="../../resources/run-after-layout-and-paint.js"></script> <html class="reftest-wait">
<meta charset="utf-8">
<title>CSS Overflow: Overflow recalc after font-size change</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-overflow/">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1036644">
<link rel="match" href="reference/overflow-recalc-001-ref.html">
<meta name="assert" content="Checks that overflow of an inline element is properly recomputed after changes on the descendants.">
<script src="/common/reftest-wait.js"></script>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style> <style>
#scroller { #scroller {
height: 200px; height: 200px;
...@@ -12,6 +21,7 @@ ...@@ -12,6 +21,7 @@
height: 200px; height: 200px;
overflow: hidden; overflow: hidden;
font-family: Ahem; font-family: Ahem;
line-height: 1;
color: green; color: green;
} }
#red { #red {
...@@ -34,7 +44,9 @@ ...@@ -34,7 +44,9 @@
</div> </div>
<script> <script>
runAfterLayoutAndPaint(function() { requestAnimationFrame(() => requestAnimationFrame(() => {
inlineinner.style.fontSize = "200px"; inlineinner.style.fontSize = "200px";
}, true); takeScreenshot();
}));
</script> </script>
</html>
<!DOCTYPE html> <!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: Reference Overflow recalc after font-size change</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<style> <style>
#scroller { #scroller {
height: 200px; height: 200px;
...@@ -13,5 +16,5 @@ ...@@ -13,5 +16,5 @@
</style> </style>
<p>Test passes if there is <strong>no red</strong>.</p> <p>Test passes if there is <strong>no red</strong>.</p>
<div id="scroller"> <div id="scroller">
<div id="wrapper"> <div id="wrapper"></div>
</div> </div>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment