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

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jan 27 15:47:40 PST 2011


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


Darin Adler <darin at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #80370|review?                     |review+
               Flag|                            |




--- Comment #5 from Darin Adler <darin at apple.com>  2011-01-27 15:47:40 PST ---
(From update of attachment 80370)
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?

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