[Webkit-unassigned] [Bug 52785] execCommand("Paste") doesn't work in WebKitTestRunner

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 27 23:45:25 PST 2011


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





--- Comment #7 from Maciej Stachowiak <mjs at apple.com>  2011-01-27 23:45:25 PST ---
(In reply to comment #5)
> (From update of attachment 80370 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=80370&action=review
> 
> > Source/WebKit2/Shared/WebPreferencesStore.h:69
> >      macro(AuthorAndUserStylesEnabled, authorAndUserStylesEnabled, Bool, bool, true) \
> >      macro(PaginateDuringLayoutEnabled, paginateDuringLayoutEnabled, Bool, bool, false) \
> >      macro(DOMPasteAllowed, domPasteAllowed, Bool, bool, false) \
> > +    macro(JavaScriptCanAccessClipboard, javaScriptCanAccessClipboard, Bool, bool, false) \
> >      macro(ShouldPrintBackgrounds, shouldPrintBackgrounds, Bool, bool, false) \
> 
> Can we keep this sorted alphabetically?
> 
> > Source/WebKit2/WebProcess/WebPage/WebPage.cpp:1268
> >      settings->setAuthorAndUserStylesEnabled(store.getBoolValueForKey(WebPreferencesKey::authorAndUserStylesEnabledKey()));
> >      settings->setPaginateDuringLayoutEnabled(store.getBoolValueForKey(WebPreferencesKey::paginateDuringLayoutEnabledKey()));
> >      settings->setDOMPasteAllowed(store.getBoolValueForKey(WebPreferencesKey::domPasteAllowedKey()));
> > +    settings->setJavaScriptCanAccessClipboard(store.getBoolValueForKey(WebPreferencesKey::javaScriptCanAccessClipboardKey()));
> >      settings->setShouldPrintBackgrounds(store.getBoolValueForKey(WebPreferencesKey::shouldPrintBackgroundsKey()));
> 
> Can we keep this sorted alphabetically?

I ended up not sorting because I didn't want to inject an unrelated change, but yes, I believe this can be sorted as an independent cleanup.

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