Changeset 211118 in webkit
- Timestamp:
- Jan 24, 2017, 3:49:34 PM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 deleted
- 6 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/editing/pasteboard/paste-noplugin-expected.txt (deleted)
-
LayoutTests/editing/pasteboard/paste-noplugin-xhtml-expected.txt (deleted)
-
LayoutTests/editing/pasteboard/paste-noplugin-xhtml.xhtml (deleted)
-
LayoutTests/editing/pasteboard/paste-noplugin.html (deleted)
-
LayoutTests/platform/efl/TestExpectations (modified) (1 diff)
-
LayoutTests/platform/wk2/TestExpectations (modified) (1 diff)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/dom/ScriptableDocumentParser.cpp (modified) (2 diffs)
-
Source/WebCore/page/Settings.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r211108 r211118 1 2017-01-24 Joseph Pecoraro <pecoraro@apple.com> 2 3 Remove always true unsafePluginPastingEnabled setting 4 https://bugs.webkit.org/show_bug.cgi?id=167360 5 6 Reviewed by Andreas Kling. 7 8 * editing/pasteboard/paste-noplugin-expected.txt: Removed. 9 * editing/pasteboard/paste-noplugin-xhtml-expected.txt: Removed. 10 * editing/pasteboard/paste-noplugin-xhtml.xhtml: Removed. 11 * editing/pasteboard/paste-noplugin.html: Removed. 12 * platform/efl/TestExpectations: 13 * platform/wk2/TestExpectations: 14 1 15 2017-01-24 Zalan Bujtas <zalan@apple.com> 2 16 -
trunk/LayoutTests/platform/efl/TestExpectations
r211092 r211118 1714 1714 Bug(EFL) editing/pasteboard/paste-list-003.html [ Failure ] 1715 1715 Bug(EFL) editing/pasteboard/paste-list-004.html [ Failure ] 1716 Bug(EFL) editing/pasteboard/paste-noplugin-xhtml.xhtml [ Failure ]1717 1716 Bug(EFL) editing/pasteboard/paste-noscript-svg.html [ Failure ] 1718 1717 Bug(EFL) editing/pasteboard/paste-noscript-xhtml.xhtml [ Failure ] -
trunk/LayoutTests/platform/wk2/TestExpectations
r211024 r211118 306 306 # These tests use Flash, which is not a good idea, because it is not installed on all machines that run tests. 307 307 # WebKitTestRunner detects attempts to use Flash, and raises an assertion. 308 editing/pasteboard/paste-noplugin.html [ Skip ]309 308 fast/dom/beforeload/flash-before-load.html [ Skip ] 310 309 fast/dom/beforeload/remove-flash-in-beforeload-listener.html [ Skip ] -
trunk/Source/WebCore/ChangeLog
r211114 r211118 1 2017-01-24 Joseph Pecoraro <pecoraro@apple.com> 2 3 Remove always true unsafePluginPastingEnabled setting 4 https://bugs.webkit.org/show_bug.cgi?id=167360 5 6 Reviewed by Andreas Kling. 7 8 Setting added by Chromium and never used by other ports. 9 10 * dom/ScriptableDocumentParser.cpp: 11 (WebCore::ScriptableDocumentParser::ScriptableDocumentParser): 12 * page/Settings.in: 13 1 14 2017-01-24 Anders Carlsson <andersca@apple.com> 2 15 -
trunk/Source/WebCore/dom/ScriptableDocumentParser.cpp
r156980 r211118 28 28 29 29 #include "Document.h" 30 #include "Frame.h"31 #include "ScriptController.h"32 30 #include "Settings.h" 33 31 … … 39 37 , m_parserContentPolicy(parserContentPolicy) 40 38 { 41 if (!pluginContentIsAllowed(m_parserContentPolicy) && (!document.settings() || document.settings()->unsafePluginPastingEnabled()))39 if (!pluginContentIsAllowed(m_parserContentPolicy)) 42 40 m_parserContentPolicy = allowPluginContent(m_parserContentPolicy); 43 41 -
trunk/Source/WebCore/page/Settings.in
r211092 r211118 99 99 100 100 xssAuditorEnabled initial=false 101 unsafePluginPastingEnabled initial=true102 101 acceleratedCompositingForFixedPositionEnabled initial=defaultAcceleratedCompositingForFixedPositionEnabled 103 102 acceleratedCompositingForOverflowScrollEnabled initial=false
Note:
See TracChangeset
for help on using the changeset viewer.