forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[EFL] Add setting API for allow universal/file access from file URLs.
https://bugs.webkit.org/show_bug.cgi?id=83121 Patch by Kamil Blank <[email protected]> on 2012-08-29 Reviewed by Eric Seidel. Source/WebKit/efl: Make it possible to enable allow universal/file access from file URLs. Default value for both settings is true. * ewk/ewk_view.cpp: (_Ewk_View_Private_Data): (_ewk_view_priv_new): (ewk_view_setting_allow_universal_access_from_file_urls_set): Function sets if locally loaded documents are allowed to access remote urls. (ewk_view_setting_allow_universal_access_from_file_urls_get): (ewk_view_setting_allow_file_access_from_file_urls_set): Function sets if locally loaded documents are allowed to access other local urls. (ewk_view_setting_allow_file_access_from_file_urls_get): * ewk/ewk_view.h: Tools: Implementation of setAllowUniversalAccessFromFileURLs and setAllowFileAccessFromFileURLs. * DumpRenderTree/efl/DumpRenderTreeChrome.cpp: (DumpRenderTreeChrome::resetDefaultsToConsistentValues): * DumpRenderTree/efl/TestRunnerEfl.cpp: (TestRunner::setAllowUniversalAccessFromFileURLs): (TestRunner::setAllowFileAccessFromFileURLs): LayoutTests: Enable test connected with setAllowUniversalAccessFromFileURLs and setAllowFileAccessFromFileURLs. * platform/efl/Skipped: Canonical link: https://commits.webkit.org/113197@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@127024 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
0f219d3
commit 8af76fb
Showing
8 changed files
with
150 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2012-08-29 Kamil Blank <[email protected]> | ||
|
||
[EFL] Add setting API for allow universal/file access from file URLs. | ||
https://bugs.webkit.org/show_bug.cgi?id=83121 | ||
|
||
Reviewed by Eric Seidel. | ||
|
||
Enable test connected with setAllowUniversalAccessFromFileURLs and setAllowFileAccessFromFileURLs. | ||
|
||
* platform/efl/Skipped: | ||
|
||
2012-08-29 W. James MacLean <[email protected]> | ||
|
||
[chromium] Link highlight should clear on page navigation. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
2012-08-29 Kamil Blank <[email protected]> | ||
|
||
[EFL] Add setting API for allow universal/file access from file URLs. | ||
https://bugs.webkit.org/show_bug.cgi?id=83121 | ||
|
||
Reviewed by Eric Seidel. | ||
|
||
Make it possible to enable allow universal/file access from file URLs. | ||
Default value for both settings is true. | ||
|
||
* ewk/ewk_view.cpp: | ||
(_Ewk_View_Private_Data): | ||
(_ewk_view_priv_new): | ||
(ewk_view_setting_allow_universal_access_from_file_urls_set): Function sets if locally loaded documents | ||
are allowed to access remote urls. | ||
(ewk_view_setting_allow_universal_access_from_file_urls_get): | ||
(ewk_view_setting_allow_file_access_from_file_urls_set): Function sets if locally loaded documents | ||
are allowed to access other local urls. | ||
(ewk_view_setting_allow_file_access_from_file_urls_get): | ||
* ewk/ewk_view.h: | ||
|
||
2012-08-29 Ryuan Choi <[email protected]> | ||
|
||
[EFL] Add *explicit* keyword to constructors in WebCoreSupport | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,18 @@ | ||
2012-08-29 Kamil Blank <[email protected]> | ||
|
||
[EFL] Add setting API for allow universal/file access from file URLs. | ||
https://bugs.webkit.org/show_bug.cgi?id=83121 | ||
|
||
Reviewed by Eric Seidel. | ||
|
||
Implementation of setAllowUniversalAccessFromFileURLs and setAllowFileAccessFromFileURLs. | ||
|
||
* DumpRenderTree/efl/DumpRenderTreeChrome.cpp: | ||
(DumpRenderTreeChrome::resetDefaultsToConsistentValues): | ||
* DumpRenderTree/efl/TestRunnerEfl.cpp: | ||
(TestRunner::setAllowUniversalAccessFromFileURLs): | ||
(TestRunner::setAllowFileAccessFromFileURLs): | ||
|
||
2012-08-29 Jon Lee <[email protected]> | ||
|
||
Update TestRunner API for web notifications | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters