Title: [127434] trunk
- Revision
- 127434
- Author
- [email protected]
- Date
- 2012-09-03 18:21:55 -0700 (Mon, 03 Sep 2012)
Log Message
[WK2][WTR] Implement WebKitEnableCaretBrowsing attribute in testRunner.overridePreference
https://bugs.webkit.org/show_bug.cgi?id=95576
Patch by Kangil Han <[email protected]> on 2012-09-03
Reviewed by Maciej Stachowiak.
Added a line of macro to implement WebKitEnableCaretBrowsing attribute in testRunner.overridePreference
Source/WebKit2:
* WebProcess/InjectedBundle/InjectedBundle.cpp:
(WebKit::InjectedBundle::overrideBoolPreferenceForTestRunner):
LayoutTests:
* platform/wk2/Skipped: Removed fast/repaint/no-caret-repaint-in-non-content-editable-element.html test case.
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (127433 => 127434)
--- trunk/LayoutTests/ChangeLog 2012-09-03 22:39:34 UTC (rev 127433)
+++ trunk/LayoutTests/ChangeLog 2012-09-04 01:21:55 UTC (rev 127434)
@@ -1,3 +1,14 @@
+2012-09-03 Kangil Han <[email protected]>
+
+ [WK2][WTR] Implement WebKitEnableCaretBrowsing attribute in testRunner.overridePreference
+ https://bugs.webkit.org/show_bug.cgi?id=95576
+
+ Reviewed by Maciej Stachowiak.
+
+ Added a line of macro to implement WebKitEnableCaretBrowsing attribute in testRunner.overridePreference
+
+ * platform/wk2/Skipped: Removed fast/repaint/no-caret-repaint-in-non-content-editable-element.html test case.
+
2012-09-03 Kenichi Ishibashi <[email protected]>
[Chromium] Unreviewed test expectations update after r127410
Modified: trunk/LayoutTests/platform/wk2/Skipped (127433 => 127434)
--- trunk/LayoutTests/platform/wk2/Skipped 2012-09-03 22:39:34 UTC (rev 127433)
+++ trunk/LayoutTests/platform/wk2/Skipped 2012-09-04 01:21:55 UTC (rev 127434)
@@ -203,7 +203,6 @@
fast/canvas/webgl/webgl-specific.html
fast/harness/override-preferences-2.html
fast/images/animated-gif-restored-from-bfcache.html
-fast/repaint/no-caret-repaint-in-non-content-editable-element.html
fast/text/zero-font-size.html
# WTR needs an implementation of applicationCacheDiskUsageForOrigin
Modified: trunk/Source/WebKit2/ChangeLog (127433 => 127434)
--- trunk/Source/WebKit2/ChangeLog 2012-09-03 22:39:34 UTC (rev 127433)
+++ trunk/Source/WebKit2/ChangeLog 2012-09-04 01:21:55 UTC (rev 127434)
@@ -1,3 +1,15 @@
+2012-09-03 Kangil Han <[email protected]>
+
+ [WK2][WTR] Implement WebKitEnableCaretBrowsing attribute in testRunner.overridePreference
+ https://bugs.webkit.org/show_bug.cgi?id=95576
+
+ Reviewed by Maciej Stachowiak.
+
+ Added a line of macro to implement WebKitEnableCaretBrowsing attribute in testRunner.overridePreference
+
+ * WebProcess/InjectedBundle/InjectedBundle.cpp:
+ (WebKit::InjectedBundle::overrideBoolPreferenceForTestRunner):
+
2012-09-03 Allan Sandfeld Jensen <[email protected]>
[Qt] Not all activated elements highlighted, but some frames are
Modified: trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.cpp (127433 => 127434)
--- trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.cpp 2012-09-03 22:39:34 UTC (rev 127433)
+++ trunk/Source/WebKit2/WebProcess/InjectedBundle/InjectedBundle.cpp 2012-09-04 01:21:55 UTC (rev 127434)
@@ -173,7 +173,8 @@
macro(WebKitWebAudioEnabled, WebAudioEnabled, webAudioEnabled) \
macro(WebKitWebGLEnabled, WebGLEnabled, webGLEnabled) \
macro(WebKitXSSAuditorEnabled, XSSAuditorEnabled, xssAuditorEnabled) \
- macro(WebKitShouldRespectImageOrientation, ShouldRespectImageOrientation, shouldRespectImageOrientation)
+ macro(WebKitShouldRespectImageOrientation, ShouldRespectImageOrientation, shouldRespectImageOrientation) \
+ macro(WebKitEnableCaretBrowsing, CaretBrowsingEnabled, caretBrowsingEnabled)
if (preference == "WebKitAcceleratedCompositingEnabled")
enabled = enabled && LayerTreeHost::supportsAcceleratedCompositing();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes