Title: [131839] trunk/Tools
Revision
131839
Author
[email protected]
Date
2012-10-18 19:14:17 -0700 (Thu, 18 Oct 2012)

Log Message

[EFL][DRT] Make textareas resizable by default.
https://bugs.webkit.org/show_bug.cgi?id=99719

Patch by Raphael Kubo da Costa <[email protected]> on 2012-10-18
Reviewed by Gyuyoung Kim.

Enable painting the textarea resizer at the corner by default,
just as it already is the case for WK2. This eases the work needed
to get the pixel tests in shape and run by the bots, as both the
WK1 and WK2 ports will have more similar results.

* DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
(DumpRenderTreeChrome::resetDefaultsToConsistentValues):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (131838 => 131839)


--- trunk/Tools/ChangeLog	2012-10-19 01:53:03 UTC (rev 131838)
+++ trunk/Tools/ChangeLog	2012-10-19 02:14:17 UTC (rev 131839)
@@ -1,3 +1,18 @@
+2012-10-18  Raphael Kubo da Costa  <[email protected]>
+
+        [EFL][DRT] Make textareas resizable by default.
+        https://bugs.webkit.org/show_bug.cgi?id=99719
+
+        Reviewed by Gyuyoung Kim.
+
+        Enable painting the textarea resizer at the corner by default,
+        just as it already is the case for WK2. This eases the work needed
+        to get the pixel tests in shape and run by the bots, as both the
+        WK1 and WK2 ports will have more similar results.
+
+        * DumpRenderTree/efl/DumpRenderTreeChrome.cpp:
+        (DumpRenderTreeChrome::resetDefaultsToConsistentValues):
+
 2012-10-18  Jochen Eisinger  <[email protected]>
 
         [chromium] Add a webkit_test_support target that WebTestingSupport

Modified: trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp (131838 => 131839)


--- trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp	2012-10-19 01:53:03 UTC (rev 131838)
+++ trunk/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp	2012-10-19 02:14:17 UTC (rev 131839)
@@ -287,6 +287,7 @@
     ewk_view_setting_web_audio_set(mainView(), EINA_FALSE);
     ewk_view_setting_allow_universal_access_from_file_urls_set(mainView(), EINA_TRUE);
     ewk_view_setting_allow_file_access_from_file_urls_set(mainView(), EINA_TRUE);
+    ewk_view_setting_resizable_textareas_set(mainView(), EINA_TRUE);
 
     ewk_view_zoom_set(mainView(), 1.0, 0, 0);
     ewk_view_scale_set(mainView(), 1.0, 0, 0);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to