1 2013-09-10 Marcelo Morais <m.morais@samsung.com>
3 [EFL] WebInspector: Move to new webinspector
4 https://bugs.webkit.org/show_bug.cgi?id=119559
6 Reviewed by Gyuyoung Kim.
8 Enabling the new Web Inspector on EFL port.
9 Co-author: Andre Loureiro <andre.vl@samsung.com>
11 * Source/PlatformEfl.cmake:
12 * Source/cmake/OptionsEfl.cmake:
14 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
16 REGRESSION(r155143): Build failures on GTK port with Clang and libstdc++ < 4.8.1
17 https://bugs.webkit.org/show_bug.cgi?id=120896
19 Reviewed by Anders Carlsson.
21 The GTK port currently only permits using the libstdc++ standard library when compiling with
22 Clang. After r155143, build failures are occurring when using Clang and libstdc++ that predates
23 the 4.8.0 release due to the use of std::is_trivially_destructible that isn't available in
26 To not add additional special casing, the GTK port should move onto requiring libstdc++ >= 4.8.1
27 when compiling with the Clang compiler. Version 4.8.1 was chosen since it's C++11 feature-complete.
28 This strict requirement is possible as compiling the GTK port with the Clang compiler is not really
29 widespread, so we can afford to adjust the required dependencies to match other ports' progression
30 instead of modifying the code.
32 * Source/autotools/CheckSystemAndBasicDependencies.m4: If the detected compiler is Clang, also check
33 that the libstdc++ standard library is used by testing for the __GLIBCXX__ macro that should be defined
34 to the value lesser than the '20130531', the date stamp used by the 4.8.1 release of libstdc++. Since
35 possible future releases of the 4.6 or 4.7 series of libstdc++ will also match this check due to a newer
36 date stamp contained in __GLIBCXX__, the std::is_trivially_destructible struct is also used so the
37 compilation will fail if the libstdc++ that's used is older than allowed (and therefor does not support
38 the feature). If the check fails, a fatal error is thrown, describing the requirement. Everything carries
39 on as normal otherwise.
41 2013-09-06 Zan Dobersek <zdobersek@igalia.com>
43 [GTK] Bump the required Clang version to 3.2
44 https://bugs.webkit.org/show_bug.cgi?id=112537
46 Reviewed by Gustavo Noronha Silva.
48 * Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack
49 when the Clang compiler is specified.
51 2013-09-05 Brendan Long <b.long@cablelabs.com>
53 [Qt] DefaultFullScreenVideoHandler and PlatformVideoWindow are included in the build when they are disabled
54 https://bugs.webkit.org/show_bug.cgi?id=117206
56 Reviewed by Philippe Normand.
58 * Source/widgetsapi.pri: Don't include DefaultFullScreenVideoHandler when it's disabled.
60 2013-09-05 Ryuan Choi <ryuan.choi@samsung.com>
62 [CMAKE] Add c++0x into CXX_FLAGS as a default
63 https://bugs.webkit.org/show_bug.cgi?id=120812
65 Unreviewed build fix for EFL ports.
67 * Source/cmake/OptionsCommon.cmake: Moved c++0x option here from WebKitHelpers.
68 * Source/cmake/WebKitHelpers.cmake:
70 2013-09-04 Michael Brüning <michael.bruning@digia.com>
72 [Qt] Use correct library paths for prefix builds on Mac.
73 https://bugs.webkit.org/show_bug.cgi?id=120635
75 Reviewed by Tor Arne Vestbø.
77 Due to a change of scope of the qmake force_independent configuration
78 flag, the library paths in QtWebKit builds on the Mac are set to the
79 QtWebKit build directory even for production builds.
81 This patch sets the correct library paths for prefixed production builds
82 while keeping the scope of the force_independent flag for non-production
86 * Source/widgetsapi.pri:
88 2013-09-04 Zan Dobersek <zdobersek@igalia.com>
90 [GTK] Add support for the Wayland build target
91 https://bugs.webkit.org/show_bug.cgi?id=120627
93 Reviewed by Gustavo Noronha Silva.
95 Add support for building the GTK port with Wayland as the target. The Wayland target can be the sole target
96 that's enabled, or it can be enabled in parallel with the X11 target.
98 Each of those two targets, when enabled, checks for the corresponding GTK+ windowing dependency being present.
99 In the case of only the Wayland target being enabled, the accelerated compositing feature is disabled at
100 build-time as the feature is not yet supported under the Wayland display protocol. X11-based plugin support is
101 also disabled under that configuration, even if the WebKitPluginProcess is still built but is left non-operational.
102 GLX support is also disabled if not building the X11 target.
104 The Wayland target can be enabled through using the --with-target configuration option that now accepts two
106 - 'wayland' - only enables the Wayland target,
107 - 'x11,wayland' - enables the X11 and Wayland targets that are to be built in parallel.
109 This makes it possible to build the GTK port of WebKit with the Wayland target, relying solely on the GTK+
110 dependency that only has the Wayland backend enabled, and removes linking against any X11-related library.
111 Note that at the moment there seem to be other dependencies that still link to X11-related libraries.
112 Complete functionality is not yet guaranteed, but is of course the goal.
114 * Source/autotools/FindDependencies.m4: Store the version of the basic GTK+ dependency that was found.
115 This is later used to check that the GTK+ X11 and GTK+ Wayland dependencies are of the same version. The
116 X11-specific dependencies are grouped into one section (apart from the XComposite and XDamage dependencies),
117 also checking for the GTK+ X11 dependency. If the X11 target is not enabled, the GLX dependency is disabled.
118 Additionally check for the GTK+ Wayland dependency if the Wayland target is enabled.
119 We only check for the presence and correct version of the GTK+ X11 and Wayland dependencies, if necessary.
120 Check for the XComposite and XDamage dependencies if the X11 target is enabled (in addition to the OpenGL
121 headers being present).
122 In case of the Wayland target being enabled while the X11 target is not, disable the accelerated compositing
123 feature as there's no support yet for it under the Wayland display protocol.
124 * Source/autotools/PrintBuildConfiguration.m4: The build configuration should now print out 'GDK targets'.
125 * Source/autotools/ReadCommandLineArguments.m4: The --with-target option can now take two additional values,
126 'wayland' and 'x11,wayland'. The first one enables only the Wayland target, while the second one enables both
127 X11 and Wayland targets. This makes it possible to build the GTK port with both X11 and Wayland display protocols
128 supported in the same build.
129 We must now check the outcoming with_target variable to see if the special case of building one or both of the
130 possible parallel targets was chosen. We define with_x11_target and with_wayland_target variables if the
131 with_target value applies to that case.
132 * Source/autotools/SetupAutoconfHeader.m4: Do not define the XP_UNIX macro on builds that enable the Wayland-only
133 target. It should still be defined if we're building both X11 and Wayland targets in parallel.
134 * Source/autotools/SetupAutomake.m4: Define TARGET_X11 and TARGET_WAYLAND Automake conditionals if the new
135 with_x11_target or with_wayland_target variables were set, respectively. Additionall, define the TARGET_X11_OR_WAYLAND
136 Automake conditional if we're building either of the two targets.
138 2013-09-03 Patrick Gansterer <paroga@webkit.org>
140 [CMake] Fix detection of x86_64 platform with MSVC
141 https://bugs.webkit.org/show_bug.cgi?id=116662
143 Reviewed by Gyuyoung Kim.
145 Use ${MSVC_CXX_ARCHITECTURE_ID} instead of ${CMAKE_SYSTEM_PROCESSOR}, since
146 the later one just resolves to the host processor on Windows.
150 2013-08-29 Sam Weinig <sam@webkit.org>
152 Add ENABLE guards for Promises
153 https://bugs.webkit.org/show_bug.cgi?id=120488
155 Reviewed by Andreas Kling.
157 * Source/autotools/SetupWebKitFeatures.m4:
158 * Source/cmake/WebKitFeatures.cmake:
159 * Source/cmakeconfig.h.cmake:
161 2013-08-28 Gustavo Noronha Silva <gns@gnome.org>
163 [GTK] Enable maintainer mode configure switch
164 https://bugs.webkit.org/show_bug.cgi?id=120424
166 Reviewed by Martin Robinson.
168 The maintainer mode feature is used by ostree and other automated builders to ensure no autotools
169 regeneration will happen for a regular tarball build; ostree builders, for instance, are very
170 conservative with toolchain upgrades, and are still using aclocal 1.12. WebKit's latest tarball
171 (2.1.90) for some reason tries to regenerate build files, and the build fails because it can't find
172 the version of aclocal that was used for generating the tarball (1.13).
174 * configure.ac: enable maintainer mode feature.
176 2013-08-28 Zan Dobersek <zdobersek@igalia.com>
178 [GTK] Add support for building JSC with FTL JIT enabled
179 https://bugs.webkit.org/show_bug.cgi?id=120270
181 Reviewed by Filip Pizlo.
183 * Source/autotools/FindDependencies.m4: Disable FTL JIT if the JIT itself is disabled or if the C++ compiler
184 being used is not Clang. Check for llvm-config and use it to properly test for the LLVM >= 3.4 dependency.
185 * Source/autotools/PrintBuildConfiguration.m4: Print out the status of the FTL JIT support.
186 * Source/autotools/ReadCommandLineArguments.m4: Add a configuration flag for enabling the feature, defaulting
187 to 'no' used as the default value for now. This should switch to 'auto' at some point in future.
188 * Source/autotools/SetupAutoconfHeader.m4: Define ENABLE_FTL_JIT to a specific value if possible.
189 Also define HAVE_LLVM to 1 if the LLVM dependency was satisfied.
191 2013-08-28 Simon Hausmann <simon.hausmann@digia.com>
193 [Qt] Unreviewed trivial build adjustment
195 * Source/sync.profile: Don't depend on qtjsbackend anymore. It's not needed in Qt 5.2
196 anymore (but this section of sync.profile is only used by the CI system, so no impact
199 2013-08-24 Carlos Garcia Campos <cgarcia@igalia.com>
201 Unreviewed. Fix GTK+ build after r154541.
203 * Source/autotools/symbols.filter: Export symbols required by
206 2013-08-15 Zan Dobersek <zdobersek@igalia.com>
208 Unreviewed GTK build fix after r154106.
210 * Source/autotools/symbols.filter: Export the proper Element::shadowRoot() symbol.
212 2013-08-14 Filip Pizlo <fpizlo@apple.com>
214 Typed arrays should be rewritten
215 https://bugs.webkit.org/show_bug.cgi?id=119064
217 Reviewed by Oliver Hunt.
219 Automake work courtesy of Zan Dobersek <zdobersek@igalia.com>.
221 * Source/autotools/symbols.filter:
223 2013-08-14 Tim Horton <timothy_horton@apple.com>
225 Un-inline dataLog dumpers for IntSize and IntPoint
226 https://bugs.webkit.org/show_bug.cgi?id=119697
228 Reviewed by Sam Weinig.
230 Avoid regressing build performance by moving IntSize::dump and IntPoint::dump elsewhere.
232 * Source/autotools/symbols.filter:
234 2013-08-14 Martin Robinson <mrobinson@igalia.com>
236 [GTK] [CMake] Add support for building TestWebKitAPI
237 https://bugs.webkit.org/show_bug.cgi?id=116987
239 Reviewed by Philippe Normand.
241 * Source/cmake/OptionsGTK.cmake: Turn on the API tests in the settings.
243 2013-08-13 Zan Dobersek <zdobersek@igalia.com>
245 [Autotools] Unicode's CFLAGS enforce -D_FORTIFY_SOURCE=2, -D_REENTRANT=1, causing faulty Clang builds
246 https://bugs.webkit.org/show_bug.cgi?id=119685
248 Reviewed by Gustavo Noronha Silva.
250 icu-config includes '-D_FORTIFY_SOURCE=2 -D_REENTRANT=1' when printing out C preprocessor flags that are used
251 as the C compiler flags to avoid other unwanted compiler options. This causes problems when building optimized
252 builds with Clang because of a bug in that compiler:
253 http://llvm.org/bugs/show_bug.cgi?id=16821
255 To avoid that, the C preprocessor search flags, as printed by `icu-config --cppflags-searchpath` are now used
256 the Unicode dependency's C compiler flags, avoiding unconditionally specifying the two macros.
258 To adjust for that, the `-pthread` flag is added to the global CFLAGS and CXXFLAGS variables, ensuring
259 the _REENTRANT define is set to 1 and declaring the flag globally instead of relying on Glib dependency's
260 C compiler flags to do so for us. -D_FORTIFY_SOURCE=2 is only added to the CFLAGS and CXXFLAGS variables if
261 the compiler in use is gcc or g++, preventing the Clang builds to malfunction.
263 * Source/autotools/FindDependencies.m4:
264 * Source/autotools/SetupCompilerFlags.m4:
266 2013-08-13 Zan Dobersek <zdobersek@igalia.com>
268 [Autotools] Don't compare $CC, $CXX to exact compiler names
269 https://bugs.webkit.org/show_bug.cgi?id=119683
271 Reviewed by Gustavo Noronha Silva.
273 Instead of comparing $CC and $CXX to exact compiler names (like 'gcc', 'clang++' etc.),
274 use the compiler version checks to also specify the broader compiler collection of which
275 the used compiler is a member of. This avoids failures in some border-line cases where
276 the user would still use either a GCC or a Clang compiler but provide it through a symbolic
277 link that was specified via the CC/CXX environment variables.
279 * Source/autotools/CheckSystemAndBasicDependencies.m4: Store the detected C/C++ compiler collection
280 in c_compiler/cxx_compiler. Throw an error if no supported compiler was found.
281 * Source/autotools/SetupCompilerFlags.m4: Test for a specific compiler by checking against
282 c_compiler/cxx_compiler rather than CC/CXX values.
284 2013-08-12 Zan Dobersek <zdobersek@igalia.com>
286 [Autotools] Adjust the help string for the configure's --enable-optimizations flag
287 https://bugs.webkit.org/show_bug.cgi?id=119682
289 Reviewed by Martin Robinson.
291 * Source/autotools/ReadCommandLineArguments.m4: Remove the 'GCC only' part of the help
292 string for the --enable-optimizations flag. This is not true and can lead to confusion
293 since the optimizations can be applied when compiling with Clang as well.
295 2013-08-11 Carlos Garcia Campos <cgarcia@igalia.com>
297 Unreviewed. Update NEWS and Versions.m4 for 2.1.4 release.
299 * Source/autotools/Versions.m4: Update version numbers.
301 2013-08-09 Zan Dobersek <zdobersek@igalia.com>
303 [Automake] Clean up OpenGL graphics configuration sections
304 https://bugs.webkit.org/show_bug.cgi?id=119554
306 Reviewed by Martin Robinson.
308 Clean up sections in the Automake configuration process that are configuring the OpenGL graphics
309 features and dependencies. Remove unnecessary variable assignments, merge similar code paths,
310 clarify a couple of comments and error messages and fix a few whitespace problems.
312 * Source/autotools/FindDependencies.m4:
313 * Source/autotools/ReadCommandLineArguments.m4:
314 * Source/autotools/SetupAutomake.m4:
316 2013-08-04 Sam Weinig <sam@webkit.org>
318 Remove support for HTML5 MicroData
319 https://bugs.webkit.org/show_bug.cgi?id=119480
321 Reviewed by Anders Carlsson.
323 * Source/autotools/SetupWebKitFeatures.m4:
324 * Source/cmake/OptionsBlackBerry.cmake:
325 * Source/cmake/OptionsEfl.cmake:
326 * Source/cmake/OptionsGTK.cmake:
327 * Source/cmake/WebKitFeatures.cmake:
328 * Source/cmakeconfig.h.cmake:
330 2013-08-06 Simon Pena <simon.pena@samsung.com>
332 Build fix for GTK 32-bit after r153736
334 * Source/autotools/symbols.filter: expose WebCore::SerializedScriptValue::create.
336 2013-08-06 Simon Pena <simon.pena@samsung.com>
338 Build fix for GTK after r153736
340 * Source/autotools/symbols.filter: expose missing symbols
341 WebCore::SerializedScriptValue::create and WebCore::toJS to Internals.
343 2013-08-05 Zan Dobersek <zdobersek@igalia.com>
345 [Automake] Define ENABLE_JIT through the Autoconf header
346 https://bugs.webkit.org/show_bug.cgi?id=119445
348 Reviewed by Martin Robinson.
350 Instead of defining the ENABLE_JIT value through JSC_CPPFLAGS, the feature define is
351 set to be either enabled or disabled through the Autoconf header, based on the value
352 passed through the configuration flag. The 'auto' value is used as default, meaning
353 that the feature is enabled or disabled in the Platform.h header based on the platform
354 configuration (OS, architecture etc.).
356 * Source/autotools/FindDependencies.m4: Remove the JSC_CPPFLAGS definition.
357 * Source/autotools/ReadCommandLineArguments.m4: Change the default value to 'auto' instead
358 of 'autodetect', as used by other configuration options that take a similar approach to enabling
360 * Source/autotools/SetupAutoconfHeader.m4: Set a strict value for the ENABLE_JIT define through
361 the Autoconf header if the feature was specifically enabled or disabled.
363 2013-08-04 Zalan Bujtas <zalan@apple.com>
365 Background doesn't fully repaint when body has margins.
366 https://bugs.webkit.org/show_bug.cgi?id=119033
368 Reviewed by Simon Fraser.
370 Ensure that background-color changes do not leave unpainted areas when
373 Both <body> and <html> background-color get propagated up to the viewport.
374 If <body> has background-color attribute set, while <html> doesn't, the color is
375 applied not only on the <body> but on both the <html> and the viewport. However,
376 it's not enough to mark the RenderView dirty because with tiles backing on,
377 there could be areas outside of the viewport that need repaint. By marking
378 the RenderView's graphics layer dirty instead, we ensure that all the related
379 tiles get marked dirty too and the new background color covers all areas.
381 Manual test added. When forcing top-level composition on (even with embedded iframe to
382 make sure we don't do paintsIntoWindow rendering), the test case execution changes so much,
383 that the repaint rects don't reflect the functionality difference anymore.
385 Reviewed by Simon Fraser.
387 * ManualTests/compositing/background-color-change-on-body-with-margin.html: Added.
389 2013-07-30 Ádám Kallai <kadam@inf.u-szeged.hu>
391 [Qt] Workaround to make syncqt run and generate forwarding headers in SVN repositories too.
392 https://bugs.webkit.org/show_bug.cgi?id=118725.
394 Reviewed by Tor Arne Vestbø.
398 2013-07-30 Carlos Garcia Campos <cgarcia@igalia.com>
400 Unreviewed. Update NEWS and Versions.m4 for 2.1.4 release.
402 * Source/autotools/Versions.m4: Bump version numbers.
404 2013-07-27 Ryuan Choi <ryuan.choi@samsung.com>
406 [EFL] Bump required version of EFL to 1.7
407 https://bugs.webkit.org/show_bug.cgi?id=119144
409 Reviewed by Christophe Dumez.
411 We have supported 1.6 for Tizen build since r137203.
412 But Tizen now supports 1.7+ after Tizen released 2.0.
414 * Source/cmake/OptionsEfl.cmake:
415 Bumped EFL to 1.7 and removed promotion.
417 2013-07-25 Christophe Dumez <ch.dumez@sisa.samsung.com>
419 Unreviewed EFL build fix after r153315.
421 Use -std=gnu++0x instead of -std=c++0x as we rely on GNU extensions such as
424 * Source/cmake/WebKitHelpers.cmake:
426 2013-07-25 Ryuan Choi <ryuan.choi@samsung.com>
428 [CMAKE] Enforce c++0x for cmake based ports
429 https://bugs.webkit.org/show_bug.cgi?id=119081
431 Reviewed by Gyuyoung Kim.
433 * Source/cmake/WebKitHelpers.cmake:
434 Enforce c++0x for all cmake based ports to fix build break.
436 2013-07-24 Ryuan Choi <ryuan.choi@samsung.com>
438 [EFL][CMAKE] Fix wrong syntax about option commands
439 https://bugs.webkit.org/show_bug.cgi?id=119035
441 Reviewed by Christophe Dumez.
443 second argument of cmake option command should be description.
445 * Source/cmake/OptionsEfl.cmake: Added description instead of wrong initial value.
447 2013-07-23 Tim Horton <timothy_horton@apple.com>
449 Add a test for plug-in unavailability indicator obscurity detection
450 https://bugs.webkit.org/show_bug.cgi?id=119007
452 Reviewed by Anders Carlsson.
454 * Source/autotools/symbols.filter:
455 Expose RenderEmbeddedObject::isReplacementObscured to internals.
457 2013-07-16 Balazs Kelemen <kbalazs@webkit.org>
459 [CMake] Undefined references should be detected at build time
460 https://bugs.webkit.org/show_bug.cgi?id=110236
462 Reviewed by Christophe Dumez.
464 Pass the --no-undefined argument to the linker on platforms where it is available.
466 * Source/cmake/OptionsCommon.cmake:
468 2013-07-16 Carlos Garcia Campos <cgarcia@igalia.com>
470 [GTK] Remove compile warnings about GTK+ API deprecated after 3.6
471 https://bugs.webkit.org/show_bug.cgi?id=118237
473 Reviewed by Philippe Normand.
475 We depend on GTK+3.6 so we are not interested in compile warnings
476 about deprecated API after 3.6
478 * Source/autotools/SetupAutoconfHeader.m4: Define
479 GDK_VERSION_MIN_REQUIRED in config.h.
481 2013-07-09 Carlos Garcia Campos <cgarcia@igalia.com>
483 Unreviewed. Update NEWS and Versions.m4 for 2.1.3 release.
485 * Source/autotools/Versions.m4: Bump version numbers.
487 2013-07-08 Andy Estes <aestes@apple.com>
489 Add WebInspectorUI to WebKit.xcworkspace
490 https://bugs.webkit.org/show_bug.cgi?id=118491
492 Reviewed by Sam Weinig.
494 * WebKit.xcworkspace/contents.xcworkspacedata:
496 2013-07-08 ChangSeok Oh <changseok.oh@collabora.com>
498 [GTK] Acceleration description isn't displayed in configured options.
499 https://bugs.webkit.org/show_bug.cgi?id=118441
501 Reviewed by Gustavo Noronha Silva.
503 The acceleration_backend_description has been changed to acceleration_description from r152275.
505 * Source/autotools/PrintBuildConfiguration.m4:
507 2013-07-08 Zan Dobersek <zdobersek@igalia.com>
509 [Autoconf] Define WTF_USE_OPENGL when OpenGL was found
510 https://bugs.webkit.org/show_bug.cgi?id=118341
512 Reviewed by Gustavo Noronha Silva.
514 After r152275, WTF_USE_OPENGL is only defined if the accelerated compositing is enabled.
515 This breaks the build if disabling the accelerated compositing feature as the OpenGL-specific
516 code is not compiled anymore even if it's still required.
518 To avoid that, WTF_USE_OPENGL should be defined if OpenGL was found. The accelerated compositing
519 feature also relies on this condition, exiting the configuration process with an error otherwise.
521 * Source/autotools/SetupAutoconfHeader.m4:
523 2013-07-01 Gustavo Noronha Silva <gustavo.noronha@collabora.com>
525 [GTK] Remove unsupported AC backends
526 https://bugs.webkit.org/show_bug.cgi?id=117362
528 Reviewed by Martin Robinson.
530 * Source/autotools/FindDependencies.m4: remove checks related to acceleration backend,
531 turn them into a check for OpenGL being available, simply.
532 * Source/autotools/ReadCommandLineArguments.m4: remove command line option to select
533 accelerated backend, it's now auto-detected.
534 * Source/autotools/SetupAutoconfHeader.m4: no longer defines USE_CLUTTER and
535 USE_TEXTURE_MAPPER_CAIRO.
536 * Source/autotools/SetupAutomake.m4: remove checks related to acceleration backend,
537 turn them into a check for OpenGL being available, simply.
538 * Source/autotools/Versions.m4: no longer check for clutter/clutter-gtk.
540 2013-07-01 Timothy Hatcher <timothy@apple.com>
542 Link to WebInspectorUI.framework at build time instead of soft linking.
544 https://bugs.webkit.org/show_bug.cgi?id=118261
546 Reviewed by Joseph Pecoraro.
548 * Source/Makefile: Build WebInspectorUI before WebKit and WebKit2.
550 2013-06-28 Sean Bright <sean@malleable.com>
552 [Autotools] Properly quote harfbuzz-icu pkg-config check
553 https://bugs.webkit.org/show_bug.cgi?id=118186
555 Reviewed by Carlos Garcia Campos.
557 A secondary test was added in r150963 to check for harfbuzz-icu
558 when it was split into two packages, but the test is not properly
559 quoted. If the test fails you get an error about missing
560 version "./configure.9.8" instead of the expected "0.9.8."
562 * Source/autotools/FindDependencies.m4:
564 2013-06-27 Christophe Dumez <ch.dumez@sisa.samsung.com>
566 Remove [NoInterfaceObject] from WorkerGlobalScope
567 https://bugs.webkit.org/show_bug.cgi?id=118071
569 Reviewed by Kentaro Hara.
571 Update GENERATE_BINDINGS CMake macro to take 2 additional parameters
572 now needed by the preprocess-idls.pl script.
574 * Source/cmake/WebKitMacros.cmake:
576 2013-06-24 Ryuan Choi <ryuan.choi@samsung.com>
578 [CMAKE] Clear unused cmakedefines
579 https://bugs.webkit.org/show_bug.cgi?id=117931
581 Reviewed by Christophe Dumez.
583 * Source/cmakeconfig.h.cmake:
584 Removed ENABLE_AS_IMAGE, ENABLE_LEGACY_WEBKIT_BLOB_BUILDER and
585 ENABLE_CLIENT_BASED_GEOLOCATION cmakedefines which already removed.
587 2013-06-20 Ryuan Choi <ryuan.choi@samsung.com>
589 [CMAKE][EFL] Enable DOM4 Events Constructor
590 https://bugs.webkit.org/show_bug.cgi?id=117858
592 Reviewed by Laszlo Gombos.
594 * Source/cmake/OptionsEfl.cmake: Enabled ENABLE_DOM4_EVENTS_CONSTRUCTOR.
595 * Source/cmake/WebKitFeatures.cmake: Added ENABLE_DOM4_EVENTS_CONSTRUCTOR.
596 * Source/cmakeconfig.h.cmake: Ditto.
598 2013-06-20 Zan Dobersek <zdobersek@igalia.com>
600 [GTK] remove bashism from configure
601 https://bugs.webkit.org/show_bug.cgi?id=117796
603 Reviewed by Gustavo Noronha Silva.
605 * Source/autotools/FindDependencies.m4: Perform string appending by redeclaring the base string to the value
606 of the base string followed by the string that's being appended. This replaces the use of the '+=' operator
607 that works under bash but is not supported by other shells.
609 2013-06-18 Ryosuke Niwa <rniwa@webkit.org>
611 REGRESSION(r147602): Search text field doesn't render selection when it has some :focus rules
612 https://bugs.webkit.org/show_bug.cgi?id=117747
614 Reviewed by Kent Tamura.
616 * ManualTests/search-select-all-with-focus-style.html: Added.
618 2013-06-18 Carlos Garcia Campos <cgarcia@igalia.com>
620 Unreviewed. Update NEWS and Versions.m4 for 2.1.2 release.
622 * Source/autotools/Versions.m4: Bump version numbers.
624 2013-06-18 Xabier Rodriguez Calvar <calvaris@igalia.com>
626 [GTK][GStreamer] Fullscreen option in video element context menu not working
627 https://bugs.webkit.org/show_bug.cgi?id=105191
629 Fullscreen with native controls is outdated and even broken in
630 [GTK][WK2], so they are deactivated for now.
632 Reviewed by Philippe Normand.
634 * Source/autotools/SetupAutoconfHeader.m4: Removed the use of
635 fullscreen native media controls.
637 2013-06-17 Michael Brüning <michael.bruning@digia.com>
639 [Qt] Remove Qt specific QTKIT flagged code.
640 https://bugs.webkit.org/show_bug.cgi?id=117635
642 Reviewed by Simon Hausmann.
644 Due to disabling QTKIT for Qt in r151546, the
645 code the flags that are not taken into account
646 anymore and the code that has been rendered
647 unreachable by this are removed.
649 * Source/widgetsapi.pri:
651 2013-06-17 Carlos Garcia Campos <cgarcia@igalia.com>
653 Unreviewed. Rename gobject_introspection_required variable.
655 As gobject_introspection_required_version for consistency with all
656 other required_version variables.
658 * Source/autotools/FindDependencies.m4:
659 * Source/autotools/Versions.m4:
661 2013-06-14 Patrick Gansterer <paroga@webkit.org>
663 Introduce USE(WINGDI) for the Windows port
664 https://bugs.webkit.org/show_bug.cgi?id=116138
666 Reviewed by Ryosuke Niwa.
668 Using USE(WINGDI) instead of OS(WINCE) will allow us to
669 compile the GDI based Windows port on WinNT too.
671 * Source/cmake/OptionsWinCE.cmake:
673 2013-06-14 Manuel Rego Casasnovas <rego@igalia.com>
675 [GTK][WK1] Missing symbols
676 https://bugs.webkit.org/show_bug.cgi?id=117629
678 Unreviewed GTK+ build fix.
680 * Source/autotools/symbols.filter: Added missing symbols needed when
683 2013-06-13 Max Vujovic <mvujovic@adobe.com>
685 [CSS Regions] Selection dragged from a region paints its background
686 https://bugs.webkit.org/show_bug.cgi?id=117607
688 Reviewed by Alexandru Chiculita.
690 Add a manual test for the painting of a dragged selection from a region. We don't have an
691 automated way to test this yet. This test is similar to the other manual selection dragging
692 tests (e.g. ManualTests/drag-image.html).
694 * ManualTests/regions/drag-selection-painting.html: Added.
696 2013-06-13 Xabier Rodriguez Calvar <calvaris@igalia.com>
698 [GTK] [WK2] Found missing symbol when running some tests
699 https://bugs.webkit.org/show_bug.cgi?id=117598
701 Reviewed by Martin Robinson.
703 * Source/autotools/symbols.filter: Added missing
704 _ZN7WebCore28notImplementedLoggingChannelEv.
706 2013-06-12 Alberto Garcia <agarcia@igalia.com>
708 [BlackBerry] Remove dead WebDOM code
709 https://bugs.webkit.org/show_bug.cgi?id=113370
711 Reviewed by Anders Carlsson.
714 Internally reviewed by Charles Wei.
716 * Source/cmake/OptionsBlackBerry.cmake:
718 2013-06-06 Timothy Hatcher <timothy@apple.com>
720 Add WebInspectorUI to the Makefile.
722 Reviewed by Mark Rowe.
726 2013-06-11 Seokju Kwon <seokju.kwon@gmail.com>
728 Remove leftover wxWebkit code
729 https://bugs.webkit.org/show_bug.cgi?id=117471
731 Reviewed by Andreas Kling.
733 * Source/cmake/WebKitPackaging.cmake:
735 2013-06-07 Zan Dobersek <zdobersek@igalia.com>
737 [regression] build failure WebKitFontFamilyNames.h missing
738 https://bugs.webkit.org/show_bug.cgi?id=117178
740 Reviewed by Sam Weinig.
742 * GNUmakefile.am: List platform_sources under the BUILT_SOURCES list.
744 2013-06-05 Bear Travis <betravis@adobe.com>
746 [CSS Exclusions][CSS Shapes] Split CSS Exclusions & Shapes compile & runtime flags
747 https://bugs.webkit.org/show_bug.cgi?id=117172
749 Reviewed by Alexandru Chiculita.
751 Adding the CSS_SHAPES compile flag.
753 * Source/autotools/SetupWebKitFeatures.m4:
754 * Source/autotools/symbols.filter:
755 * Source/cmake/WebKitFeatures.cmake:
756 * Source/cmakeconfig.h.cmake:
758 2013-06-05 Zan Dobersek <zdobersek@igalia.com>
760 Move MemoryInfo under window.internals
761 https://bugs.webkit.org/show_bug.cgi?id=117197
763 Reviewed by Ryosuke Niwa.
765 * Source/autotools/symbols.filter: Export the required symbol.
767 2013-06-04 Christophe Dumez <ch.dumez@sisa.samsung.com>
769 Automatically generate WorkerContext constructor attributes
770 https://bugs.webkit.org/show_bug.cgi?id=117183
772 Reviewed by Kentaro Hara.
774 Update GENERATE_BINDINGS macro to take an additional _workercontext_constructors_file
777 * Source/cmake/WebKitMacros.cmake:
779 2013-06-03 Eduardo Lima Mitev <elima@igalia.com>
781 [EFL] Add ATK version 2.8.0 to efl jhbuild moduleset
782 https://bugs.webkit.org/show_bug.cgi?id=116726
784 Reviewed by Gyuyoung Kim.
786 Bump required version of ATK to 2.8.0 in EFL CMake's build.
788 * Source/cmake/FindATK.cmake: Adds macro to check required version
789 * Source/cmake/OptionsEfl.cmake: Specifies required version of ATK to be 2.8.0
791 2013-05-30 Alberto Garcia <agarcia@igalia.com>
793 [GTK] Needs to check for harfbuzz-icu
794 https://bugs.webkit.org/show_bug.cgi?id=116978
796 Reviewed by Xan Lopez.
798 HarfBuzz 0.9.18 splits harbuzz-icu into a separate library so we
799 also need to check for it in order to get the necessary flags for
800 the compiler and the linker.
802 We keep this conditional for now since we still want to support
803 earlier versions of HarfBuzz.
805 * Source/autotools/FindDependencies.m4:
807 2013-05-29 Kent Tamura <tkent@chromium.org>
809 Remove leftover files for ENABLE_PAGE_POPUP and ENABLE_CALENDAR_PICKER
810 https://bugs.webkit.org/show_bug.cgi?id=116999
812 Reviewed by Anders Carlsson.
814 * ManualTests/forms/calendar-picker-crash-by-type-change.html: Removed.
815 * ManualTests/forms/calendar-picker.html: Removed.
816 * ManualTests/forms/color-suggestion-picker.html: Removed.
817 * ManualTests/forms/date-suggestion-picker.html: Removed.
819 2013-05-29 Martin Robinson <mrobinson@igalia.com>
821 Fix more CMake GTK+ build issues after r150336
823 * Source/cmake/OptionsGTK.cmake: Actually set the new output name variable
824 and be sure to set WTF_USE_EGL when EGL is enabled.
826 2013-05-29 Carlos Garcia Campos <cgarcia@igalia.com>
828 Unreviewed. Update NEWS and Versions.m4 for 2.1.1 release.
830 * Source/autotools/Versions.m4: Bump version numbers.
832 2013-05-29 Carlos Garcia Campos <cgarcia@igalia.com>
834 Unreviewed. Fix make distcheck.
836 * GNUmakefile.am: Add WebKitFeatures.h and WebKitFeatures.txt to
839 2013-05-26 Jon Lee <jonlee@apple.com>
841 [WK2] Notifications clobber each other with multiple processes
842 https://bugs.webkit.org/show_bug.cgi?id=116428
843 <rdar://problem/13935191>
845 Reviewed by Darin Adler.
847 * ManualTests/notification-in-multiple-windows.html: Added.
849 2013-05-27 Patrick Gansterer <paroga@webkit.org>
851 Use ICU_INCLUDE_DIRS in BlackBerry CMake files
852 https://bugs.webkit.org/show_bug.cgi?id=116210
854 Reviewed by Rob Buis.
856 Set and use the ICU_INCLUDE_DIRS variable to avoid
857 duplicated adding of the ICU include directory.
859 * Source/cmake/OptionsBlackBerry.cmake:
861 2013-05-24 Anders Carlsson <andersca@apple.com>
863 Remove PagePopup code
864 https://bugs.webkit.org/show_bug.cgi?id=116732
866 Reviewed by Andreas Kling.
868 * Source/cmakeconfig.h.cmake:
869 Remove ENABLE_PAGE_POPUP.
871 2013-05-21 Martin Robinson <mrobinson@igalia.com>
873 [GTK] [CMake] Add support for building WebKit2
874 https://bugs.webkit.org/show_bug.cgi?id=116372
876 Reviewed by Gustavo Noronha Silva.
878 * Source/cmake/FindWebP.cmake: Added.
879 * Source/cmake/OptionsGTK.cmake: Turn on WebKit2 and the plugin process and also look
880 for WebP. These missing symbols were hidden up until now. ENABLE_TEXTURE_MAPPER was
881 also incorrect specified.
883 2013-05-21 Zan Dobersek <zdobersek@igalia.com>
885 [GTK] Compile everything in C++11 mode
886 https://bugs.webkit.org/show_bug.cgi?id=116452
888 Reviewed by Anders Carlsson.
890 * Source/autotools/SetupCompilerFlags.m4: Use the C++11 standard by default when compiling C++ source code.
891 Perform some minor cleanup around the comments and the order of specifying additional CXXFLAGS entries.
893 2013-05-21 Carlos Garcia Campos <cgarcia@igalia.com>
895 [BlackBerry] Make PagePopup implementation independent from WebCore
896 https://bugs.webkit.org/show_bug.cgi?id=116448
898 Reviewed by Anders Carlsson.
900 * Source/cmake/OptionsBlackBerry.cmake: Do not enable PAGE_POPUP
903 2013-05-20 Christophe Dumez <ch.dumez@sisa.samsung.com>
905 [EFL] Reenabled INDEXED_DATABASE after r150344
906 https://bugs.webkit.org/show_bug.cgi?id=116430
908 Reviewed by Gyuyoung Kim.
910 Reenable INDEXED_DATABASE flag for EFL port now that WebKit2
911 build was fixed in r150344.
913 * Source/cmake/OptionsEfl.cmake:
915 2013-05-19 Anders Carlsson <andersca@apple.com>
917 Remove link prerendering code
918 https://bugs.webkit.org/show_bug.cgi?id=116415
920 Reviewed by Darin Adler.
922 This code was only used by Chromium and is dead now.
924 * Source/autotools/SetupWebKitFeatures.m4:
925 * Source/cmake/WebKitFeatures.cmake:
926 * Source/cmakeconfig.h.cmake:
928 2013-05-18 Patrick Gansterer <paroga@webkit.org>
930 [CMake] Replace *_LIBRARY_NAME with *_OUTPUT_NAME
931 https://bugs.webkit.org/show_bug.cgi?id=114554
933 Reviewed by Gyuyoung Kim.
935 Using variables as target names is very uncommon in CMake.
936 The usual way to specify the name of the resulting binary
937 is to set the OUTPUT_NAME target property.
940 * Source/CMakeLists.txt:
941 * Source/PlatformEfl.cmake:
942 * Source/PlatformGTK.cmake:
943 * Source/cmake/OptionsBlackBerry.cmake:
944 * Source/cmake/OptionsEfl.cmake:
945 * Source/cmake/OptionsGTK.cmake:
946 * Source/cmake/WebKitHelpers.cmake:
947 * Source/cmake/gtest/CMakeLists.txt:
949 2013-05-18 Christophe Dumez <ch.dumez@sisa.samsung.com>
951 Unreviewed EFL build fix.
953 Temporarily disabled INDEXED_DATABASE at compile-time as it breaks
954 WK2 build after r150305.
956 * Source/cmake/OptionsEfl.cmake:
958 2013-05-18 Alberto Garcia <agarcia@igalia.com>
960 [GTK] Parallel build fails if gtk-doc is enabled
961 https://bugs.webkit.org/show_bug.cgi?id=116227
963 Reviewed by Martin Robinson.
966 Define an empty noinst_DATA variable where other automake files
967 can add additional objects to be built.
969 2013-05-16 Martin Robinson <mrobinson@igalia.com>
971 [GTK] [CMake] Disable the shadow DOM
972 https://bugs.webkit.org/show_bug.cgi?id=116237
974 Reviewed by Gustavo Noronha Silva.
976 * Source/cmake/OptionsGTK.cmake: Disable shadow DOM by default.
978 2013-05-14 Martin Robinson <mrobinson@igalia.com>
980 [GTK] Add support for building WebCore to the cmake build
981 https://bugs.webkit.org/show_bug.cgi?id=116128
983 Reviewed by Gustavo Noronha Silva.
985 * Source/PlatformGTK.cmake: Added.
986 * Source/cmake/OptionsGTK.cmake: Added more logic and variables to support WebCore and properly
987 defined some existing variables.
989 2013-05-15 Alexey Proskuryakov <ap@apple.com>
991 More fixing after WebProcessShim renaming in r149074.
993 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
994 Updated to insert the right shim.
996 2013-05-15 Patrick Gansterer <paroga@webkit.org>
998 Consolidate lists in WTF CMake files
999 https://bugs.webkit.org/show_bug.cgi?id=116142
1001 Reviewed by Martin Robinson.
1003 Move common files into the CMakeLists.txt to avoid duplicating the list of files.
1004 Also rebase the recently added GTK files to match the other CMake ports, since
1005 the submitted patch was based on an older version of the source tree.
1007 * Source/cmake/OptionsGTK.cmake:
1009 2013-05-14 Zan Dobersek <zdobersek@igalia.com>
1011 [GTK] Move generated ColorData.cpp, WebKitFontFamilyNames.(cpp|h) build targets into libPlatform
1012 https://bugs.webkit.org/show_bug.cgi?id=115921
1014 Reviewed by Gustavo Noronha Silva.
1016 * GNUmakefile.am: Add GENSOURCES_PLATFORM, platform_built_sources variables.
1018 2013-05-11 Martin Robinson <mrobinson@igalia.com>
1020 [GTK] Add a basic cmake build for WTF and JavaScriptCore
1021 https://bugs.webkit.org/show_bug.cgi?id=115967
1023 Reviewed by Laszlo Gombos.
1025 * CMakeLists.txt: Add GTK+ to the list of ports.
1026 * Source/CMakeLists.txt: We do not try to build WebCoreTestSupport when WebCore is disabled.
1027 * Source/cmake/FindGAIL3.cmake: Added.
1028 * Source/cmake/FindGDK3.cmake: Added.
1029 * Source/cmake/FindGStreamer.cmake: Use the passed in minimum version.
1030 * Source/cmake/FindGTK3.cmake: Added.
1031 * Source/cmake/FindXt.cmake: Added.
1032 * Source/cmake/OptionsEfl.cmake: Pass in the minimum version.
1033 * Source/cmake/OptionsGTK.cmake: Added.
1035 2013-05-11 Martin Robinson <mrobinson@igalia.com>
1037 Move defines to platform
1039 [GTK] Move defines that will never be configured to Platform.h
1040 https://bugs.webkit.org/show_bug.cgi?id=115965
1042 Reviewed by Andreas Kling.
1044 * Source/autotools/SetupAutoconfHeader.m4: Move some unchanging defines to Platform.h.
1046 2013-05-09 Christophe Dumez <ch.dumez@sisa.samsung.com>
1048 Add support for [NoInterfaceObject] Web IDL extended attribute
1049 https://bugs.webkit.org/show_bug.cgi?id=115714
1051 Reviewed by Kentaro Hara.
1053 Update GENERATE_BINDINGS macro to take an additional _window_constructors_file
1056 * Source/cmake/WebKitMacros.cmake:
1058 2013-05-08 José Dapena Paz <jdapena@igalia.com> and Zan Dobersek <zdobersek@igalia.com>
1060 [GTK] Plumb the Automake build system for the Battery Status API feature
1061 https://bugs.webkit.org/show_bug.cgi?id=115718
1063 Reviewed by Martin Robinson.
1065 * Source/autotools/FindDependencies.m4: Check for the upower-glib dependency if the feature is enabled.
1066 * Source/autotools/PrintBuildConfiguration.m4: Print out the feature status.
1067 * Source/autotools/ReadCommandLineArguments.m4: Check for the --enable-battery-status option. The deafult,
1068 when the option is not given, is to disable the feature.
1069 * Source/autotools/SetupWebKitFeatures.m4: Treat the ENABLE_BATTERY_STATUS define as configurable.
1070 * Source/autotools/symbols.filter: Export a couple of symbols that are used in the WebCore internals library.
1072 2013-05-08 Zan Dobersek <zdobersek@igalia.com>
1074 [Automake] Pass --no-demangle to the linker by default to get the mangled symbols
1075 https://bugs.webkit.org/show_bug.cgi?id=115732
1077 Reviewed by Gustavo Noronha Silva.
1079 * GNUmakefile.am: Pass the --no-demangle option to the linker by default. This is done by appending
1080 the flag to the LDFLAGS variable. While the AM_LDFLAGS variable would be more appropriate, it's not
1081 at all used when linking installable libraries like libwebkitgtk and libwebkit2gtk, so the LDFLAGS
1082 variable is used instead.
1084 2013-05-07 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1086 [CMAKE] Remove SHADOW_DOM from cmakeconfig.h.cmake
1087 https://bugs.webkit.org/show_bug.cgi?id=115712
1089 Reviewed by Andreas Kling.
1091 Nobody uses SHADOW_DOM in cmake.
1093 * Source/cmake/WebKitFeatures.cmake:
1094 * Source/cmakeconfig.h.cmake:
1096 2013-05-06 Mike Lattanzio <mlattanzio@blackberry.com>
1098 [BlackBerry] Enable and Expose Text Autosizing through BlackBerry::WebKit::WebSettings
1099 https://bugs.webkit.org/show_bug.cgi?id=113808
1101 Reviewed by Rob Buis.
1103 Set the ENABLE_TEXT_AUTOSIZING default to ON for BlackBerry.
1105 * Source/cmake/OptionsBlackBerry.cmake:
1107 2013-05-06 Christophe Dumez <ch.dumez@sisa.samsung.com>
1109 [EFL] Shadow DOM should be disabled at compile time
1110 https://bugs.webkit.org/show_bug.cgi?id=115635
1112 Reviewed by Andreas Kling.
1114 Disable Shadow DOM at compile time for EFL port. Shadow DOM code
1115 is being removed from the tree.
1117 * Source/cmake/OptionsEfl.cmake:
1119 2013-05-04 Dean Jackson <dino@apple.com>
1121 Animations and Transitions should not start when globally suspended
1122 https://bugs.webkit.org/show_bug.cgi?id=114915
1124 Reviewed by Sam Weinig.
1126 Export AnimationController::isSuspended().
1128 * Source/autotools/symbols.filter:
1130 2013-05-01 Benjamin Poulain <benjamin@webkit.org>
1132 Remove the remaining wscript
1133 https://bugs.webkit.org/show_bug.cgi?id=115459
1135 Reviewed by Andreas Kling.
1139 2013-05-01 Sergio Villar Senin <svillar@igalia.com>
1141 Show a block cursor in overtype mode
1142 https://bugs.webkit.org/show_bug.cgi?id=114819
1144 Reviewed by Ryosuke Niwa.
1146 * Source/autotools/symbols.filter: export some extra symbols for
1149 2013-04-30 Christophe Dumez <ch.dumez@sisa.samsung.com>
1151 [EFL] Enable scaled cursors
1152 https://bugs.webkit.org/show_bug.cgi?id=106242
1154 Reviewed by Gyuyoung Kim.
1156 Enable MOUSE_CURSOR_SCALE flag for EFL port.
1158 * Source/cmake/OptionsEfl.cmake:
1159 * Source/cmake/WebKitFeatures.cmake:
1161 2013-04-29 Zan Dobersek <zdobersek@igalia.com>
1163 [GTK] Disable Shadow DOM feature
1164 https://bugs.webkit.org/show_bug.cgi?id=115374
1166 Reviewed by Martin Robinson.
1168 Disable the Shadow DOM feature on the GTK port, the feature is planned for removal.
1170 * Source/autotools/SetupWebKitFeatures.m4:
1172 2013-04-28 Ryuan Choi <ryuan.choi@samsung.com>
1174 [EFL][CMAKE] Build break after r149259
1175 https://bugs.webkit.org/show_bug.cgi?id=115339
1177 Reviewed by Gyuyoung Kim.
1179 r149259 used c++11 features(Right angle bracket, Range-based for-loop).
1180 This patch enforces c++0x when cmake based ports build WebKit2 using gcc.
1182 * Source/cmake/WebKitHelpers.cmake:
1184 2013-04-22 Benjamin Poulain <benjamin@webkit.org>
1186 Remove the memory instrumentation code
1187 https://bugs.webkit.org/show_bug.cgi?id=114931
1189 Reviewed by Andreas Kling.
1191 * Source/autotools/symbols.filter:
1193 2013-04-22 Martin Robinson <mrobinson@igalia.com>
1195 [GTK] Enable introspection always for developer builds
1196 https://bugs.webkit.org/show_bug.cgi?id=114983
1198 Reviewed by Gustavo Noronha Silva.
1200 * Source/autotools/SetupAutoconfHeader.m4: No longer expose the ENABLE_INTROSPECTION
1201 autoconf header variable. It isn't used and it means that when introspection is enabled
1202 or disabled, there is an unnecessary full rebuild.
1204 2013-04-22 Zan Dobersek <zdobersek@igalia.com>
1206 [GTK] Set up libPlatform.la
1207 https://bugs.webkit.org/show_bug.cgi?id=114168
1209 Reviewed by Martin Robinson.
1211 * GNUmakefile.am: Define the platform_cppflags and platform_sources variables.
1213 2013-04-20 Zan Dobersek <zdobersek@igalia.com>
1215 Enable sub-pixel layout for the GTK port
1216 https://bugs.webkit.org/show_bug.cgi?id=94792
1218 Reviewed by Martin Robinson.
1220 * Source/autotools/SetupWebKitFeatures.m4: Enable the subpixel layout.
1222 2013-04-20 Andras Becsi <andras.becsi@digia.com>
1224 [Qt][Mac] Remove obsolete workaround for debug builds
1225 https://bugs.webkit.org/show_bug.cgi?id=114750
1227 Reviewed by Jocelyn Turcotte.
1229 This workaround made default builds fail with recent Qt5 because
1230 it removed the major version number from the library name, producing
1231 QtWebKitWidgets, whereas the linking command line tried to link
1232 against Qt5WebKitWidgets.
1233 Debug builds are possible with and without framework-enabled builds
1234 of Qt, but the debug versions of the Qt libraries have to be present.
1235 Debug builds with a release version of Qt are not possible on Mac
1236 since for debug builds qmake produces a linker command line where
1237 all the Qt libraries have the "_debug" suffix, therefore if the debug
1238 libraries are missing the build fails.
1240 * Source/widgetsapi.pri:
1242 2013-04-19 Martin Robinson <mrobinson@igalia.com>
1244 [GTK] JSCore.gir.in has a few problems
1245 https://bugs.webkit.org/show_bug.cgi?id=114710
1247 Reviewed by Philippe Normand.
1249 * GNUmakefile.am: Move common GIR initialization here from WebKit1.
1250 * configure.ac: Updated to reflect new JSC gir file location.
1252 2013-04-18 Ryuan Choi <ryuan.choi@gmail.com>
1254 [EFL] Build break when using cmake without CMAKE_BUILD_TYPE
1255 https://bugs.webkit.org/show_bug.cgi?id=114835
1257 Unreviewed build fix.
1259 * Source/cmake/OptionsEfl.cmake:
1261 2013-04-16 Patrick Gansterer <paroga@webkit.org>
1263 [CMake] Do not use JAVASCRIPTCORE_DIR in add_custom_command() of JavaScriptcore project
1264 https://bugs.webkit.org/show_bug.cgi?id=114265
1266 Reviewed by Brent Fulgham.
1268 * Source/cmake/WebKitMacros.cmake: Removed macro GENERATE_HASH_LUT.
1270 2013-04-16 Andy Estes <aestes@apple.com>
1272 Changed the default debugger from GDB to LLDB for the 'All Source' scheme in WebKit.xcworkspace.
1274 Rubber-stamped by Dan Bernstein.
1276 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1278 2013-04-16 Manuel Rego Casasnovas <rego@igalia.com>
1280 [EFL] Bump libsoup dependency to 2.42.0
1281 https://bugs.webkit.org/show_bug.cgi?id=113927
1283 Reviewed by Gyuyoung Kim.
1285 Update libsoup required version to v2.42.0 and GLib to v2.36.0 as
1286 required by libsoup for EFL port.
1288 * Source/cmake/OptionsEfl.cmake:
1290 2013-04-15 Patrick Gansterer <paroga@webkit.org>
1292 [CMake] Add WTF_USE_*_UNICODE variables
1293 https://bugs.webkit.org/show_bug.cgi?id=114556
1295 Reviewed by Brent Fulgham.
1297 WTF_USE_ICU_UNICODE and WTF_USE_WCHAR_UNICODE are used to
1298 reduce duplication in the platform specific CMake files.
1300 * Source/cmake/OptionsBlackBerry.cmake:
1301 * Source/cmake/OptionsEfl.cmake:
1302 * Source/cmake/OptionsWinCE.cmake:
1304 2013-04-15 Martin Robinson <mrobinson@igalia.com>
1306 [GTK] REGRESSION(r147499): HTTP auth dialog doesn't remember passwords anymore
1307 https://bugs.webkit.org/show_bug.cgi?id=114613
1309 Reviewed by Carlos Garcia Campos.
1311 * Source/autotools/SetupAutoconfHeader.m4: Correct definition of ENABLE_CREDENTIAL_STORAGE
1312 so that the ENABLE(CREDENTIAL_STORAGE) macro work properly.
1314 2013-04-12 Martin Robinson <mrobinson@igalia.com>
1316 [GTK] Lower the pango dependency
1317 https://bugs.webkit.org/show_bug.cgi?id=114520
1319 Reviewed by Carlos Garcia Campos.
1321 * Source/autotools/Versions.m4: Only depend on Pango 1.30.0 instead of
1322 Pango 1.32.0. 1.32.0 isn't strictly necessary and the version of GTK+ that
1323 we depend on (3.6.0) depends on 1.30.0.
1325 2013-04-12 Jer Noble <jer.noble@apple.com>
1327 TimeRanges::nearest() returns incorrect results.
1328 https://bugs.webkit.org/show_bug.cgi?id=114483
1330 Reviewed by Eric Carlson.
1332 Add symbols needed by WebCoreTestSupport to exports list.
1334 * Source/autotools/symbols.filter:
1336 2013-04-12 Commit Queue <rniwa@webkit.org>
1338 Unreviewed, rolling out r148262.
1339 http://trac.webkit.org/changeset/148262
1340 https://bugs.webkit.org/show_bug.cgi?id=114493
1342 Cairo dep should now build, rolling r148247 back in (Requested
1343 by zdobersek on #webkit).
1345 * Source/autotools/FindDependencies.m4:
1346 * Source/autotools/PrintBuildConfiguration.m4:
1347 * Source/autotools/SetupWebKitFeatures.m4:
1349 2013-04-11 Commit Queue <rniwa@webkit.org>
1351 Unreviewed, rolling out r148247.
1352 http://trac.webkit.org/changeset/148247
1353 https://bugs.webkit.org/show_bug.cgi?id=114490
1355 Cairo dep fails to build on builders due to missing EGL
1356 headers (Requested by zdobersek on #webkit).
1358 * Source/autotools/FindDependencies.m4:
1359 * Source/autotools/PrintBuildConfiguration.m4:
1360 * Source/autotools/SetupWebKitFeatures.m4:
1362 2013-04-11 Paweł Forysiuk <tuxator@o2.pl>
1364 [GTK] Webkit fails to build with MinGW compiler after changeset 146468
1365 https://bugs.webkit.org/show_bug.cgi?id=114473
1367 Reviewed by Martin Robinson.
1369 * Source/autotools/CheckSystemAndBasicDependencies.m4: Fix typo.
1371 2013-04-11 Martin Robinson <mrobinson@igalia.com>
1373 [GTK] Add accelerated 2D canvas support using cairo-gl
1374 https://bugs.webkit.org/show_bug.cgi?id=104672
1376 Reviewed by Alejandro G. Castro.
1378 Detect that we can activate accelerated canvas when CairoGL is present and
1379 TextureMapperGL is enabled.
1381 * Source/autotools/FindDependencies.m4: Look for CairoGL.
1382 * Source/autotools/PrintBuildConfiguration.m4: Print the status of accelerated canvas activation.
1383 * Source/autotools/SetupWebKitFeatures.m4: Set the feature.
1385 2013-04-11 Zan Dobersek <zdobersek@igalia.com>
1389 * Source/autotools/symbols.filter: Stop exporting redundant symbols.
1391 2013-04-11 Rune Lillesveen <rune@opera.com>
1393 Incorrect evaluation of resolution media queries
1394 https://bugs.webkit.org/show_bug.cgi?id=114029
1396 Reviewed by Kenneth Rohde Christiansen.
1398 Removed setResolutionOverride from exports.
1400 * Source/autotools/symbols.filter:
1402 2013-04-10 Anton Obzhirov <a.obzhirov@samsung.com>
1404 [GTK] Add support for Page Visibility
1405 https://bugs.webkit.org/show_bug.cgi?id=97324
1407 Reviewed by Sam Weinig.
1409 Page Visibility has been enabled for GTK port.
1410 New GTK unittest has been added.
1412 * Source/autotools/SetupWebKitFeatures.m4:
1414 2013-04-09 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
1416 [EFL] Declare TEST_THEME_DIR in a single place.
1417 https://bugs.webkit.org/show_bug.cgi?id=114285
1419 Reviewed by Anders Carlsson.
1421 Instead of adding the `THEME_DIR' preprocessor variable in many
1422 different CMakeList.txt files in the tree, declare it in
1423 OptionsEfl.cmake so that we avoid needlessly duplicating code around.
1425 While here, rename it to `TEST_THEME_DIR', which is the name used our
1426 WebKit2 infrastructure, to better reflect the purpose of this value.
1428 * Source/cmake/OptionsEfl.cmake: Add the TEST_THEME_DIR preprocessor
1431 2013-04-09 ChangSeok Oh <changseok.oh@collabora.com>
1433 [GTK][AC] upversion of clutter and its dependecy
1434 https://bugs.webkit.org/show_bug.cgi?id=114016
1436 Reviewed by Gustavo Noronha Silva.
1438 Upversion of clutter to 1.14, cogl to 1.14 and clutter-gtk to 1.4.4.
1440 * Source/autotools/Versions.m4:
1442 2013-04-09 Thiago Marcos P. Santos <thiago.santos@intel.com>
1444 [WK2] Drop WebProcess capabilities on Linux using seccomp filters
1445 https://bugs.webkit.org/show_bug.cgi?id=89875
1447 Reviewed by Maciej Stachowiak.
1449 Added the bits to EFL/CMake buildsystem to find the libseccomp
1452 * Source/cmake/FindLibSeccomp.cmake: Added.
1453 * Source/cmake/OptionsEfl.cmake:
1454 * Source/cmake/WebKitFeatures.cmake:
1455 * Source/cmakeconfig.h.cmake:
1457 2013-04-09 Carlos Garcia Campos <cgarcia@igalia.com>
1459 Unreviewed. Fix GTK+ 32 bit build.
1461 * Source/autotools/symbols.filter: Add some symbols that are
1462 mangled differently in 32 bits due to size_t.
1464 2013-04-09 Patrick Gansterer <paroga@webkit.org>
1466 Do not set CMAKE_BUILD_TYPE if it is not defined
1467 https://bugs.webkit.org/show_bug.cgi?id=114243
1469 Reviewed by Geoffrey Garen.
1471 Setting the CMAKE_BUILD_TYPE causes some problem with Visual Studio.
1472 Adopt the current usage of the variable to better CMake style.
1475 * Source/cmake/OptionsCommon.cmake:
1476 * Source/cmake/OptionsEfl.cmake:
1478 2013-03-31 Martin Robinson <mrobinson@igalia.com>
1480 Bug 110293 uses read -d which is a non-portable bashism
1481 https://bugs.webkit.org/show_bug.cgi?id=113349
1483 Reviewed by Gustavo Noronha Silva.
1485 * Source/autotools/SetupWebKitFeatures.m4: Pass the default feature set to the
1486 feature script in a more portable way.
1488 2013-04-08 Jeff Rogers <jrogers@rim.com>
1490 [BlackBerry] Update BlackBerry JavaScript API
1491 https://bugs.webkit.org/show_bug.cgi?id=114065
1493 Reviewed by Rob Buis.
1496 Export JSC symbols in BlackBerry build.
1498 * Source/cmake/OptionsBlackBerry.cmake:
1500 2013-04-08 Martin Robinson <mrobinson@igalia.com>
1502 [GTK] Configure should verify ICU is installed on mingw
1503 https://bugs.webkit.org/show_bug.cgi?id=113645
1505 Reviewed by Gustavo Noronha Silva.
1507 * Source/autotools/FindDependencies.m4: When falling back to hard-coded compiler flags
1508 for ICU and mingw, check that headers do exist on the system and error out otherwise.
1510 2013-04-08 Carlos Garcia Campos <cgarcia@igalia.com>
1512 [GTK] Build Platform as a separate static library
1513 https://bugs.webkit.org/show_bug.cgi?id=114164
1515 Reviewed by Martin Robinson.
1517 * GNUmakefile.am: Add webkit2platform_sources definition.
1519 2013-04-08 Zan Dobersek <zdobersek@igalia.com>
1521 Unreviewed GTK build fix.
1523 * Source/autotools/symbols.filter: Exporting a bunch of symbols.
1525 2013-04-07 Vivek Galatage <vivek.vg@samsung.com>
1527 Modify .gitignore file to remove entries for chromium generated files
1528 https://bugs.webkit.org/show_bug.cgi?id=114141
1530 Reviewed by Gyuyoung Kim.
1534 2013-04-07 Patrick Gansterer <paroga@webkit.org>
1536 Remove references to Skia and V8 from CMake files
1537 https://bugs.webkit.org/show_bug.cgi?id=114130
1539 Reviewed by Geoffrey Garen.
1541 * Source/cmake/OptionsBlackBerry.cmake:
1542 * Source/cmake/WebKitPackaging.cmake:
1544 2013-04-07 David Kilzer <ddkilzer@apple.com>
1546 Remove the rest of SVG_DOM_OBJC_BINDINGS
1547 <http://webkit.org/b/114112>
1549 Reviewed by Geoffrey Garen.
1551 * Source/autotools/SetupWebKitFeatures.m4:
1552 * Source/cmake/WebKitFeatures.cmake:
1553 * Source/cmakeconfig.h.cmake:
1554 - Remove references to ENABLE_SVG_DOM_OBJC_BINDINGS.
1556 2013-04-05 Ed Bartosh <bartosh@gmail.com>
1558 [EFL] --no-tiled-backing-store build fails because of not used #if USE(ACCELERATED_COMPOSITING)
1559 https://bugs.webkit.org/show_bug.cgi?id=113627
1561 Reviewed by Simon Fraser.
1563 * Source/cmake/OptionsEfl.cmake: Disabled 3D_GRAPHICS and WEB_GL when accelerated compositing is on
1565 2013-04-05 Rijubrata Bhaumik <rijubrata.bhaumik@intel.com>
1567 [EFL] Enable indexed database
1568 https://bugs.webkit.org/show_bug.cgi?id=107248
1570 Reviewed by Alexis Menard.
1572 * Source/cmake/OptionsEfl.cmake:
1574 2013-04-05 Benjamin Poulain <benjamin@webkit.org>
1576 Fix GTK+ for real after r147712
1578 Reviewed by Ryosuke Niwa.
1581 * Source/Platform: Added.
1582 * Source/Platform/GNUmakefile.am: Added.
1584 2013-04-05 Benjamin Poulain <benjamin@webkit.org>
1586 Fix GTK+ build after r147712
1590 * GNUmakefile.am: remove the reference to
1591 Source/Platform/GNUmakefile.am. The file has been removed.
1593 2013-04-05 Benjamin Poulain <bpoulain@apple.com>
1595 Remove WTFURL from WebKit
1596 https://bugs.webkit.org/show_bug.cgi?id=113994
1598 Reviewed by Ryosuke Niwa.
1600 * Source/cmake/WebKitFeatures.cmake:
1601 * Source/cmakeconfig.h.cmake:
1603 2013-04-04 Ryosuke Niwa <rniwa@webkit.org>
1605 Remove the top level gyp directory and Platform/chromium
1606 https://bugs.webkit.org/show_bug.cgi?id=113999
1608 Reviewed by Benjamin Poulain.
1610 * Source/Platform: Removed.
1611 * Source/gyp: Removed.
1613 2013-04-04 Geoffrey Garen <ggaren@apple.com>
1615 Nixed the defunct chromium folder from ManualTests
1616 https://bugs.webkit.org/show_bug.cgi?id=113995
1618 Reviewed by Benjamin Poulain.
1620 * ManualTests/chromium: Removed.
1621 * ManualTests/chromium/autofill-popup-shiftupdown.hml: Removed.
1622 * ManualTests/chromium/drag-image-accounts-for-device-scale.html: Removed.
1623 * ManualTests/chromium/modifiers-during-drag-and-drop.html: Removed.
1624 * ManualTests/chromium/no-autofill-on-readonly.html: Removed.
1625 * ManualTests/chromium/onchange-reload-popup.html: Removed.
1626 * ManualTests/chromium/popup-menu-crash.html: Removed.
1627 * ManualTests/chromium/select-close-popup-value-change.html: Removed.
1628 * ManualTests/chromium/suggestions-popup-font-change.html: Removed.
1630 2013-04-04 Xabier Rodriguez Calvar <calvaris@igalia.com>
1632 [GStreamer] Virtual modifier for MediaPlayer::simulateAudioInterruption must go
1633 https://bugs.webkit.org/show_bug.cgi?id=113851
1635 Reviewed by Eric Carlson.
1637 * Source/autotools/symbols.filter: Added
1638 _ZN7WebCore11MediaPlayer25simulateAudioInterruptionEv symbol.
1640 2013-04-03 Carlos Garcia Campos <cgarcia@igalia.com>
1642 [GTK] Bump required versions of some dependencies
1643 https://bugs.webkit.org/show_bug.cgi?id=113282
1645 Reviewed by Martin Robinson.
1647 This patch updates the following dependencies:
1649 - libsoup 2.42.0: is the current stable release.
1651 - glib 2.36.0: libsoup 2.42 requires 2.35.0, but we don't want to
1652 depend on unstable versions and 2.36 is the next stable version
1655 - gtk+ 3.6.0: this is the previous stable release. We don't
1656 currently have any code using newer API, so we will be able to
1657 remove all the #ifdefed code.
1659 - at-spi2 2.5.3: is the version required by gtk+ 3.6.
1661 - GObject introspection 1.32.0: is the version required by gtk+ 3.6.
1663 - Pango 1.32.0: it's the current stable version and the first one
1664 depending on Harfbuzz.
1666 - Fontconfig 2.5: required by pango 1.32.0 when using Harfbuzz.
1668 - gtk+ 2.24.10: it allows us to remove a lot of deprecated code
1671 * Source/autotools/Versions.m4:
1673 2013-04-02 Martin Robinson <mrobinson@igalia.com>
1675 [GTK] Make libsecret optional
1676 https://bugs.webkit.org/show_bug.cgi?id=113821
1678 Reviewed by Gustavo Noronha Silva.
1680 Add a configuration option to disable credential storage and thus remove
1681 the libsecret dependency. This should make it possible to build WebKit 2.x
1684 * Source/autotools/FindDependencies.m4: Only look for libsecret if credential storage is active.
1685 * Source/autotools/PrintBuildConfiguration.m4: Print whether or not credential storage is active.
1686 * Source/autotools/ReadCommandLineArguments.m4: Added an option to control credential storage.
1687 * Source/autotools/SetupAutoconfHeader.m4: Expose credential storage setting to code.
1689 2013-04-02 Sheriff Bot <webkit.review.bot@gmail.com>
1691 Unreviewed, rolling out r147401.
1692 http://trac.webkit.org/changeset/147401
1693 https://bugs.webkit.org/show_bug.cgi?id=113767
1695 The patch makes it extremely hard to set up the dependencies
1696 properly on the GTK builders (Requested by zdobersek on
1699 * Source/autotools/Versions.m4:
1701 2013-04-02 Carlos Garcia Campos <cgarcia@igalia.com>
1703 [GTK] Bump required versions of some dependencies
1704 https://bugs.webkit.org/show_bug.cgi?id=113282
1706 Reviewed by Martin Robinson.
1708 This patch updates the following dependencies:
1710 - libsoup 2.42.0: is the current stable release.
1712 - glib 2.36.0: libsoup 2.42 requires 2.35.0, but we don't want to
1713 depend on unstable versions and 2.36 is the next stable version
1716 - gtk+ 3.6.0: this is the previous stable release. We don't
1717 currently have any code using newer API, so we will be able to
1718 remove all the #ifdefed code.
1720 - at-spi2 2.5.3: is the version required by gtk+ 3.6.
1722 - GObject introspection 1.32.0: is the version required by gtk+ 3.6.
1724 - Pango 1.32.0: it's the current stable version and the first one
1725 depending on Harfbuzz.
1727 - Fontconfig 2.5: required by pango 1.32.0 when using Harfbuzz.
1729 - gtk+ 2.24.10: it allows us to remove a lot of deprecated code
1732 * Source/autotools/Versions.m4:
1734 2013-04-02 Carlos Garcia Campos <cgarcia@igalia.com>
1736 [EFL][CMAKE] Move MOZ_X11 definition from OptionsCommon to OptionsEfl
1737 https://bugs.webkit.org/show_bug.cgi?id=113685
1739 Reviewed by Martin Robinson.
1741 MOZ_X11 is added unconditionally in OptionsCommon for UNIX
1742 platforms, but not all UNIX platforms use X11 for plugins,
1743 BlackBerry doesn't. The only port using cmake that uses X11 is EFL
1744 and it already has checks for X11, so we can just move the
1745 definition to OptionsEfl.
1747 * Source/cmake/OptionsCommon.cmake:
1748 * Source/cmake/OptionsEfl.cmake:
1750 2013-04-01 Jinwoo Song <jinwoo7.song@samsung.com>
1752 [EFL] Enable user-select:all for EFL port
1753 https://bugs.webkit.org/show_bug.cgi?id=113494
1755 Reviewed by Gyuyoung Kim.
1757 Add a feature flag for user-select:all and enable it for EFL port.
1759 * Source/cmake/OptionsEfl.cmake:
1760 * Source/cmake/WebKitFeatures.cmake:
1761 * Source/cmakeconfig.h.cmake:
1763 2013-03-29 Charles Wei <charles.wei@torchmobile.com.cn>
1765 [BlackBerry] Cleanup the CONTEXT_MENUS in BlackBerry porting
1766 https://bugs.webkit.org/show_bug.cgi?id=113562
1768 Reviewed by George Staikos.
1769 Internally reviewed by Mike Fenton and Gen Mak.
1771 * Source/cmake/OptionsBlackBerry.cmake:
1772 * Source/cmake/WebKitFeatures.cmake:
1773 * Source/cmakeconfig.h.cmake:
1775 2013-03-28 Zan Dobersek <zdobersek@igalia.com>
1777 [GTK] Build GTK-specific, non-layer-violating source code into WebCore-independent libPlatformGtk.la
1778 https://bugs.webkit.org/show_bug.cgi?id=112546
1780 Reviewed by Martin Robinson.
1782 * GNUmakefile.am: Define the new platform_webcore_cppflags.
1784 2013-03-28 Zan Dobersek <zdobersek@igalia.com>
1786 Unreviewed GTK build fix after r147039.
1788 * Source/autotools/symbols.filter: Export the missing symbols.
1790 2013-03-27 Patrick Gansterer <paroga@webkit.org>
1792 Set WTF_ARM_ARCH_VERSION to correct value when used with MSVC
1793 https://bugs.webkit.org/show_bug.cgi?id=113436
1795 Reviewed by Benjamin Poulain.
1797 * Source/cmake/OptionsWinCE.cmake: CPU(ARM_TRADITIONAL) is now set correctly by Platform.h.
1799 2013-03-27 Timothy Hatcher <timothy@apple.com>
1801 Add support for dock-to-right of the Web Inspector in the Mac port.
1803 Unfortunately this requires Safari changes, so it is disabled in the nightly builds.
1805 https://webkit.org/b/113341
1806 rdar://problem/10368152
1808 Reviewed by Joseph Pecoraro.
1810 * Source/autotools/symbols.filter:
1812 2013-03-27 Sheriff Bot <webkit.review.bot@gmail.com>
1814 Unreviewed, rolling out r146864.
1815 http://trac.webkit.org/changeset/146864
1816 https://bugs.webkit.org/show_bug.cgi?id=113391
1818 causes crashes on Wk2 EFL release bot (Requested by drott on
1821 * Source/cmake/OptionsEfl.cmake:
1823 2013-03-26 Rijubrata Bhaumik <rijubrata.bhaumik@intel.com>
1825 [EFL] Enable IndexedDB by default
1826 https://bugs.webkit.org/show_bug.cgi?id=107248
1828 Reviewed by Laszlo Gombos.
1830 * Source/cmake/OptionsEfl.cmake:
1831 Enable IndexedDB by default on EFL.
1833 2013-03-25 Kent Tamura <tkent@chromium.org>
1835 Rename ENABLE_INPUT_TYPE_DATETIME
1836 https://bugs.webkit.org/show_bug.cgi?id=113254
1838 Reviewed by Kentaro Hara.
1840 Rename ENABLE_INPUT_TYPE_DATETIME to ENABLE_INPUT_TYPE_DATETIME_INCOMPLETE.
1841 Actually I'd like to remove the code, but we shouldn't remove it yet
1842 because we shipped products with it on some platforms.
1844 * Source/autotools/SetupWebKitFeatures.m4:
1845 * Source/cmake/WebKitFeatures.cmake:
1846 * Source/cmakeconfig.h.cmake:
1848 2013-03-25 Daniel Cheng <dcheng@chromium.org>
1850 Don't allow drags to start after a mouse press that creates a context menu
1851 https://bugs.webkit.org/show_bug.cgi?id=112079
1853 Reviewed by Tony Chang.
1855 * ManualTests/context-menu-during-drag-selection.html: Added.
1857 2013-03-22 Yuki Sekiguchi <yuki.sekiguchi@access-company.com>
1859 Cannot run All Source (target WebProcess) on Xcode.
1860 https://bugs.webkit.org/show_bug.cgi?id=111042
1862 Reviewed by Alexey Proskuryakov.
1864 WebProcessShim is renamed by r139066.
1865 However, WebProcessShim is not renamed to SecItemShim in WebKit.xcworkspace.
1866 This make WebProcess.app load WebProcessShim.dylib, and it cause dyld loading error.
1868 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme: Renamed WebProcessShim to SecItemShim.
1870 2013-03-21 Zan Dobersek <zdobersek@igalia.com>
1872 [GTK] Move libLevelDB.la setup into a separate GNUmakefile.am
1873 https://bugs.webkit.org/show_bug.cgi?id=112947
1875 Reviewed by Martin Robinson.
1877 * GNUmakefile.am: Include the new GNUmakefile.am, located under Source/ThirdParty/leveldb.
1879 2013-03-21 Martin Robinson <mrobinson@igalia.com>
1881 Source/ThirdParty/leveldb/db/builder.cc does not build on systems without <endian.h>
1882 https://bugs.webkit.org/show_bug.cgi?id=111817
1884 Reviewed by Gustavo Noronha Silva.
1886 Improve processing of the autoconf host variable. Setup up the wiring to detect
1887 whether or not we are compiling for Darwin.
1889 * Source/autotools/CheckSystemAndBasicDependencies.m4: Improve host detection.
1890 * Source/autotools/SetupAutomake.m4: Tell automake if we are compiling for Darwin or not.
1892 2013-03-20 Michael Pruett <michael@68k.org>
1894 [JSC] Implement EnforceRange IDL attribute for integer conversions
1895 https://bugs.webkit.org/show_bug.cgi?id=112506
1897 Reviewed by Kentaro Hara.
1899 * Source/autotools/symbols.filter:
1901 2013-03-20 Zan Dobersek <zdobersek@igalia.com>
1903 [GTK] Build ANGLE sources into a separate library from libWebCore.la
1904 https://bugs.webkit.org/show_bug.cgi?id=112778
1906 Reviewed by Martin Robinson.
1908 * GNUmakefile.am: Include the GNUmakefile.am covering the libANGLE.la library.
1910 2013-03-20 Jocelyn Turcotte <jocelyn.turcotte@digia.com>
1912 [Qt] Define MODULE_VERSION
1913 https://bugs.webkit.org/show_bug.cgi?id=112808
1915 Reviewed by Allan Sandfeld Jensen.
1917 Upstream http://codereview.qt-project.org/49052
1918 Use 5.2.0 as this is the next release that will be branched from trunk.
1922 2013-03-20 Rouslan Solomakhin <rouslan@chromium.org>
1924 Copy-paste should not spellcheck when continuous spellcheck is turned off
1925 https://bugs.webkit.org/show_bug.cgi?id=112464
1927 Reviewed by Ryosuke Niwa.
1929 * Source/autotools/symbols.filter: Export WebCore::Editor::isContinuousSpellCheckingEnabled() and WebCore::Editor::toggleContinuousSpellChecking() for use by internals.
1931 2013-03-20 JungJik Lee <jungjik.lee@samsung.com>
1933 [EFL] Disable REQUEST_ANIMATION_FRAME_TIMER to render a new animation frame.
1934 https://bugs.webkit.org/show_bug.cgi?id=112114
1936 Reviewed by Kenneth Rohde Christiansen.
1938 Add a manual test to check the running of scripted transition animation.
1940 * ManualTests/animation/transition-on-and-offscreen-animation.html: Added.
1942 2013-03-19 David Rosca <nowrep@gmail.com>
1944 [Qt] QStyle: Set State_Enabled by default when painting style widgets.
1945 https://bugs.webkit.org/show_bug.cgi?id=112688
1947 Reviewed by Jocelyn Turcotte.
1949 All Qt style widgets were painted with a disabled state, even when
1950 they actually were enabled.
1951 This change fixes it by setting State_Enabled as a default state,
1952 which is then correctly removed when element is disabled.
1954 * Source/WebCore/platform/qt/RenderThemeQStyle.cpp:
1956 2013-03-17 Gustavo Noronha Silva <gns@gnome.org>
1958 [GTK] Exports leveldb symbols
1959 https://bugs.webkit.org/show_bug.cgi?id=112526
1961 Reviewed by Carlos Garcia Campos.
1963 * Source/autotools/symbols.filter: make leveldb symbols local.
1965 2013-03-15 Jae Hyun Park <jae.park@company100.net>
1967 [GTK] acceleration_backend_description does not concatenate "(gles2"
1968 https://bugs.webkit.org/show_bug.cgi?id=112405
1970 Reviewed by Martin Robinson.
1972 In FindDependencies.m4, acceleration_backend_description string does not
1973 concatenate if there is a space between the operator and the operand.
1975 * Source/autotools/FindDependencies.m4:
1977 2013-03-15 Allan Sandfeld Jensen <allan.jensen@digia.com>
1979 [Qt] Build error with building with Qt 5.1
1980 https://bugs.webkit.org/show_bug.cgi?id=112435
1982 Reviewed by Noam Rosenthal.
1984 QAccessibleWidget has moved to private.
1986 * Source/widgetsapi.pri:
1988 2013-03-14 Tobias Mueller <tobiasmue@gnome.org>
1990 Build: Remove XSLT option and depend hard on XSLT.
1991 You will now not be able to give --disable-xslt or --enable-xslt
1992 because it is not optional anymore.
1993 https://bugs.webkit.org/show_bug.cgi?id=112368
1995 Reviewed by Martin Robinson.
1997 * Source/autotools/FindDependencies.m4:
1998 Always check for libxslt
2000 * Source/autotools/PrintBuildConfiguration.m4:
2001 Removed printing out the value of XSLT
2003 * Source/autotools/ReadCommandLineArguments.m4:
2004 Removed reading XSLT options
2006 2013-03-14 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
2008 [EFL] Use CROSS_PLATFORM_CONTEXT_MENU
2009 https://bugs.webkit.org/show_bug.cgi?id=111877
2011 Reviewed by Caio Marcelo de Oliveira Filho.
2013 * Source/cmake/OptionsEfl.cmake: add -DWTF_USE_CROSS_PLATFORM_CONTEXT_MENUS=1
2015 2013-03-14 Simon Hausmann <simon.hausmann@digia.com>
2017 [Qt] Improve the handling of mock geolocation, device orientation and motion clients
2019 Reviewed by Tor Arne Vestbø.
2021 The mock versions of these web facing features should be instantiated when
2022 running in DumpRenderTree only. In order for them to work, no extra Qt modules
2023 such as QtLocation are actually needed.
2025 This patch decouples enabling device orientation/motion and geolocation from
2026 the underlying Qt modules and makes them available in developer builds
2027 (!production_build) and backed by mock backends when running in drt.
2029 So if the Qt 5 modules are available, they'll be used (unless drtRun). For
2030 developers the web facing features are always enabled (although requests will
2031 time out) and the mock backends are enabled inside DRT, allowing for the layout
2032 tests to run with less dependencies.
2034 In addition this also enables the mock device motion client, which was
2035 previously never instantiated.
2037 * Source/widgetsapi.pri:
2039 2013-03-13 Ryosuke Niwa <rniwa@webkit.org>
2041 Threaded HTML Parser is missing feature define flags in all but Chromium port's build files
2042 https://bugs.webkit.org/show_bug.cgi?id=112277
2044 Reviewed by Adam Barth.
2046 * Source/autotools/SetupWebKitFeatures.m4:
2047 * Source/cmake/WebKitFeatures.cmake:
2048 * Source/cmakeconfig.h.cmake:
2050 2013-03-13 Nate Chapin <japhet@chromium.org>
2052 Expose symbols for internals
2053 https://bugs.webkit.org/show_bug.cgi?id=112194
2055 Reviewed by Alexey Proskuryakov.
2057 * Source/autotools/symbols.filter:
2059 2013-03-12 Zan Dobersek <zdobersek@igalia.com>
2061 [GTK] 'unrecognized command line option "-Wno-c++11-extensions"' warning reported when using gcc
2062 https://bugs.webkit.org/show_bug.cgi?id=111936
2064 Reviewed by Martin Robinson.
2066 * Source/autotools/SetupCompilerFlags.m4: Only use the -Wno-c++11-extensions warning when building
2067 with Clang as GCC does not support the warning just yet. Also enhance the comment about using libstdc++
2068 as the standard C++ library when compiling with Clang.
2070 2013-03-12 Zan Dobersek <zdobersek@igalia.com>
2072 [GTK] Set up the libPlatformGtk.la library
2073 https://bugs.webkit.org/show_bug.cgi?id=111738
2075 Reviewed by Martin Robinson.
2077 * GNUmakefile.am: Define the two variables that will hold sources list and cppflags as required for the new library.
2078 Include the new GNUmakefile.am that's now available under Source/Platform.
2080 2013-03-11 Tobias Mueller <tobiasmue@gnome.org>
2082 [Autotools] Set ENABLE_GTK_DOC to false if gtk-doc is not installed
2083 https://bugs.webkit.org/show_bug.cgi?id=111980
2085 Reviewed by Martin Robinson.
2087 WebKit did not configure if gtk-doc-am was not installed with the error:
2088 Tools/GNUmakefile.am:419: ENABLE_GTK_DOC does not appear in AM_CONDITIONAL
2090 * Source/autotools/FindDependencies.m4:
2092 2013-03-11 Claudio Saavedra <csaavedra@igalia.com>
2095 https://bugs.webkit.org/show_bug.cgi?id=112055
2097 Reviewed by Martin Robinson.
2099 * Source/autotools/Versions.m4: Bump to 2.1.0
2101 2013-03-11 Jeff Rogers <jrogers@rim.com>
2103 [BlackBerry] Disable MathML support
2104 https://bugs.webkit.org/show_bug.cgi?id=111929
2106 Reviewed by Rob Buis.
2108 * Source/cmake/OptionsBlackBerry.cmake:
2110 2013-03-09 Martin Robinson <mrobinson@igalia.com>
2112 [GTK] Versions.m4 is missing some key dependencies version definitions
2113 https://bugs.webkit.org/show_bug.cgi?id=111903
2115 Reviewed by Carlos Garcia Campos.
2117 * Source/autotools/Versions.m4: Add missing required version
2120 2013-03-08 Dean Jackson <dino@apple.com>
2122 Don't snapshot Java plugins
2123 https://bugs.webkit.org/show_bug.cgi?id=111899
2125 Reviewed by Tim Horton.
2127 Export MIMETypeRegistry::isJavaAppletMIMEType symbol.
2129 * Source/autotools/symbols.filter:
2131 2013-03-08 Chandra Shekar Vallala <brk376@motorola.com>
2133 [chromium] Keydown event for 'shift+alt' returns win keycode instead of 'alt'
2134 https://bugs.webkit.org/show_bug.cgi?id=111112
2136 Reviewed by Tony Chang.
2138 Return windows keycode of Alt incase of GDK_META_L, GDK_META_R.
2140 Try press Shift then alt key. The test passes if the shiftKey, altKey values
2141 of JSKeyEvent are true and keycode/which is 18.
2143 * ManualTests/shift-alt-key-event.html: Added.
2145 2013-03-08 Zan Dobersek <zdobersek@igalia.com>
2147 [Autotools] Remove definitions of unnecessary Automake conditionals
2148 https://bugs.webkit.org/show_bug.cgi?id=111830
2150 Reviewed by Philippe Normand.
2152 The following Automake conditionals are not used anywhere and should have their
2153 definitions in SetupAutomake.m4 removed:
2154 ENABLE_GAMEPAD, ENABLE_XSLT, ENABLE_GEOLOCATION, ENABLE_SVG_FONTS,
2155 ENABLE_OPCODE_STATS, ENABLE_CSS_FILTERS, ENABLE_CSS_SHADERS.
2157 * Source/autotools/SetupAutomake.m4:
2159 2013-03-08 Zan Dobersek <zdobersek@igalia.com>
2161 [GTK] Remove media stream support from the configuration options
2162 https://bugs.webkit.org/show_bug.cgi?id=111813
2164 Reviewed by Philippe Normand.
2166 Remove the media-stream configuration flag. The feature is incomplete and
2167 thus unsupported, so it really shouldn't be possible to enable it.
2169 * Source/autotools/PrintBuildConfiguration.m4:
2170 * Source/autotools/ReadCommandLineArguments.m4:
2171 * Source/autotools/SetupAutomake.m4:
2172 * Source/autotools/SetupWebKitFeatures.m4:
2174 2013-03-07 Keishi Hattori <keishi@webkit.org>
2176 Update calendar picker UI
2177 https://bugs.webkit.org/show_bug.cgi?id=109439
2179 Reviewed by Kent Tamura.
2181 * ManualTests/forms/calendar-picker.html: New test file with more options.
2182 * ManualTests/forms/date-suggestion-picker.html: Copied from ManualTests/forms/calendar-picker.html. Old one kept for dat/time suggestion picker testing.
2184 2013-03-07 Christophe Dumez <ch.dumez@sisa.samsung.com>
2186 [EFL] Bump libsoup dependency to 2.40.3 to fix regressions
2187 https://bugs.webkit.org/show_bug.cgi?id=111756
2189 Reviewed by Kenneth Rohde Christiansen.
2191 Update libsoup required version to v2.40.3 for EFL port.
2193 * Source/cmake/OptionsEfl.cmake:
2195 2013-03-07 Zan Dobersek <zdobersek@igalia.com>
2197 [GTK] Limit the supported compilers to GCC >= 4.7 and Clang >= 3.0
2198 https://bugs.webkit.org/show_bug.cgi?id=109932
2200 Reviewed by Martin Robinson.
2202 * Source/autotools/CheckSystemAndBasicDependencies.m4: Strictly check for one of the two compilers.
2203 * Source/autotools/SetupCompilerFlags.m4: Set up C++11-specific compiler flags. Force the C99 standard for the C code.
2204 Use the -Qunused-arguments flag when using Clang, it reduces irrelevant errors when using ccache.
2206 2013-03-05 Gustavo Noronha Silva <gns@gnome.org>
2208 [GTK] Enable translations for WebKit2
2209 https://bugs.webkit.org/show_bug.cgi?id=111398
2211 Reviewed by Martin Robinson.
2213 * GNUmakefile.am: adjust path for i18n GNUmakefile.am.
2214 * configure.ac: generate the i18n makefile unconditionally, the translations are
2215 used by both WebKitGTK+ and WebKit2GTK+.
2217 2013-03-06 Adam Klein <adamk@chromium.org>
2219 [V8] Use implicit references instead of object groups to keep registered MutationObservers alive
2220 https://bugs.webkit.org/show_bug.cgi?id=111382
2222 Reviewed by Adam Barth.
2224 * ManualTests/mutation-observer-leaks-nodes.html: Added.
2226 2013-03-06 Gustavo Noronha Silva <gns@gnome.org>
2228 Build fix. Fixes problems building code that uses deprecated functions from GTK+ 2,
2229 such as RenderThemeGtk2.cpp, in debug mode. RenderThemeGtk2.cpp tries to allow usage
2230 of deprecated functions by undefining GTK_DISABLE_DEPRECATED, but it ended up being
2231 redefined because autotoolsconfig.h was included again by headers that came after
2234 Reviewed by Martin Robinson.
2236 * Source/autotools/SetupWebKitFeatures.m4: add checks to ensure the
2237 autotoolsconfig.h header is only included once.
2239 2013-03-05 Ryuan Choi <ryuan.choi@samsung.com>
2241 [EFL] Build break with latest EFL libraries
2242 https://bugs.webkit.org/show_bug.cgi?id=111028
2244 Reviewed by Dirk Pranke.
2246 In latest EFL trunk, include path of ecore sub modules are changed from
2247 ecore-1 to ecore-XXX-1.
2248 So, this patch adds missing ECORE_XXX_INCLUDE_DIRS.
2250 * Source/cmake/FindEcore.cmake: Added additional path suffixes to find include directories of ecore-XXX
2251 * Source/cmake/FindElementary.cmake: Checked Ecore_Con dependency which Elementary requires.
2252 * Source/cmake/OptionsEfl.cmake: Made Imf and Imf_Evas mandatory.
2254 2013-03-05 Shawn Singh <shawnsingh@chromium.org>
2256 Fix default background of a dragged image.
2257 https://bugs.webkit.org/show_bug.cgi?id=110512
2259 Reviewed by Tony Chang.
2261 * ManualTests/drag-background-with-padding.html: Added.
2263 2013-03-05 Gustavo Noronha Silva <gns@gnome.org>
2265 Unreviewed build fix.
2267 * GNUmakefile.am: remove bad path for generate-feature-defines-files from EXTRA_DIST.
2269 2013-03-04 Ruslan Abdikeev <aruslan@chromium.org>
2271 <link rel="apple-touch-icon"> tag is not honored on CNN.com, workflowy.com etc
2272 https://bugs.webkit.org/show_bug.cgi?id=109061
2274 Reviewed by Adam Barth.
2276 * Source/autotools/symbols.filter:
2278 2013-03-04 Kunihiko Sakamoto <ksakamoto@chromium.org>
2280 Add build flag for FontLoader
2281 https://bugs.webkit.org/show_bug.cgi?id=111289
2283 Reviewed by Benjamin Poulain.
2285 Add ENABLE_FONT_LOAD_EVENTS build flag (disabled by default).
2287 * Source/autotools/SetupWebKitFeatures.m4:
2288 * Source/cmake/WebKitFeatures.cmake:
2289 * Source/cmakeconfig.h.cmake:
2291 2013-03-03 Sheriff Bot <webkit.review.bot@gmail.com>
2293 Unreviewed, rolling out r144567.
2294 http://trac.webkit.org/changeset/144567
2295 https://bugs.webkit.org/show_bug.cgi?id=111266
2297 Does not compile on apple-win (Requested by abarth on
2300 * Source/autotools/symbols.filter:
2302 2013-03-03 Ruslan Abdikeev <aruslan@chromium.org>
2304 <link rel="apple-touch-icon"> tag is not honored on CNN.com, workflowy.com etc
2305 https://bugs.webkit.org/show_bug.cgi?id=109061
2307 Reviewed by Adam Barth.
2309 * Source/autotools/symbols.filter:
2311 2013-03-01 Elliott Sprehn <esprehn@gmail.com>
2313 Don't leak Documents when using MutationObserver from extensions
2314 https://bugs.webkit.org/show_bug.cgi?id=111234
2316 Reviewed by Adam Barth.
2318 * ManualTests/leak-observer-nonmain-world.html: Added.
2320 2013-02-27 Zan Dobersek <zdobersek@igalia.com>
2322 [GTK] Disable MathML support in release builds
2323 https://bugs.webkit.org/show_bug.cgi?id=110981
2325 Reviewed by Martin Robinson.
2327 * Source/autotools/SetupWebKitFeatures.m4: Disable the MathML support in release builds
2328 as the code is not yet deemed production-ready.
2330 2013-02-27 Glenn Adams <glenn@skynav.com>
2332 Add ENABLE_CSS3_TEXT_LINE_BREAK flag.
2333 https://bugs.webkit.org/show_bug.cgi?id=110944
2335 Reviewed by Dean Jackson.
2337 * Source/cmake/WebKitFeatures.cmake:
2338 * Source/cmakeconfig.h.cmake:
2340 2013-02-24 Laszlo Gombos <l.gombos@samsung.com>
2342 [EFL] Rename ENABLE_REGIONS to ENABLE_CSS_REGIONS
2343 https://bugs.webkit.org/show_bug.cgi?id=110699
2345 Reviewed by Andreas Kling.
2347 Fix a typo. ENABLE_REGIONS is called ENABLE_CSS_REGIONS
2348 throughout the project.
2350 * Source/cmake/OptionsEfl.cmake:
2352 2013-02-24 Zan Dobersek <zdobersek@igalia.com>
2354 [GTK] Stop generating UserAgentGtk.h
2355 https://bugs.webkit.org/show_bug.cgi?id=110582
2357 Reviewed by Martin Robinson.
2359 * configure.ac: Provide the USER_AGENT_GTK_(MAJOR|MINOR)_VERSION defines in the autotoolsconfig.h
2360 header, containing the user agent versions that are to be used in the user agent string. The
2361 WEBKIT_USER_AGENT_(MAJOR|MINOR)_VERSION name is avoided as the same defines are specified in the
2362 webkitversion.h API header (but are not accessible from the WebCore layer). The UserAgentGtk.h
2363 header is also not generated anymore from the input file.
2365 2013-02-21 Tony Chang <tony@chromium.org>
2367 Autogenerate Settings that call setNeedsRecalcStyleInAllFrames when set
2368 https://bugs.webkit.org/show_bug.cgi?id=109989
2370 Reviewed by Ryosuke Niwa.
2372 Add setters to export symbols.
2374 * Source/autotools/symbols.filter:
2376 2013-02-21 Martin Robinson <mrobinson@igalia.com>
2378 [GTK] Move feature overriding to the configure phase
2379 https://bugs.webkit.org/show_bug.cgi?id=110293
2381 Reviewed by Gustavo Noronha Silva.
2383 Rework the feature overrides logic so all feature defines go into a
2384 header rather than the command line. This has a few benefits. Most
2385 notably, we can reuse the header in the gyp build. Another nice result
2386 is that changes to the configuration automatically result in a full
2387 rebuild and Debug and Release builds can have different configurations.
2389 All feature define processing happens now during the configuration phase,
2390 instead of when running autogen.sh. This means that we need to distribute
2391 the feature processing script.
2393 * GNUmakefile.am: Read feature defines from WebKitFeatures.txt when kicking
2394 off a build. Also include generate-feature-defines-files in the distribution.
2395 * Source/autotools/SetupAutoconfHeader.m4: Remove an extra ENABLE_3D_RENDERING
2396 from the autoconf header, as it is already provided by the feature configuration.
2397 * Source/autotools/SetupWebKitFeatures.m4: Added.
2398 * Source/autotools/webkitfeature.m4: Removed. The functionality has been moved
2399 to SetupWebKitFeatures.m4.
2400 * autogen.sh: Remove the call to override-feature-defines.
2401 * configure.ac: Now include SetupWebKitFeatures.
2403 2013-02-20 Dirk Schulze <krit@webkit.org>
2405 Enable CANVAS_PATH flag
2406 https://bugs.webkit.org/show_bug.cgi?id=108508
2408 Reviewed by Simon Fraser.
2410 Enable CANVAS_PATH flag on trunk.
2412 Existing tests cover the feature.
2414 * Source/cmake/WebKitFeatures.cmake:
2416 2013-02-19 Claudio Saavedra <csaavedra@igalia.com>
2418 Unreviewed build fix.
2420 * Source/autotools/FindDependencies.m4:
2421 * Source/autotools/Versions.m4:
2422 * Source/cmake/FindHarfBuzz.cmake:
2424 Bump gtk and efl dependencies on harfbuzz
2425 to 0.9.7. See bug 110145.
2427 2013-02-19 Changhun Kang <temoochin@company100.net>
2429 Only depend on xrender if x11 is being used
2430 https://bugs.webkit.org/show_bug.cgi?id=84095
2432 Reviewed by Martin Robinson.
2434 * Source/autotools/FindDependencies.m4:
2436 2013-02-18 ChangSeok Oh <shivamidow@gmail.com>
2438 [GTK] Fix nits for configuration
2439 https://bugs.webkit.org/show_bug.cgi?id=110083
2441 Reviewed by Martin Robinson.
2443 Remove unicode backend printing option. The only backend for unicode is icu
2444 after changeset 142724.
2446 * Source/autotools/PrintBuildConfiguration.m4:
2448 2013-02-15 Gustavo Noronha Silva <gns@gnome.org>
2450 Unreviewed build fix.
2452 * Source/autotools/SetupLibtool.m4: Move AR_FLAGS definition so it comes before dolt
2453 and libtool initialization, thus having an effect once again.
2455 2013-02-15 Keishi Hattori <keishi@webkit.org>
2457 Add setValue and closePopup methods to PagePopupController
2458 https://bugs.webkit.org/show_bug.cgi?id=109897
2460 Reviewed by Kent Tamura.
2462 * ManualTests/forms/calendar-picker.html: Added mock setValue and closePopup implementation.
2463 * ManualTests/forms/color-suggestion-picker.html: Ditto.
2465 2013-02-15 Allan Sandfeld Jensen <allan.jensen@digia.com>
2467 Simplify hitTestResultAtPoint and nodesFromRect APIs
2468 https://bugs.webkit.org/show_bug.cgi?id=95720
2470 Reviewed by Julien Chaffraix.
2472 Update exported symbols.
2474 * Source/autotools/symbols.filter:
2476 2013-02-08 Andrey Kosyakov <caseq@chromium.org>
2478 Web Inspector: expose did{Begin,Cancel}Frame() and {will,did}Composite() on WebDebToolsAgent
2479 https://bugs.webkit.org/show_bug.cgi?id=109192
2481 Reviewed by Pavel Feldman.
2483 * Source/autotools/symbols.filter:
2485 2013-02-13 Martin Robinson <mrobinson@igalia.com>
2487 Try once again to fix the build after r142756
2489 * Source/autotools/PrintBuildConfiguration.m4: Do not try to print the GStreamer version
2490 in the build output.
2491 * Source/autotools/SetupAutoconfHeader.m4: Remove the last reference to have_gstreamer.
2493 2013-02-13 Martin Robinson <mrobinson@igalia.com>
2495 Try to fix the build after r142756
2497 * Source/autotools/SetupAutomake.m4: Instead of using the (now gone) have_gstreamer
2498 variable, activate GStreamer if either web audio or web video is enabled.
2500 2013-02-13 Xianzhu Wang <wangxianzhu@chromium.org>
2502 Heap-use-after-free in WebCore::ScrollingCoordinator::hasVisibleSlowRepaintViewportConstrainedObjects.
2503 https://bugs.webkit.org/show_bug.cgi?id=108695
2505 Add a manual test. Unable to write a normal layout test because
2506 1) must waitUntilDone() to reproduce the crash but the redirected URL can't notifyDone();
2507 2) Can't use a frame to contain the test because ScrollingCoordinator handles only the main frame.
2509 Reviewed by Abhishek Arya.
2511 * ManualTests/scrolling-coordinator-viewport-constrained-crash.html: Added.
2513 2013-02-13 Martin Robinson <mrobinson@igalia.com>
2515 [GTK] Remove support for compiling with GStreamer 0.10
2516 https://bugs.webkit.org/show_bug.cgi?id=109593
2518 Reviewed by Philippe Normand.
2520 Remove support for building WebKitGTK+ with GStreamer 0.10. We
2521 can simplify things greatly because we don't have to worry any
2522 longer about selecting one GStreamer API set.
2524 * Source/autotools/FindDependencies.m4:
2525 * Source/autotools/ReadCommandLineArguments.m4:
2526 * Source/autotools/SetupAutoconfHeader.m4:
2527 * Source/autotools/Versions.m4:
2529 2013-02-12 Martin Robinson <mrobinson@igalia.com>
2531 [GTK] Remove the GLib unicode backend
2532 https://bugs.webkit.org/show_bug.cgi?id=109627
2534 Reviewed by Benjamin Poulain.
2536 Remove references to the GLib unicode backend from configuration.
2538 * Source/autotools/FindDependencies.m4:
2539 * Source/autotools/ReadCommandLineArguments.m4:
2540 * Source/autotools/SetupAutoconfHeader.m4:
2541 * Source/autotools/SetupAutomake.m4:
2543 2013-02-12 Christophe Dumez <ch.dumez@sisa.samsung.com>
2545 Remove remaining traces of Web Intents
2546 https://bugs.webkit.org/show_bug.cgi?id=109586
2548 Reviewed by Eric Seidel.
2550 Remove references to Web Intents from CMake files as the functionality
2551 was removed in r142549.
2553 * Source/cmake/WebKitFeatures.cmake:
2554 * Source/cmakeconfig.h.cmake:
2556 2013-02-12 Martin Robinson <mrobinson@igalia.com>
2558 [GTK] Remove the enable-debug-feature configuration option
2559 https://bugs.webkit.org/show_bug.cgi?id=109539
2561 Reviewed by Philippe Normand.
2563 Remove the --enable-debug-feature option from configuration. It doesn't
2564 do anything that --enable-debug doesn't.
2566 * Source/autotools/PrintBuildConfiguration.m4: Remove references to --enable-debug-features.
2567 * Source/autotools/ReadCommandLineArguments.m4: Ditto.
2568 * Source/autotools/SetupAutoconfHeader.m4: Ditto.
2569 * Source/autotools/SetupAutomake.m4: Ditto.
2571 2013-02-12 Zan Dobersek <zdobersek@igalia.com>
2573 Remove ENABLE_XHR_RESPONSE_BLOB handling from various build systems
2574 https://bugs.webkit.org/show_bug.cgi?id=109481
2576 Reviewed by Daniel Bates.
2578 The ENABLE_XHR_RESPONSE_BLOB feature define was removed from the code
2579 back in r120574. There are still occurrences of it in various build systems
2580 which should all be removed as they are useless.
2582 * Source/cmake/OptionsBlackBerry.cmake:
2583 * Source/cmakeconfig.h.cmake:
2585 2013-02-11 Eric Carlson <eric.carlson@apple.com>
2587 [Mac] Track language selection should be sticky
2588 https://bugs.webkit.org/show_bug.cgi?id=109466
2590 Reviewed by Dean Jackson.
2592 * Source/autotools/symbols.filter: Export PageGroup::captionPreferences and Page::initGroup.
2594 2013-02-11 Benjamin Poulain <benjamin@webkit.org>
2596 Kill TestRunner::setMinimumTimerInterval; implement the feature with InternalSettings
2597 https://bugs.webkit.org/show_bug.cgi?id=109349
2599 Reviewed by Sam Weinig.
2601 * Source/autotools/symbols.filter:
2603 2013-02-11 Zan Dobersek <zdobersek@igalia.com>
2605 * Source/WebCore: Modified property svn:ignore, adding GNUmakefile.features.am
2606 to the list of paths to be ignored.
2608 2013-02-10 Laszlo Gombos <l.gombos@samsung.com>
2610 Consolidate the way WTF_USE_PTHREADS is enabled
2611 https://bugs.webkit.org/show_bug.cgi?id=108191
2613 Reviewed by Benjamin Poulain.
2615 Remove duplicated definition of WTF_USE_PTHREADS.
2617 WTF_USE_PTHREADS is defined to 1 on all OS(UNIX) environments in
2620 * Source/cmake/OptionsBlackBerry.cmake:
2621 * Source/cmake/OptionsEfl.cmake:
2623 2013-02-10 Jae Hyun Park <jae.park08@gmail.com>
2625 Rename ENABLE(GLIB_SUPPORT) to USE(GLIB)
2626 https://bugs.webkit.org/show_bug.cgi?id=104266
2628 Reviewed by Philippe Normand.
2630 Using USE(GLIB) instead of ENABLE(GLIB_SUPPORT) is more consistent with
2631 the existing macro naming conventions.
2634 USE() - use a particular third-party library or optional OS service
2635 ENABLE() - turn on a specific feature of WebKit
2637 * Source/autotools/SetupAutoconfHeader.m4:
2638 * Source/cmake/OptionsEfl.cmake:
2640 2013-02-09 Philippe Normand <pnormand@igalia.com>
2642 Unreviewed, another GTK+ build fix after r142343.
2644 * Source/autotools/symbols.filter: Expose the InlineBox delete operator.
2646 2013-02-08 Benjamin Poulain <bpoulain@apple.com>
2648 Move workerThreadCount from TestRunner to WebCore Internals
2649 https://bugs.webkit.org/show_bug.cgi?id=109239
2651 Reviewed by Darin Adler.
2653 * Source/autotools/symbols.filter:
2655 2013-02-08 Dean Jackson <dino@apple.com>
2657 Only a fool would cut and paste from a terminal showing truncated git logs.
2660 Export the full symbol for InlineBox::nodeAtPoint.
2662 * Source/autotools/symbols.filter:
2664 2013-02-08 Dean Jackson <dino@apple.com>
2666 Snapshotted plug-in should use shadow root
2667 https://bugs.webkit.org/show_bug.cgi?id=108284
2669 Unreviewed GTK+ build fix.
2671 * Source/autotools/symbols.filter: Export InlineBox symbols.
2673 2013-02-08 Seulgi Kim <seulgikim@company100.net>
2675 Update .gitignore for vim swap files.
2676 https://bugs.webkit.org/show_bug.cgi?id=109252
2678 Reviewed by Dirk Pranke.
2680 When opening the same files multiple with vim, vim creates a .*.sw[a-p]
2681 file as the swap file.
2685 2013-02-08 Tomas Popela <tpopela@redhat.com>
2687 [GTK] Include files from DerivedSources/webkitdom for introspection
2688 https://bugs.webkit.org/show_bug.cgi?id=108631
2690 Reviewed by Martin Robinson.
2692 Include files from DerivedSources/webkitdom for introspection
2694 * /Source/WebKit/gtk/GNUmakefile.am:
2695 * /Source/WebKit2/GNUmakefile.am:
2697 2013-02-07 Martin Robinson <mrobinson@igalia.com>
2699 [GTK] Split configure.ac into reusable portions
2700 https://bugs.webkit.org/show_bug.cgi?id=109246
2702 Reviewed by Philippe Normand.
2704 Split up configure.ac into sections based on different "phases"
2705 of configuration. This should make it easier to find what you are
2706 looking for as well as creating a "right" place to put things.
2707 A nice side effect of this is that we can share the different
2708 modules with a gyp build.
2710 * Source/autotools/CheckSystemAndBasicDependencies.m4: Added.
2711 * Source/autotools/FindDependencies.m4: Added.
2712 * Source/autotools/PrintBuildConfiguration.m4: Added.
2713 * Source/autotools/ReadCommandLineArguments.m4: Added.
2714 * Source/autotools/SetupAutoconfHeader.m4: Added.
2715 * Source/autotools/SetupAutomake.m4: Added.
2716 * Source/autotools/SetupCompilerFlags.m4: Added.
2717 * Source/autotools/SetupLibtool.m4: Added.
2718 * Source/autotools/Versions.m4: Added.
2721 2013-02-07 David Farler <dfarler@apple.com>
2723 Makefiles should work for arbitrary SDKs and architectures on Apple ports
2724 https://bugs.webkit.org/show_bug.cgi?id=107863
2726 Reviewed by Mark Rowe.
2729 Allow SDKROOT, ARCHS outside of $(ARGS).
2730 Setting ARCHS => ONLY_ACTIVE_ARCH=NO.
2731 * Makefile.shared: options to webkitdirs based on SDKROOT
2732 * Source/Makefile: don't build WebKit2 for iOS
2734 2013-02-07 Martin Robinson <mrobinson@igalia.com>
2736 [GTK] Cleanup command-line defines
2737 https://bugs.webkit.org/show_bug.cgi?id=109213
2739 Reviewed by Xan Lopez.
2741 * GNUmakefile.am: Remove references to flags that are now provided
2742 by autotoolsconfig.h
2743 * configure.ac: Add new AC_DEFINE invocations for flags that were
2744 before manually appended to the compiler CPPFLAGS and clump all
2745 AC_DEFINE invocations together.
2747 2013-02-07 ChangSeok Oh <shivamidow@gmail.com>
2749 [GTK][AC] Clutter required version up to 1.12
2750 https://bugs.webkit.org/show_bug.cgi?id=109037
2752 Reviewed by Martin Robinson.
2754 The clutter requried version is changed to 1.12.
2758 2013-02-07 Zan Dobersek <zdobersek@igalia.com>
2760 [Autotools] Remove uses of Automake FARSTREAM_(CFLAGS|LIBS) variables, USE_FARSTREAM conditional
2761 https://bugs.webkit.org/show_bug.cgi?id=109198
2763 Reviewed by Martin Robinson.
2765 * GNUmakefile.am: The USE_FARSTREAM conditional is being removed while the WTF_USE_FARSTREAM
2766 define is currently a no-op.
2767 * configure.ac: Don't set the Automake conditional as it's currently not needed due
2768 to checking for Farstream dependency being removed in r142005.
2770 2013-02-07 Gavin Peters <gavinp@chromium.org>
2772 Unreviewed, rolling out r142141.
2773 http://trac.webkit.org/changeset/142141
2774 https://bugs.webkit.org/show_bug.cgi?id=108990
2776 Reland r142112, will update Chromium expectations and create a
2777 Chromium bug instead for the crash.
2779 * ManualTests/remove-fixed-position-but-keep-compositing.html: Added.
2781 2013-02-07 Gavin Peters <gavinp@chromium.org>
2783 Unreviewed, rolling out r142112.
2784 http://trac.webkit.org/changeset/142112
2785 https://bugs.webkit.org/show_bug.cgi?id=108990
2787 The new test scrollingcoordinator/non-fast-scrollable-region-transformed- iframe.html crashes on Lion.
2789 See http://test-results.appspot.com/dashboards/flakiness_dashboard.html#tests=scrollingcoordinator%2Fnon-fast-scrollable-region-transformed-iframe.html
2791 * ManualTests/remove-fixed-position-but-keep-compositing.html: Removed.
2793 2013-02-07 Zan Dobersek <zdobersek@igalia.com>
2795 [GTK] configure.ac requires a cleanup
2796 https://bugs.webkit.org/show_bug.cgi?id=99272
2798 Reviewed by Martin Robinson.
2800 Clean up configure.ac. While there is no strict style guideline determined
2801 for this file the changes enforce the usual indentation of four spaces along
2802 with line wrapping at 130 characters and grammar fixes/updates.
2806 2013-02-07 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
2808 [CoordinatedGraphics] Use ScrollingCoordinator to track fixed layers
2809 https://bugs.webkit.org/show_bug.cgi?id=108990
2811 Reviewed by Noam Rosenthal.
2813 Add a new test that allow us to remove the fixed positioning of a layer but still keeping
2814 it compositing. Coordinated Graphics had a bug where the CoordinatedSceneGraph would still
2815 count this layer as fixed position.
2817 * ManualTests/remove-fixed-position-but-keep-compositing.html: Added.
2819 2013-02-07 Gustavo Noronha Silva <gns@gnome.org>
2821 Unreviewed build fix after r141196 for 32 bits autotools.
2823 * Source/autotools/symbols.filter: restore 32 bits version of the
2824 WebCore::TextIterator::getLocationAndLengthFromRange(WebCore::Node*,
2825 WebCore::Range const*, unsigned int&, unsigned int&) symbol.
2827 2013-02-05 Simon Hausmann <simon.hausmann@digia.com>
2829 [Qt] Compile WTF tests of TestWebKitAPI
2830 https://bugs.webkit.org/show_bug.cgi?id=108935
2832 Reviewed by Kenneth Rohde Christiansen.
2834 Build gtest on Linux.
2838 2013-02-06 Jonathon Jongsma <jonathon.jongsma@collabora.com>
2840 [GStreamer] MediaPlayer's code is not easily reusable by other GStreamer-based players
2841 https://bugs.webkit.org/show_bug.cgi?id=100261
2843 Reviewed by Philippe Normand
2845 * configure.ac: removed farstream requirement for now since it's
2846 not actually used yet and makes it more difficult to build and test
2848 2013-02-06 Mike West <mkwst@chromium.org>
2850 Add an ENABLE_NOSNIFF feature flag.
2851 https://bugs.webkit.org/show_bug.cgi?id=109029
2853 Reviewed by Jochen Eisinger.
2855 This new flag will control the behavior of 'X-Content-Type-Options: nosniff'
2856 when processing script and other resource types.
2858 * Source/cmake/WebKitFeatures.cmake:
2859 * Source/cmakeconfig.h.cmake:
2861 2013-02-05 Jocelyn Turcotte <jocelyn.turcotte@digia.com>
2863 [Qt] REGRESSION(r137436): It made all inspector tests timeout on developer builds
2864 https://bugs.webkit.org/show_bug.cgi?id=106554
2866 Reviewed by Simon Hausmann.
2868 Explicitely link WebCore resources in the final DLL only on Windows to
2869 support force_static_libs_as_shared on other platforms.
2871 WebKit1 applications don't get the QtWebKit dynamic library loaded
2872 since libQtWebKitWidgets doesn't depend on libQtWebKit if WebCore and
2873 WebKit1 are dynamic libraries of their own.
2877 2013-02-05 Martin Robinson <mrobinson@igalia.com>
2879 Update the NEWS and configuration in preparation for 1.11.5.
2881 Reviewed by Philippe Normand.
2885 2013-02-04 Benjamin Poulain <bpoulain@apple.com>
2887 Kill suspendAnimation(), resumeAnimation() and numberOfActiveAnimations() from DRT/WTR; use Internals
2888 https://bugs.webkit.org/show_bug.cgi?id=108741
2890 Reviewed by Tony Chang.
2892 * Source/autotools/symbols.filter:
2894 2013-02-02 Patrick Gansterer <paroga@webkit.org>
2896 [CMake] Adopt the WinCE port to new CMake
2897 https://bugs.webkit.org/show_bug.cgi?id=108754
2899 Reviewed by Laszlo Gombos.
2901 Remove the entry point hack which isn't required in the new
2902 CMake version with offical WindowsCE support.
2904 * Source/cmake/OptionsWindows.cmake:
2906 2013-02-01 Benjamin Poulain <bpoulain@apple.com>
2908 Clean the String->AtomicString conversion for AnimationController::pauseAnimationAtTime
2909 https://bugs.webkit.org/show_bug.cgi?id=108558
2911 Reviewed by Dean Jackson.
2913 * Source/autotools/symbols.filter:
2915 2013-02-01 Zan Dobersek <zdobersek@igalia.com>
2917 [GTK] Add WTFURL source files to the build
2918 https://bugs.webkit.org/show_bug.cgi?id=108215
2920 Reviewed by Benjamin Poulain.
2922 * Source/autotools/symbols.filter: Force the export of the KURL::string() symbol.
2923 This is required when using the WTFURL backend but otherwise doesn't affect the build.
2925 2013-02-01 Alexis Menard <alexis@webkit.org>
2927 Enable unprefixed CSS transitions by default.
2928 https://bugs.webkit.org/show_bug.cgi?id=108216
2930 Reviewed by Dean Jackson.
2932 Rename the flag CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED
2933 to CSS_TRANSFORMS_ANIMATIONS_UNPREFIXED which will be used later to
2934 guard the unprefixing work for CSS Transforms and animations.
2936 * Source/cmake/WebKitFeatures.cmake:
2937 * Source/cmakeconfig.h.cmake:
2939 2013-01-31 Christophe Dumez <dchris@gmail.com>
2941 [EFL] Disable Web Intents
2942 https://bugs.webkit.org/show_bug.cgi?id=108457
2944 Reviewed by Alexey Proskuryakov.
2946 Turn off WEB_INTENTS flag in EFL CMake project.
2948 * Source/cmake/OptionsEfl.cmake:
2950 2013-01-31 Simon Hausmann <simon.hausmann@digia.com>
2952 [Qt] Make it possible to compile WebKit2 Qt related files without access to internal WK2 C++ API
2953 https://bugs.webkit.org/show_bug.cgi?id=108472
2955 Reviewed by Andreas Kling.
2957 When linking WebKit2, also link the WebKit2QML module.
2961 2013-01-30 Dominik Röttsches <dominik.rottsches@intel.com>
2963 [HarfBuzz] Remove the HarfBuzz-old code
2964 https://bugs.webkit.org/show_bug.cgi?id=108077
2966 Reviewed by Benjamin Poulain.
2968 Rename WTF_USE_HARFBUZZ_NG to WTF_USE_HARFBUZZ since there
2969 won't be a distinction between ng and non-ng HarfBuzz after
2970 removing the old code.
2972 * Source/cmake/OptionsEfl.cmake:
2974 2013-01-29 Zan Dobersek <zdobersek@igalia.com>
2976 Unreviewed GTK build fix after r141175.
2978 * Source/autotools/symbols.filter: Export the WebCore::Element::createShadowRoot symbol.
2980 2013-01-29 Shinya Kawanaka <shinyak@chromium.org>
2982 [Chromium] Cannot copy text when selecting readonly (or disabled) input elements
2983 https://bugs.webkit.org/show_bug.cgi?id=106287
2985 Reviewed by Hajime Morita.
2987 * Source/autotools/symbols.filter:
2989 2013-01-29 Laszlo Gombos <l.gombos@samsung.com>
2991 [CMake] Add minimum version information for tool dependencies
2992 https://bugs.webkit.org/show_bug.cgi?id=97592
2994 Reviewed by Kenneth Rohde Christiansen.
2996 Capture the minimum version information for the tools that are required
2997 to build WebKit for all CMake based build systems.
3001 2013-01-29 Nate Chapin <japhet@chromium.org>
3003 Enable reuse of cached main resources
3004 https://bugs.webkit.org/show_bug.cgi?id=105667
3006 Reviewed by Adam Barth.
3008 * Source/autotools/symbols.filter: Expose MemoryCache::resourceForURL().
3010 2013-01-29 Laszlo Gombos <l.gombos@samsung.com>
3012 Enable Workers for WinCE
3013 https://bugs.webkit.org/show_bug.cgi?id=108099
3015 Reviewed by Gyuyoung Kim.
3017 WORKERS are enabled for all CMake based ports except WinCE.
3018 Turn on WORKERS for all CMake based ports.
3020 * Source/cmake/OptionsBlackBerry.cmake:
3021 * Source/cmake/OptionsEfl.cmake:
3022 * Source/cmake/WebKitFeatures.cmake:
3024 2013-01-28 Halton Huo <halton.huo@intel.com>
3026 [EFL] Quit debug build without -DSHARED_CORE=ON
3027 https://bugs.webkit.org/show_bug.cgi?id=104773
3029 Reviewed by Laszlo Gombos.
3031 Debug build without -DSHARED_CORE=ON will fail because libwebcore_efl.a
3032 is too big (>4G) to archive. The solution is simply to abort cmake in
3033 this condition and notify developer.
3036 * Source/cmake/OptionsEfl.cmake:
3037 * Source/cmake/OptionsCommon.cmake:
3039 2013-01-28 Renata Hodovan <reni@webkit.org>
3041 [WK2] Putting QtWebProcess into a chrooted sandbox
3042 https://bugs.webkit.org/show_bug.cgi?id=90005
3044 Reviewed by Anders Carlsson and Zoltan Herczeg.
3046 Make it possible to build WebKit2 with SandboxProcess.
3048 * Source/QtWebKit.pro:
3050 2013-01-27 David Farler <dfarler@apple.com>
3052 REGRESSION (r140912): Broke specifying non-trivial ARCHS value to make / build-webkit
3053 https://bugs.webkit.org/show_bug.cgi?id=108028
3055 Reviewed by Dan Bernstein.
3057 * Makefile: Reverted.
3058 * Makefile.shared: Reverted.
3059 * Source/Makefile: Reverted.
3061 2013-01-26 David Farler <dfarler@apple.com>
3063 Allow building with arbitrary SDK and ARCHS with make + Xcode
3064 https://bugs.webkit.org/show_bug.cgi?id=107863
3066 Reviewed by David Kilzer.
3069 Removed references to legacy Xcode configurations.
3071 Added default ARCHS + SDK settings and parameterized xcodebuild calls.
3073 iOS does not build WebKit2.
3075 2013-01-25 Jussi Kukkonen <jussi.kukkonen@intel.com>
3077 [CMake][EFL] Build ThirdParty/leveldb when IndexedDB is enabled
3078 https://bugs.webkit.org/show_bug.cgi?id=106443
3080 Reviewed by Laszlo Gombos.
3082 LevelDB is now included in ThirdParty. Use it when IndexDB is
3085 * Source/cmake/OptionsEfl.cmake:
3086 Set WTF_USE_LEVELDB when IndexedDB is enabled
3088 2013-01-24 Keishi Hattori <keishi@webkit.org>
3090 Adjust design of the Calendar Picker
3091 https://bugs.webkit.org/show_bug.cgi?id=107507
3093 Reviewed by Kent Tamura.
3095 * ManualTests/forms/calendar-picker.html: Use pickerCommonChromium.css and calendarPickerChromium.css.
3097 2013-01-24 Soo-Hyun Choi <s.choi@hackerslab.eu>
3099 [CMake] Remove the definition of WTF_PLATFORM_WIN from the build system
3100 https://bugs.webkit.org/show_bug.cgi?id=101635
3102 Reviewed by Laszlo Gombos.
3104 WTF_PLATFORM_WIN defined twice: Source/cmake/OptionsWindows.cmake and in
3105 Source/WTF/wtf/Platform.h.
3106 It would be more future-proof to have it only defined in common C++ code in
3109 * Source/cmake/OptionsWindows.cmake:
3111 2013-01-23 Zan Dobersek <zdobersek@igalia.com>
3115 Speculative build fix for the GTK port after 140539.
3117 * Source/autotools/symbols.filter:
3119 2013-01-22 Gustavo Noronha Silva <gns@gnome.org>
3121 [GTK] Debug build failure on x86-64
3122 https://bugs.webkit.org/show_bug.cgi?id=107400
3124 Reviewed by Xan Lopez.
3126 * configure.ac: use thin archives for convenience libraries, if AR_FLAGS was not
3127 overriden through the environment variable.
3129 2013-01-22 Zan Dobersek <zdobersek@igalia.com>
3131 [Autotools] Remove the Canvas Path configuration option
3132 https://bugs.webkit.org/show_bug.cgi?id=107537
3134 Reviewed by Martin Robinson.
3136 * configure.ac: Remove the configuration option for the Canvas Path
3137 feature as this is not in line with the new guidelines about feature
3138 enablement in the autotools build system.
3140 2013-01-22 Zan Dobersek <zdobersek@igalia.com>
3142 [Autotools] Place a warning in configure.ac about adding new configuration options
3143 https://bugs.webkit.org/show_bug.cgi?id=107559
3145 Reviewed by Martin Robinson.
3147 * configure.ac: Add an eye-catching section explaining that changes in this file might
3148 not be necessary at all and a link pointing to the guidelines on the Trac wiki.
3150 2013-01-21 Dirk Schulze <dschulze@adobe.com>
3152 Add build flag for Canvas's Path object (disabled by default)
3153 https://bugs.webkit.org/show_bug.cgi?id=107473
3155 Reviewed by Dean Jackson.
3157 Add CANVAS_PATH build flag to build systems.
3159 * Source/cmake/WebKitFeatures.cmake:
3160 * Source/cmakeconfig.h.cmake:
3163 2013-01-19 Ryosuke Niwa <rniwa@webkit.org>
3165 Delete webkit-perf.appspot.com code from WebKit repository
3166 https://bugs.webkit.org/show_bug.cgi?id=107390
3168 Reviewed by Adam Barth.
3170 Delete webkit-perf.appspot.com code from WebKit repository since I maintain
3171 and push the code via https://github.com/rniwa/webkit-perf now.
3173 * Websites/webkit-perf.appspot.com: Removed.
3175 2013-01-19 Philip Rogers <pdr@google.com>
3177 Merge SVGStylable into SVGStyledElement
3178 https://bugs.webkit.org/show_bug.cgi?id=106877
3180 Reviewed by Dirk Schulze.
3182 SVG2 changes element inheritance so all SVGElements are stylable. As a first-step towards a
3183 cleaner class hierarchy, this patch moves SVGStylable into SVGStyledElement.
3187 2013-01-18 Sudarsana Nagineni <sudarsana.nagineni@intel.com>
3189 [CMake] Fix CMake warnings
3190 https://bugs.webkit.org/show_bug.cgi?id=107290
3192 Reviewed by Laszlo Gombos.
3194 Add missing WebKit options to CMake features list.
3196 * Source/cmake/WebKitFeatures.cmake:
3197 * Source/cmakeconfig.h.cmake:
3199 2013-01-18 Sheriff Bot <webkit.review.bot@gmail.com>
3201 Unreviewed, rolling out r140005.
3202 http://trac.webkit.org/changeset/140005
3203 https://bugs.webkit.org/show_bug.cgi?id=107235
3205 broke downstream Chromium interactive_ui_tests (Requested by
3206 dominicc on #webkit).
3208 * Source/autotools/symbols.filter:
3210 2013-01-17 Martin Robinson <mrobinson@igalia.com>
3212 [GTK] Build with LevelDB when IndexedDB is enabled
3213 https://bugs.webkit.org/show_bug.cgi?id=103220
3215 Reviewed by Gustavo Noronha Silva.
3217 * configure.ac: Detect whether the IndexedDatabase feature is enabled. We cannot
3218 use the typical approach for feature detection since we need to adjust the automake
3219 file output based on whether or not IndexedDatabase is enabled.
3221 2013-01-17 Nate Chapin <japhet@chromium.org>
3223 Enable reuse of cached main resources
3224 https://bugs.webkit.org/show_bug.cgi?id=105667
3226 Reviewed by Antti Koivisto.
3228 * Source/autotools/symbols.filter: Expose MemoryCache::resourceForURL().
3230 2013-01-17 Seokju Kwon <seokju.kwon@gmail.com>
3232 [EFL][CMAKE] Compress resource files of inspector
3233 https://bugs.webkit.org/show_bug.cgi?id=106210
3235 Reviewed by Gyuyoung Kim.
3237 Add compressing JavaScript
3238 for smaller package and faster connection of remote web inspector.
3240 * Source/PlatformEfl.cmake:
3242 2013-01-16 Hugo Parente Lima <hugo.lima@openbossa.org>
3244 [CMake] Report actual values for feature configuration (instead of the default)
3245 https://bugs.webkit.org/show_bug.cgi?id=107010
3247 Reviewed by Laszlo Gombos.
3249 * Source/cmake/WebKitFeatures.cmake:
3251 2013-01-16 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3253 [EFL] Move 'DefaultTheme' folder to WebCore/platform/efl
3254 https://bugs.webkit.org/show_bug.cgi?id=106969
3256 Reviewed by Benjamin Poulain.
3258 * Source/PlatformEfl.cmake: Change DefaultTheme path.
3259 * Source/cmake/OptionsEfl.cmake: ditto.
3261 2013-01-15 Alberto Garcia <agarcia@igalia.com>
3263 Fix typos in WebKitFeatures.cmake
3264 https://bugs.webkit.org/show_bug.cgi?id=106952
3266 Reviewed by Martin Robinson.
3268 * Source/cmake/WebKitFeatures.cmake:
3269 Replace "Toogle" with "Toggle".
3271 2013-01-15 Zan Dobersek <zandobersek@gmail.com>
3273 [Autotools] Add support for WebKit2-only builds
3274 https://bugs.webkit.org/show_bug.cgi?id=106889
3276 Reviewed by Gustavo Noronha Silva.
3278 * GNUmakefile.am: Only copy the WebKit1 documentation into the destination
3279 directory if building WebKit1.
3280 * configure.ac: Add a configuration option for disabling the WebKit1 build.
3281 Only conditionally copy WebKit1-specific targets from the input files. Some
3282 small style changes to the WebKit2 configuration flag included as well.
3284 2013-01-14 Nate Chapin <japhet@chromium.org>
3286 Enable reuse of cached main resources
3287 https://bugs.webkit.org/show_bug.cgi?id=105667
3289 Reviewed by Antti Koivisto.
3291 * Source/autotools/symbols.filter: Expose MemoryCache::resourceForURL().
3293 2013-01-14 Alexandre Rostovtsev <tetromino@gentoo.org>
3295 Do not hardcode -ldl in OPENGL_LIBS
3296 https://bugs.webkit.org/show_bug.cgi?id=96602
3298 Reviewed by Philippe Normand.
3300 Some non-Linux systems, e.g. FreeBSD, have dlopen() as part of their
3301 libc, and do not use a separate libdl.
3305 2013-01-11 Carlos Garcia Campos <cgarcia@igalia.com>
3307 Unreviewed. Update NEWS and configure.ac for 1.11.4 release
3309 * configure.ac: Bump version numbers.
3311 2013-01-10 Carlos Garcia Campos <cgarcia@igalia.com>
3313 [GTK] Add API to set the web extensions directory to WebKit2 GTK+
3314 https://bugs.webkit.org/show_bug.cgi?id=106462
3316 Reviewed by Xan Lopez.
3318 * Source/autotools/symbols.filter: Update
3319 WebGtkExtensionManager::initialize symbol.
3321 2013-01-10 Tony Chang <tony@chromium.org>
3323 Speed up supplemental dependency computation
3324 https://bugs.webkit.org/show_bug.cgi?id=106503
3326 Reviewed by Adam Barth.
3328 * Source/cmake/WebKitMacros.cmake: Add --idlAttributesFile to the binding generation step in cmake.
3330 2013-01-10 Zan Dobersek <zandobersek@gmail.com>
3332 [Autotools] Add the AM_WEBKIT_FEATURE_CONDITIONAL macro
3333 https://bugs.webkit.org/show_bug.cgi?id=106576
3335 Reviewed by Martin Robinson.
3337 Replace the AC_CHECK_WEBKIT_FEATURE_ENABLED with the new macro.
3338 The former was executing actions based on the passed-in feature being
3339 enabled in the (possibly overridden) GNUmakefile.features.am, the actions
3340 usually affecting the Automake conditional value that was set up afterwards.
3341 The new macro does this directly, setting up an Automake conditional of the
3342 same name as the feature that was checked.
3344 * Source/autotools/webkitfeature.m4:
3346 2013-01-10 Zan Dobersek <zandobersek@gmail.com>
3348 Remove the ENABLE_ANIMATION_API feature define occurences
3349 https://bugs.webkit.org/show_bug.cgi?id=106544
3351 Reviewed by Simon Fraser.
3353 The Animation API code was removed in r137243. The ENABLE_ANIMATION_API
3354 feature define handling still lingers in various build systems and configurations
3355 but is of no use, so it should be removed.
3357 * Source/cmake/OptionsBlackBerry.cmake:
3358 * Source/cmake/OptionsEfl.cmake:
3359 * Source/cmake/WebKitFeatures.cmake:
3360 * Source/cmakeconfig.h.cmake:
3362 2013-01-10 Carlos Garcia Campos <cgarcia@igalia.com>
3364 [GTK] Add support for loading web process extensions
3365 https://bugs.webkit.org/show_bug.cgi?id=105631
3367 Reviewed by Gustavo Noronha Silva.
3369 * GNUmakefile.am: Add webkit2_web_extension_h_api.
3370 * Source/autotools/symbols.filter: Export WebGtkExtensionManager
3371 symbols required by the injected bundle lib.
3373 2013-01-10 Christophe Dumez <christophe.dumez@intel.com>
3375 [EFL] Add gstreamer 1.0.5 to jhbuild
3376 https://bugs.webkit.org/show_bug.cgi?id=106178
3378 Reviewed by Laszlo Gombos.
3380 Update EFL CMake configuration to require gstreamer
3383 * Source/cmake/FindGStreamer.cmake:
3384 * Source/cmake/OptionsEfl.cmake:
3386 2013-01-09 Hajime Morrita <morrita@google.com>
3388 [Shadow DOM] Distribution related code on ElementShadow should be minimized.
3389 https://bugs.webkit.org/show_bug.cgi?id=106294
3391 Reviewed by Dimitri Glazkov.
3393 * Source/autotools/symbols.filter:
3395 2013-01-08 Zan Dobersek <zandobersek@gmail.com>
3397 Add an Autoconf macro that checks whether a given feature is enabled
3398 https://bugs.webkit.org/show_bug.cgi?id=106380
3400 Reviewed by Martin Robinson.
3402 Add the AC_CHECK_WEBKIT_FEATURE_ENABLED macro. It checks the generated
3403 Source/WebCore/GNUmakefile.features.am file to determine whether the
3404 given feature is enabled or disabled in the build that's being configured.
3406 * Source/autotools/webkitfeature.m4: Added.
3408 2013-01-08 Hajime Morrita <morrita@google.com>
3410 [Shadow DOM] Distribution related code on ShadowRoot should be minimized.
3411 https://bugs.webkit.org/show_bug.cgi?id=106282
3413 Reviewed by Dimitri Glazkov.
3415 * Source/autotools/symbols.filter:
3417 2013-01-03 Sergio Villar Senin <svillar@igalia.com>
3419 [GTK] Add WebP image support
3420 https://bugs.webkit.org/show_bug.cgi?id=105915
3422 Reviewed by Martin Robinson.
3424 WebP is from now on a dependency for WebKitGtk+.
3426 * configure.ac: added WebP library detection.
3428 2013-01-07 Xianzhu Wang <wangxianzhu@chromium.org>
3430 Add window.internals.nonFastScrollableRects for testing scrollable areas in fast/slow paths
3431 https://bugs.webkit.org/show_bug.cgi?id=105546
3433 Reviewed by James Robinson.
3435 Export the new symbol.
3437 * Source/autotools/symbols.filter:
3439 2013-01-04 Adam Klein <adamk@chromium.org>
3441 Remove ENABLE_MUTATION_OBSERVERS #define
3442 https://bugs.webkit.org/show_bug.cgi?id=105459
3444 Reviewed by Ryosuke Niwa.
3446 * Source/cmake/WebKitFeatures.cmake:
3447 * Source/cmakeconfig.h.cmake:
3449 2013-01-04 Zan Dobersek <zandobersek@gmail.com>
3451 REGRESSION (r138184): transitions/transitions-parsing.html is failing on GTK
3452 https://bugs.webkit.org/show_bug.cgi?id=105522
3454 Reviewed by Xan Lopez.
3456 Remove the configuration flag covering unprefixed CSS transition property names.
3457 It does not introduce any dependency. The unprefixed property names should be
3458 available by default.
3462 2013-01-03 Tony Chang <tony@chromium.org>
3464 Generate internal.settings from Settings.in
3465 https://bugs.webkit.org/show_bug.cgi?id=104740
3467 Reviewed by Adam Barth.
3469 * Source/cmake/WebKitMacros.cmake: Specify additional output files from make_settings.pl.
3471 2013-01-02 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3473 [EFL][CMAKE] Remove duplicated conditionals
3474 https://bugs.webkit.org/show_bug.cgi?id=105905
3476 Reviewed by Laszlo Gombos.
3478 * Source/cmake/OptionsEfl.cmake: Remove set(WTF_USE_GLX 1).
3480 2013-01-02 Tony Chang <tony@chromium.org>
3482 Unreviewed, rolling out r138661.
3483 http://trac.webkit.org/changeset/138661
3484 https://bugs.webkit.org/show_bug.cgi?id=104740
3486 Compile problems on EFL
3488 * Source/cmake/WebKitMacros.cmake:
3490 2013-01-02 Tony Chang <tony@chromium.org>
3492 Generate internal.settings from Settings.in
3493 https://bugs.webkit.org/show_bug.cgi?id=104740
3495 Reviewed by Adam Barth.
3497 * Source/cmake/WebKitMacros.cmake: Specify additional output files from make_settings.pl.
3499 2013-01-02 Elliott Sprehn <esprehn@chromium.org>
3501 Transitions and animations do not apply to CSS ::before and ::after pseudo-elements
3502 https://bugs.webkit.org/show_bug.cgi?id=92591
3504 Reviewed by Eric Seidel.
3506 Expose Element::pseudoElement for Internals.
3508 * Source/autotools/symbols.filter:
3510 2013-01-01 KwangYong Choi <ky0.choi@samsung.com>
3512 [EFL] Enable MHTML feature
3513 https://bugs.webkit.org/show_bug.cgi?id=105815
3515 Reviewed by Laszlo Gombos.
3517 ENABLE_MHTML is now ON for EFL.
3519 * Source/cmake/OptionsEfl.cmake:
3521 2012-12-31 Kondapally Kalyan <kalyan.kondapally@intel.com>
3523 [EFL][WebGL] Add compile time support for GLES2.
3524 https://bugs.webkit.org/show_bug.cgi?id=105816
3526 Reviewed by Kenneth Rohde Christiansen.
3528 This patch adds build support for GLES2.
3529 GLES2 support can be enabled during compile time by passing -DENABLE_GLES2=ON as
3530 cmake config parameter. GLES2 options is not enabled by default. This patch doesn't
3531 address all the build issues related to GLES2 but only adds the needed support in
3534 * Source/cmake/OptionsEfl.cmake:
3536 2012-12-31 Carlos Garcia Campos <cgarcia@igalia.com>
3538 [GTK] Move ImageDiff to the Tools directory root
3539 https://bugs.webkit.org/show_bug.cgi?id=105421
3541 Reviewed by Kenneth Rohde Christiansen.
3543 * GNUmakefile.am: Remove the old ImageDiff makefile include.
3545 2012-12-30 Kondapally Kalyan <kalyan.kondapally@intel.com>
3547 [EFL] [WebGL] Rename EGLConfigHelper as EGLConfigSelector.
3548 https://bugs.webkit.org/show_bug.cgi?id=105876
3550 Reviewed by Kenneth Rohde Christiansen.
3552 This is to sync the naming conventions of our classes in both EGL and GLX implementations.
3553 In our GLX implementation, class responsible for the same functionality is named as GLXConfigSelector.
3554 This patch renames EGLConfigHelper as EGLConfigSelector.
3556 * Source/cmake/OptionsEfl.cmake:
3558 2012-12-30 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3560 [EFL] Enable TEMPLATE_ELEMENT feature
3561 https://bugs.webkit.org/show_bug.cgi?id=105865
3563 Reviewed by Laszlo Gombos.
3565 * Source/cmake/OptionsEfl.cmake: Add ENABLE_TEMPLATE_ELEMENT macro.
3567 2012-12-27 Kondapally Kalyan <kalyan.kondapally@intel.com>
3569 [EFL][WebGL] Implement EGL support with GLX.
3570 https://bugs.webkit.org/show_bug.cgi?id=105602
3572 Reviewed by Kenneth Rohde Christiansen.
3574 Adds support for EGL with GLX backend. EGL support can be enabled during compile time
3575 by passing -DENABLE_EGL=ON as cmake config parameter.
3577 * Source/cmake/OptionsEfl.cmake:
3579 2012-12-24 Kondapally Kalyan <kalyan.kondapally@intel.com>
3581 [EFL [WebGL] GLES2 detection is broken.
3582 https://bugs.webkit.org/show_bug.cgi?id=105677
3584 We use the logic in FindGLES.cmake to detect GLES2 support during compile time.
3585 OPENGLES2_FOUND is never set, even though OPENGLES2_INCLUDE_DIR and OPENGLES2_LIBRARY
3586 contain right information. The name passed to find_package_handle_standard_args seems to be the issue here.
3587 This patch changes the name passed to find_package_handle_standard_args to OPENGLES2.
3589 Reviewed by Kenneth Rohde Christiansen.
3591 * Source/cmake/FindGLES.cmake:
3593 2012-12-20 Martin Robinson <mrobinson@igalia.com>
3595 [GTK] Remove plugin process configuration option
3596 https://bugs.webkit.org/show_bug.cgi?id=105564
3598 Reviewed by Carlos Garcia Campos.
3600 Remove the --enable-plugin-process configuration option, opting instead to
3601 always build the plugin process when building WebKit2. It isn't very interesting
3602 for downstream to enable or disable the plugin process. It should always be
3603 enabled for WebKit2 and it's better for us not to have to keep a disabled plugin
3604 process building. Additionally, the in-process plugin isn't functional, since
3605 plugins depend on GTK+ 2 and WebKit2 depends on GTK+ 3.
3607 * configure.ac: Remove the configuration option.
3609 2012-12-21 Elliott Sprehn <esprehn@chromium.org>
3611 Replace documentFragmentIsShadowRoot with isTreeScope
3612 https://bugs.webkit.org/show_bug.cgi?id=105345
3614 Reviewed by Dimitri Glazkov.
3616 Expose isTreeScope symbol.
3618 * Source/autotools/symbols.filter:
3620 2012-12-21 Sheriff Bot <webkit.review.bot@gmail.com>
3622 Unreviewed, rolling out r138338.
3623 http://trac.webkit.org/changeset/138338
3624 https://bugs.webkit.org/show_bug.cgi?id=105621
3626 speculative rollout because fast/dom/shadow/content-element-
3627 distributed-nodes.html is crashing on linux debug. (Requested
3628 by loislo on #webkit).
3630 * Source/autotools/symbols.filter:
3632 2012-12-20 Elliott Sprehn <esprehn@chromium.org>
3634 Replace documentFragmentIsShadowRoot with isTreeScope
3635 https://bugs.webkit.org/show_bug.cgi?id=105345
3637 Reviewed by Dimitri Glazkov.
3639 Expose isTreeScope symbol.
3641 * Source/autotools/symbols.filter:
3643 2012-12-20 Ryuan Choi <ryuan.choi@samsung.com>
3645 [EFL] Build break with latest EFL libraries.
3646 https://bugs.webkit.org/show_bug.cgi?id=104827
3648 Reviewed by Laszlo Gombos.
3650 The eo EFL package is introduced and evas and ecore use it since 1.8.
3651 While introducing Eo, EFL changed several structures of Evas and Ecore
3652 from own specific class to Eo.
3654 So, this patch adds FindEo and changes declaration of Evas, Evas_Object,
3655 Ecore_Timer to build with latest EFL libraries.
3657 * Source/cmake/FindEo.cmake: Added.
3658 * Source/cmake/OptionsEfl.cmake:
3659 Modified to check Eo when version of EFL libraries is 1.8.
3661 2012-12-20 Kondapally Kalyan <kalyan.kondapally@intel.com>
3663 [EFL][WebGL][Wk2] Replace HAVE(GLX) checks with USE(GLX).
3664 https://bugs.webkit.org/show_bug.cgi?id=105431
3666 Reviewed by Kenneth Rohde Christiansen.
3668 This patch changes the check HAVE(GLX) to USE(GLX).
3669 This would enable us to choose our preferred GL backend during build time.
3671 * Source/cmake/OptionsEfl.cmake:
3673 2012-12-20 Zan Dobersek <zandobersek@gmail.com>
3675 [GTK] Remove the --enable-unstable-features configuration option
3676 https://bugs.webkit.org/show_bug.cgi?id=105327
3678 Reviewed by Martin Robinson.
3680 Remove the unnecessary feature_defines_unstable variable.
3681 Remove the unstable-features configuration option.
3686 2012-12-20 Dominik Röttsches <dominik.rottsches@intel.com>
3688 [EFL] MiniBrowser does not play Infinite Gangnam Style
3689 https://bugs.webkit.org/show_bug.cgi?id=103531
3691 Reviewed by Kenneth Rohde Christiansen.
3693 WebAudio now switched to ON for EFL.
3695 * Source/cmake/OptionsEfl.cmake:
3697 2012-12-19 Yael Aharon <yael.aharon@intel.com>
3699 [EFL] Allow the build system to find OpenGL ES
3700 https://bugs.webkit.org/show_bug.cgi?id=104760
3702 Reviewed by Laszlo Gombos.
3704 Add a way to find if GLESv2 is supported by the build system.
3705 Support for GLESv2 will be added separately.
3707 * Source/cmake/FindGLES.cmake: Added.
3709 2012-12-19 Alexis Menard <alexis@webkit.org>
3711 Implement CSS parsing for CSS transitions unprefixed.
3712 https://bugs.webkit.org/show_bug.cgi?id=104804
3714 Reviewed by Dean Jackson.
3716 Add a new flag ENABLE_CSS_TRANSFORMS_ANIMATIONS_TRANSITIONS_UNPREFIXED
3717 to cover the work of unprefixing Transforms, Animations and
3718 Transitions. It will let the possibility of each ports to turn it off
3719 in their release branches until we're confident that these CSS
3720 properties are ready to be unprefixed.
3722 * Source/cmake/WebKitFeatures.cmake:
3723 * Source/cmakeconfig.h.cmake:
3726 2012-12-18 Ming Xie <mxie@rim.com>
3728 [BlackBerry] Add -fno-exceptions to CXX_FLAGS
3729 https://bugs.webkit.org/show_bug.cgi?id=105306
3731 Reviewed by Rob Buis.
3733 Disable exception handling. We don't have any try or catch
3734 constructs in our code.
3736 * Source/cmake/OptionsBlackBerry.cmake:
3738 2012-12-18 Kondapally Kalyan <kalyan.kondapally@intel.com>
3740 [EFL] Allow the build system to detect EGL support.
3741 https://bugs.webkit.org/show_bug.cgi?id=105287
3743 Reviewed by Laszlo Gombos.
3745 Currently, we don't have any way to determine if EGL is supported by the build.
3746 This patch adds support for this. The patch doesn't make any changes to take this into
3747 use. This will be done in another patch.
3749 * Source/cmake/FindEGL.cmake:
3751 2012-12-17 Halton Huo <halton.huo@intel.com>
3753 [EFL] Add ecore_imf_evas to FindEcore.cmake
3754 https://bugs.webkit.org/show_bug.cgi?id=105159
3756 Reviewed by Laszlo Gombos.
3758 ecore_imf_evas is a separate library, we should add for EFL port as well.
3760 * Source/cmake/FindEcore.cmake: Add finding FIND_EFL_LIBRARY for ecore_imf_evas
3762 2012-12-17 Kenneth Rohde Christiansen <kenneth@webkit.org>
3764 Add manual test to verify that geometry methods (moveTo, etc) work
3765 https://bugs.webkit.org/show_bug.cgi?id=105160
3767 Reviewed by Alexis Menard.
3769 * ManualTests/window-geometry.html: Added.
3771 2012-12-16 ChangSeok Oh <shivamidow@gmail.com>
3773 [GTK][AC] Build failure with an option --with-acceleration-backend=clutter
3774 https://bugs.webkit.org/show_bug.cgi?id=105027
3776 Reviewed by Gustavo Noronha Silva.
3778 I turned off opengl related variables, enable_glx, enable_egl and enable_gles2
3779 when selecting clutter as the acceleration-backend. Because they seem useless for the AC by clutter.
3783 2012-12-15 Simon Fraser <simon.fraser@apple.com>
3785 Fix repaint issues when resizing a window with centered content, for platforms with a tile cache
3786 https://bugs.webkit.org/show_bug.cgi?id=105073
3788 Reviewed by Dan Bernstein.
3790 Add a manual test for window resize with a centered element.
3792 * ManualTests/resize-repaint.html: Added.
3794 2012-12-13 Stephen White <senorblanco@chromium.org>
3796 Added manual test for canvas setFont speed.
3797 https://bugs.webkit.org/show_bug.cgi?id=104923
3799 Reviewed by James Robinson.
3801 * ManualTests/canvas-font-speed.html: Added.
3803 2012-12-13 Jerome Pasion <jerome.pasion@digia.com>
3805 [Qt] Doc: Fixing Qt WebKit reference documentation.
3807 Reviewed by Simon Hausmann.
3810 -added \module for C++ classes and \qmlmodule for QML types
3811 -added links to the Qt WebKit Examples pages
3812 -fixed the qhp settings for Qt Creator
3814 Task-number: QTBUG-28583
3815 Task-number: QTBUG-28418
3816 Task-number: QTBUG-27646
3818 * Source/qtwebkit.qdocconf:
3820 2012-12-13 Jerome Pasion <Jerome.Pasion@digia.com>
3822 [Qt] Fix missing doc dependency to examples
3824 Reviewed by Simon Hausmann.
3826 * Source/qtwebkit.qdocconf:
3828 2012-12-12 John Griggs <jgriggs@rim.com>
3830 2012-12-12 John Griggs <jgriggs@rim.com>
3832 [BlackBerry] Update Media Controls for BlackBerry Platform
3833 https://bugs.webkit.org/show_bug.cgi?id=104443
3834 https://przilla.ott.qnx.com/bugzilla/show_bug.cgi?id=204748
3836 Update Media Controls for BlackBerry platform to allow audio, embedded video and fullscreen video controls to be