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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-ui-3/text-overflow-005.html

Issue 2647353009: Import csswg-test@6212b49508f6272646ac4783fad331ff17031a10 (Closed)
Patch Set: Skip css-values-4 Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!doctype html>
2 <html class="reftest-wait">
3 <meta charset="utf-8">
4 <title>CSS-UI test: text-overflow reflow</title>
5 <meta name="assert" content="Text overflow should disappear when the container b ecomes large enough. This test is targetted at bug #14952 in Servo's incremental reflow engine.">
6 <link rel="author" title="Michael Howell" href="mailto:michael@notriddle.com">
7 <link rel="help" title="8.2. Overflow Ellipsis: the 'text-overflow' property" hr ef="http://www.w3.org/TR/css3-ui/#text-overflow">
8 <link rel="match" href="reference/text-overflow-005-ref.html">
9 <meta name="flags" content="ahem">
10 <style>html{font-family:Ahem}</style>
11 <div id=goat style="width:5em"><p style="text-overflow:ellipsis;overflow:hidden" >XXXXXXXXXX</p></div>
12 <script>
13 var goat = document.getElementById("goat");
14 requestAnimationFrame(function() {
15 goat.style.width = "20em";
16 document.documentElement.className = "";
17 });
18 </script>
19
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698