зеркало из https://github.com/mozilla/pjs.git
More tests for outside cases for rule 3.
This commit is contained in:
Родитель
734e6a0825
Коммит
824c20a983
|
@ -0,0 +1,5 @@
|
|||
<!DOCTYPE HTML>
|
||||
<title>Test for float placement around other float in BFC but outside containing block</title>
|
||||
<div style="float: left; width: 500px; height: 500px">
|
||||
<div style="margin-top: 300px; width: 475px; height: 10px; background: blue"></div>
|
||||
</div>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE HTML>
|
||||
<title>Test for float placement around other float in BFC but outside containing block</title>
|
||||
|
||||
<!--
|
||||
CSS2.1 9.5.1 rule 3 says:
|
||||
|
||||
The right outer edge of a left-floating box may not be to the right
|
||||
of the left outer edge of any right-floating box that is to the
|
||||
right of it. Analogous rules hold for right-floating elements.
|
||||
|
||||
-->
|
||||
|
||||
<!-- the block formatting context inside which we're testing -->
|
||||
<div style="float: left; width: 500px; height: 500px">
|
||||
|
||||
<div style="float: right; width: 50px; height: 300px"></div>
|
||||
|
||||
<div style="margin-right: 100px"> <!-- 400px wide -->
|
||||
|
||||
<!-- we're testing the position of this float -->
|
||||
<div style="float: left; width: 475px; height: 10px; background: blue"></div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
|
@ -0,0 +1,5 @@
|
|||
<!DOCTYPE HTML>
|
||||
<title>Test for float placement around other float in BFC but outside containing block</title>
|
||||
<div style="float: left; width: 500px; height: 500px">
|
||||
<div style="margin-top: 300px; margin-left: 25px; width: 475px; height: 10px; background: blue"></div>
|
||||
</div>
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE HTML>
|
||||
<title>Test for float placement around other float in BFC but outside containing block</title>
|
||||
|
||||
<!--
|
||||
CSS2.1 9.5.1 rule 3 says:
|
||||
|
||||
The right outer edge of a left-floating box may not be to the right
|
||||
of the left outer edge of any right-floating box that is to the
|
||||
right of it. Analogous rules hold for right-floating elements.
|
||||
|
||||
-->
|
||||
|
||||
<!-- the block formatting context inside which we're testing -->
|
||||
<div style="float: left; width: 500px; height: 500px">
|
||||
|
||||
<div style="float: left; width: 50px; height: 300px"></div>
|
||||
|
||||
<div style="margin-left: 100px"> <!-- 400px wide -->
|
||||
|
||||
<!-- we're testing the position of this float -->
|
||||
<div style="float: right; width: 475px; height: 10px; background: blue"></div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
|
@ -1,6 +1,9 @@
|
|||
== other-float-outside-rule-3-left.html other-float-outside-rule-3-left-ref.html
|
||||
== other-float-outside-rule-3-right.html other-float-outside-rule-3-right-ref.html
|
||||
# It's possible the spec should change here to match rule 3...
|
||||
# Maybe the spec should change here.
|
||||
fails == other-float-outside-rule-3-left-2.html other-float-outside-rule-3-left-2-ref.html
|
||||
fails == other-float-outside-rule-3-right-2.html other-float-outside-rule-3-right-2-ref.html
|
||||
# It's possible the spec should change here too.
|
||||
fails == other-float-outside-rule-7-left.html other-float-outside-rule-7-left-ref.html
|
||||
fails == other-float-outside-rule-7-right.html other-float-outside-rule-7-right-ref.html
|
||||
== float-outside-block-push.html float-outside-block-push-ref.html
|
||||
|
|
Загрузка…
Ссылка в новой задаче