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

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

Issue 2539753002: [css-ui] Import W3C Test Suite (Closed)
Patch Set: Created 4 years 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 <meta charset="utf-8">
3 <title>CSS Basic User Interface Test: text-overflow - clip - the text inline con tent overflows will be broken</title>
4 <link rel="author" title="Intel" href="http://www.intel.com/">
5 <link rel="author" title="Shiyou Tan" href="mailto:shiyoux.tan@intel.com">
6 <link rel="help" title="8.2. Overflow Ellipsis: the 'text-overflow' property" hr ef="http://www.w3.org/TR/css3-ui/#text-overflow">
7 <link rel="match" href="reference/text-overflow-001-ref.html">
8 <meta name="flags" content="">
9 <meta name="assert" content="Test checks that the inline content that overflows will be clipped. Characters may be only partially rendered when
10 text-overflow set clip">
11 <style>
12 div {
13 font-size: 10px;
14 overflow: hidden;
15 text-overflow: clip;
16 white-space: nowrap;
17 width: 120px;
18 }
19 span {
20 font-family: Ahem;
21 font-size: 30px;
22 }
23 </style>
24 <body>
25 <p>Test passes if there is a <strong>black rectangle</strong> below.</p>
26 <div>
27 <span>Test checks the content broken if the content overflows the container< /span>
28 </div>
29 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698