layout/reftests/css-break/box-decoration-break-bug-1249913.html
author Sandor Molnar <smolnar@mozilla.com>
Wed, 16 Jul 2025 08:01:46 +0300 (6 hours ago)
changeset 796723 8b0d004a4d3f03394d1e7072f95d95a65415a0dc
parent 491930 a31610c04020a76fdce6f31835788229ea2c30c1
permissions -rw-r--r--
Revert "Bug 1976137: apply code formatting via Lando" for causing build bustages @ Platform.cpp This reverts commit a2bbd0d672396015e05d323e236619a39b34570a. Revert "Bug 1976137 part 4: Remove DocAccessibleChild overrides of SendCaretMoveEvent and SendFocusEvent. r=eeejay" This reverts commit 102a35ed28b8cc8f3ed069ba46e8e1949a6348bf. Revert "Bug 1976137 part 3: Remove aCaretRect argument from PlatformCaretMoveEvent and PlatformFocusEvent. r=eeejay" This reverts commit b46aa6464fceaab0d48edada247983c6879e0c74. Revert "Bug 1976137 part 2: Move UpdateSystemCaretFor to Platform.cpp. r=eeejay" This reverts commit 21f1cfda868038cb85a01c45512699f4812b9045. Revert "Bug 1976137 part 1: Unify Windows AccessibleWrap::UpdateSystemCaretFor. r=eeejay" This reverts commit 05970d567b067b63a45659f56dd77d9190e5e7f7.
<!DOCTYPE html>
<!--
     Any copyright is dedicated to the Public Domain.
     http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
  <meta charset="utf-8">
  <title>'box-decoration-break' with child overflow</title>
  <link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1249913">
  <link rel="help" href="https://drafts.csswg.org/css-break/#break-decoration">
  <link rel="match" href="box-decoration-break-bug-1249913-ref.html">
  <style type="text/css">
body,html { color:black; background:white; font-size:16px; padding:0; margin:0; }

p { height: 50px; width: 100px; margin:0; background:lime; }
.clone { height: 10px; box-decoration-break:clone; }
.border { border:3px solid black; }
.outline { outline:3px solid brown; }
.shadow { box-shadow: 2px 2px 0 0 blue; }

.columns {
      -ms-columns: 2;
  -webkit-columns: 2;
          columns: 2;
      -ms-column-fill: auto;
  -webkit-column-fill: auto;
          column-fill: auto;
  width:500px;
  height:30px;
  border:solid silver;
  margin: 2px 0;
}

.columns div { height: 10px; }

</style>
</head>
<body>

<div class="columns"><div class="clone border"><p></p></div></div>
<div class="columns"><div class="clone outline"><p></p></div></div>
<div class="columns"><div class="clone shadow"><p></p></div></div>
<div class="columns"><div class="clone border outline"><p></p></div></div>
<div class="columns"><div class="clone border shadow"><p></p></div></div>

<div class="columns"><div class="border"><p></p></div></div>
<div class="columns"><div class="outline"><p></p></div></div>
<div class="columns"><div class="shadow"><p></p></div></div>
<div class="columns"><div class="border outline"><p></p></div></div>
<div class="columns"><div class="border shadow"><p></p></div></div>

</body>
</html>