gecko-dev/layout/reftests/details-summary/move-float-summary-to-different-details-ref.html
Hiroyuki Ikezoe a9221913fd Bug 1377648 - Test case for reconstruction details element when removing summary element. r=heycam
Currently these two test cases don't fail either on gecko or stylo even if the
patches in this patch series are not applied, but will fail once the patch for
bug 1374175 (i.e. not returning reconstruction damage from
compute_style_difference in some cases) landed without this patch series on
stylo. That means that, on stylo, reconstruction of details element on removing
child summary triggered by RecreateFramesForContent in
MaybeRecreateContainerForFrameRemoval has not worked well.

MozReview-Commit-ID: El6p0UwWaJb

--HG--
extra : rebase_source : 4f06423f8a23a3d430b7a0d22ff07c316f3e633d
2017-07-05 15:53:04 +09:00

17 lines
384 B
HTML

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<body>
<details>
<summary style="float:left;">Summary 2</summary>
<summary>Summary 1</summary>
<p>This is the details 1.</p>
</details>
<details>
<p>This is the details 2.</p>
</details>
</body>
</html>