mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 58eb04cecbbec2e18531ab440225e38944a9c444
This commit is contained in:
parent
25e8bf69e6
commit
665817d2a6
35333 changed files with 1818077 additions and 16036 deletions
|
@ -0,0 +1,19 @@
|
|||
<!doctype html>
|
||||
<html class="reftest-wait">
|
||||
<meta charset="utf-8">
|
||||
<title>CSS-UI test: text-overflow reflow</title>
|
||||
<meta name="assert" content="Text overflow should disappear when the container becomes large enough. This test is targetted at bug #14952 in Servo's incremental reflow engine.">
|
||||
<link rel="author" title="Michael Howell" href="mailto:michael@notriddle.com">
|
||||
<link rel="help" title="8.2. Overflow Ellipsis: the 'text-overflow' property" href="http://www.w3.org/TR/css3-ui/#text-overflow">
|
||||
<link rel="match" href="reference/text-overflow-005-ref.html">
|
||||
<meta name="flags" content="ahem">
|
||||
<style>html{font-family:Ahem}</style>
|
||||
<div id=goat style="width:5em"><p style="text-overflow:ellipsis;overflow:hidden">XXXXXXXXXX</p></div>
|
||||
<script>
|
||||
var goat = document.getElementById("goat");
|
||||
requestAnimationFrame(function() {
|
||||
goat.style.width = "20em";
|
||||
document.documentElement.className = "";
|
||||
});
|
||||
</script>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue