wpt / css / CSS2 / floats / float-root.html

Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/CSS2/floats/float-root.html

<!DOCTYPe html>
<link rel="help" href="https://drafts.csswg.org/css2/#propdef-float">
<link rel="match" href="float-root-ref.html">

<style>
:root {
  float: right;
}
</style>

<body>
<p>foo</p>
</body>

/css/CSS2/floats/float-root-ref.html

<!DOCTYPe html>
<style>
body {
  float: right;
  margin-top: 0;
}
</style>

<body>
<p>foo</p>
</body>