Removed float-non-replaced-width-013, 014, 015 and 016 until

Tue, 21 Feb 2012 22:22:38 -0500

author
Gérard Talbot <css21testsuite@gtalbot.org>
date
Tue, 21 Feb 2012 22:22:38 -0500
changeset 2758
efa7989c291a
parent 2757
9f4e2c20fd60
child 2759
0fee4ec1d17c

Removed float-non-replaced-width-013, 014, 015 and 016 until
we can assess the spec on this; see
http://lists.w3.org/Archives/Public/www-style/2012Feb/1062.html

contributors/gtalbot/submitted/float-non-replaced-width-013.xht file | annotate | diff | revisions
contributors/gtalbot/submitted/float-non-replaced-width-014.xht file | annotate | diff | revisions
contributors/gtalbot/submitted/float-non-replaced-width-015.xht file | annotate | diff | revisions
contributors/gtalbot/submitted/float-non-replaced-width-016.xht file | annotate | diff | revisions
     1.1 --- a/contributors/gtalbot/submitted/float-non-replaced-width-013.xht	Tue Feb 21 22:16:19 2012 -0500
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,57 +0,0 @@
     1.4 -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     1.5 -
     1.6 -<html xmlns="http://www.w3.org/1999/xhtml">
     1.7 -
     1.8 - <head>
     1.9 -
    1.10 -  <title>CSS Test: float - nested floats and shrink-to-fit width calculation</title>
    1.11 -
    1.12 -  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
    1.13 -  <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite" />
    1.14 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#float-width" title="10.3.5 Floating, non-replaced elements" />
    1.15 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property" />
    1.16 -
    1.17 -  <meta content="" name="flags" />
    1.18 -
    1.19 -  <style type="text/css"><![CDATA[
    1.20 -  div#floated-left-parent
    1.21 -  {
    1.22 -  background: green;  
    1.23 -  float: left;
    1.24 -  }
    1.25 -
    1.26 -  div#floated-left-child
    1.27 -  {
    1.28 -  background: white;
    1.29 -  float: left;
    1.30 -  height: 100px;
    1.31 -  width: 100px;
    1.32 -  }
    1.33 -
    1.34 -  div#floated-right-child
    1.35 -  {
    1.36 -  float: right;
    1.37 -  width: 100px;
    1.38 -  }
    1.39 -  
    1.40 -  /*
    1.41 -  The right outer edge of a left-floating box may not be 
    1.42 -  to the right of the left outer edge of any right-floating box 
    1.43 -  that is next to it.
    1.44 -  So, div#floated-left-parent's minimum preferred width should be 200px.
    1.45 -  */
    1.46 -  ]]></style>
    1.47 -
    1.48 - </head>
    1.49 -
    1.50 - <body>
    1.51 -
    1.52 -  <p>Test passes if there is a <strong>filled green square</strong>.</p>
    1.53 -
    1.54 -   <div id="floated-left-parent">
    1.55 -     <div id="floated-left-child"></div>
    1.56 -     <div id="floated-right-child"></div>
    1.57 -   </div>
    1.58 -
    1.59 - </body>
    1.60 -</html>
    1.61 \ No newline at end of file
     2.1 --- a/contributors/gtalbot/submitted/float-non-replaced-width-014.xht	Tue Feb 21 22:16:19 2012 -0500
     2.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.3 @@ -1,58 +0,0 @@
     2.4 -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     2.5 -
     2.6 -<html xmlns="http://www.w3.org/1999/xhtml">
     2.7 -
     2.8 - <head>
     2.9 -
    2.10 -  <title>CSS Test: float - nested floats and shrink-to-fit width calculation</title>
    2.11 -
    2.12 -  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
    2.13 -  <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite" />
    2.14 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#float-width" title="10.3.5 Floating, non-replaced elements" />
    2.15 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property" />
    2.16 -
    2.17 -  <meta content="" name="flags" />
    2.18 -
    2.19 -  <style type="text/css"><![CDATA[
    2.20 -  div#floated-left-parent
    2.21 -  {
    2.22 -  background: green;
    2.23 -  float: left;
    2.24 -  }
    2.25 -
    2.26 -  div#floated-left-child
    2.27 -  {
    2.28 -  float: left;
    2.29 -  width: 100px;
    2.30 -
    2.31 -  }
    2.32 -
    2.33 -  div#floated-right-child
    2.34 -  {
    2.35 -  background: white;
    2.36 -  float: right;
    2.37 -  height: 100px;
    2.38 -  width: 100px;
    2.39 -  }
    2.40 -  
    2.41 -  /*
    2.42 -  The right outer edge of a left-floating box may not be 
    2.43 -  to the right of the left outer edge of any right-floating box 
    2.44 -  that is next to it.
    2.45 -  So, div#floated-left-parent's minimum preferred width should be 200px.
    2.46 -  */
    2.47 -  ]]></style>
    2.48 -
    2.49 - </head>
    2.50 -
    2.51 - <body>
    2.52 -
    2.53 -  <p>Test passes if there is a <strong>filled green square</strong>.</p>
    2.54 -
    2.55 -   <div id="floated-left-parent">
    2.56 -     <div id="floated-left-child"></div>
    2.57 -     <div id="floated-right-child"></div>
    2.58 -   </div>
    2.59 -
    2.60 - </body>
    2.61 -</html>
    2.62 \ No newline at end of file
     3.1 --- a/contributors/gtalbot/submitted/float-non-replaced-width-015.xht	Tue Feb 21 22:16:19 2012 -0500
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,57 +0,0 @@
     3.4 -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     3.5 -
     3.6 -<html xmlns="http://www.w3.org/1999/xhtml">
     3.7 -
     3.8 - <head>
     3.9 -
    3.10 -  <title>CSS Test: float - nested floats and shrink-to-fit width calculation</title>
    3.11 -
    3.12 -  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
    3.13 -  <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite" />
    3.14 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#float-width" title="10.3.5 Floating, non-replaced elements" />
    3.15 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property" />
    3.16 -
    3.17 -  <meta content="" name="flags" />
    3.18 -
    3.19 -  <style type="text/css"><![CDATA[
    3.20 -  div#floated-right-parent
    3.21 -  {
    3.22 -  background: green;  
    3.23 -  float: right;
    3.24 -  }
    3.25 -
    3.26 -  div#floated-left-child
    3.27 -  {
    3.28 -  background: white;
    3.29 -  float: left;
    3.30 -  height: 100px;
    3.31 -  width: 100px;
    3.32 -  }
    3.33 -
    3.34 -  div#floated-right-child
    3.35 -  {
    3.36 -  float: right;
    3.37 -  width: 100px;
    3.38 -  }
    3.39 -  
    3.40 -  /*
    3.41 -  The right outer edge of a left-floating box may not be 
    3.42 -  to the right of the left outer edge of any right-floating box 
    3.43 -  that is next to it.
    3.44 -  So, div#floated-right-parent's minimum preferred width should be 200px.
    3.45 -  */
    3.46 -  ]]></style>
    3.47 -
    3.48 - </head>
    3.49 -
    3.50 - <body>
    3.51 -
    3.52 -  <p>Test passes if there is a <strong>filled green square</strong>.</p>
    3.53 -
    3.54 -   <div id="floated-right-parent">
    3.55 -     <div id="floated-left-child"></div>
    3.56 -     <div id="floated-right-child"></div>
    3.57 -   </div>
    3.58 -
    3.59 - </body>
    3.60 -</html>
    3.61 \ No newline at end of file
     4.1 --- a/contributors/gtalbot/submitted/float-non-replaced-width-016.xht	Tue Feb 21 22:16:19 2012 -0500
     4.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.3 @@ -1,58 +0,0 @@
     4.4 -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     4.5 -
     4.6 -<html xmlns="http://www.w3.org/1999/xhtml">
     4.7 -
     4.8 - <head>
     4.9 -
    4.10 -  <title>CSS Test: float - nested floats and shrink-to-fit width calculation</title>
    4.11 -
    4.12 -  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
    4.13 -  <link rel="author" title="James Hopkins" href="http://idreamincode.co.uk/css21testsuite" />
    4.14 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#float-width" title="10.3.5 Floating, non-replaced elements" />
    4.15 -  <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property" />
    4.16 -
    4.17 -  <meta content="" name="flags" />
    4.18 -
    4.19 -  <style type="text/css"><![CDATA[
    4.20 -  div#floated-right-parent
    4.21 -  {
    4.22 -  background: green;
    4.23 -  float: right;
    4.24 -  }
    4.25 -
    4.26 -  div#floated-left-child
    4.27 -  {
    4.28 -  float: left;
    4.29 -  width: 100px;
    4.30 -
    4.31 -  }
    4.32 -
    4.33 -  div#floated-right-child
    4.34 -  {
    4.35 -  background: white;
    4.36 -  float: right;
    4.37 -  height: 100px;
    4.38 -  width: 100px;
    4.39 -  }
    4.40 -
    4.41 -  /*
    4.42 -  The right outer edge of a left-floating box may not be 
    4.43 -  to the right of the left outer edge of any right-floating box 
    4.44 -  that is next to it.
    4.45 -  So, div#floated-right-parent's minimum preferred width should be 200px.
    4.46 -  */
    4.47 -  ]]></style>
    4.48 -
    4.49 - </head>
    4.50 -
    4.51 - <body>
    4.52 -
    4.53 -  <p>Test passes if there is a <strong>filled green square</strong>.</p>
    4.54 -
    4.55 -   <div id="floated-right-parent">
    4.56 -     <div id="floated-left-child"></div>
    4.57 -     <div id="floated-right-child"></div>
    4.58 -   </div>
    4.59 -
    4.60 - </body>
    4.61 -</html>
    4.62 \ No newline at end of file

mercurial