[Webkit-unassigned] [Bug 118185] Gmail reply email - Bold and Italic style get stuck

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jul 1 04:43:38 PDT 2013


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





--- Comment #2 from Marta Pawlowska <m.pawlowska at samsung.com>  2013-07-01 04:45:36 PST ---
Minimal test case:


<html>
<head>
<script>
function boldit()
{
    var test = document.getElementById('zmiana');
    document.getSelection().selectAllChildren(test);
    document.execCommand("Bold");

}
</script>
</head>
<body contenteditable=true>
<div style="border: solid 2px; width: 100px;">
Font style:<br />
<button onclick="boldit()">B</button>
</div>
<br />
<br />
<div contenteditable="true" id="zmiana">
    <div>
    a
    </div>
    <img>
    b
</div>
</body>
</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