Bug 115597

Summary: Setting user-select: none disables pasting
Product: WebKit Reporter: Ryosuke Niwa <rniwa>
Component: HTML EditingAssignee: Nobody <webkit-unassigned>
Status: NEW    
Severity: Normal CC: enrica, eoconnor
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   

Ryosuke Niwa
Reported 2013-05-04 14:17:35 PDT
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>
Attachments
Note You need to log in before you can comment on or make changes to this bug.