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

Unified Diff: third_party/WebKit/LayoutTests/external/wpt/css/CSS2/floats-clear/floats-030.xht

Issue 2818213003: Import css21/floats-clear W3C CSS Test Suite (Closed)
Patch Set: update TestExpectations Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/external/wpt/css/CSS2/floats-clear/floats-030.xht
diff --git a/third_party/WebKit/LayoutTests/external/wpt/css/CSS2/floats-clear/floats-030.xht b/third_party/WebKit/LayoutTests/external/wpt/css/CSS2/floats-clear/floats-030.xht
new file mode 100644
index 0000000000000000000000000000000000000000..a25c524d257d0a1767d7f79263304426c7947937
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/external/wpt/css/CSS2/floats-clear/floats-030.xht
@@ -0,0 +1,41 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>CSS Test: Position of floated elements in relation to previous elements</title>
+ <link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
+ <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property"/>
+ <link rel="match" href="floats-030-ref.xht" />
+
+ <meta name="flags" content="image" />
+ <meta name="assert" content="Outer top of a floating box cannot be higher than the outer top of any block or floated box generated by an element earlier in the source document." />
+ <style type="text/css">
+ #d1
+ {
+ border: solid 5px black;
+ margin: 10px;
+ height: 150px;
+ }
+ #span1, img
+ {
+ height: 1in;
+ width: 1in;
+ }
+ #span1
+ {
+ background-color: orange;
+ float: left;
+ margin-top: 10px;
+ padding-top: 10px;
+ }
+ </style>
+ </head>
+ <body>
+ <p>Test passes if the orange box is within the black box, below the words "Filler Text 1", and to the left of both the blue box and the words "Filler Text 2".</p>
+ <div id="d1">
+ <div>Filler Text 1</div>
+ <span>Filler Text 2</span>
+ <img alt="blue box" src="support/blue15x15.png" />
+ <span id="span1"></span>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698