[Webkit-unassigned] [Bug 115597] New: Setting user-select: none disables pasting

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat May 4 14:19:12 PDT 2013


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

           Summary: Setting user-select: none disables pasting
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: HTML Editing
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: rniwa at webkit.org
                CC: enrica at apple.com


We shouldn't propagate user-select value into the shadow DOM; or else we'll disallow editing operations inside an input/textarea element with user-select: none.

<div class="filter">
<input type="text" placeholder="foobar" />
</div>
<style>

.filter *{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}

</style>

-- 
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