[Webkit-unassigned] [Bug 86520] New: Implement run-in remove child cases.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue May 15 13:49:40 PDT 2012


https://bugs.webkit.org/show_bug.cgi?id=86520

           Summary: Implement run-in remove child cases.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: inferno at chromium.org


part 2 of https://bugs.webkit.org/show_bug.cgi?id=86387

e.g.
<!-- 'this should' be visible -->
<!DOCTYPE html>
<html>
<style>
.runin { display: run-in }
</style>
</head>
<body>
<div>
    <div class="runin">This should </div>
    <div id="t1">run in.</div>
</div>
</body>
<script>
document.body.offsetTop;
document.getElementById('t1').style.display = 'none';
</script>
</html>

<!-- 'this should' be visible and be on a separate line -->
<!DOCTYPE html>
<html>
<style>
.runin { display: run-in }
</style>
</head>
<body>
<div>
    <div class="runin">This should </div>
    <div id="t1">run in.</div>
</div>
</body>
<script>
document.body.offsetTop;
document.getElementById('t1').style.display = 'inline';
</script>
</html>

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list