blob: 1ed1a1cd771af44c229023980699aa513c3e15fd [file] [log] [blame]
mrobinson@webkit.org1c2b02e2012-10-05 17:54:57 +000012012-10-05 José Dapena Paz <jdapena@igalia.com>
2
3 [GTK] Add support for creating EGL contexts
4 https://bugs.webkit.org/show_bug.cgi?id=77921
5
6 Reviewed by Martin Robinson.
7
8 This patch adds support for EGL, using OpenGL and OpenGL ES 2. Both
9 options are set up on compile time, with the configure options
10 --enable-egl and --enable-gles2.
11
12 The implementation only adds support for EGL on top of X11, to
13 isolate the changes to the minimum. More changes should come
14 later to enable EGL for other targets (as Wayland).
15
16 * GNUmakefile.am:
17 * configure.ac: new configure options --enable-egl and --enable-gles2.
18
rwlbuis@webkit.org18076902012-10-05 14:33:11 +0000192012-10-04 Rob Buis <rbuis@rim.com>
20
21 [BlackBerry] Sync up CMake files
22 https://bugs.webkit.org/show_bug.cgi?id=98442
23
24 Reviewed by Gyuyoung Kim.
25
26 Amongst others some internal paths changed.
27
28 * Source/cmake/OptionsBlackBerry.cmake:
29
commit-queue@webkit.org54c40662012-10-04 22:32:07 +0000302012-10-04 Christophe Dumez <christophe.dumez@intel.com>
31
32 [EFL] Add libxml 2.8.0 to jhbuild
33 https://bugs.webkit.org/show_bug.cgi?id=98418
34
35 Reviewed by Laszlo Gombos.
36
37 Bump dependency for libxml to 2.8.0 to match
38 jhbuild.
39
40 * Source/cmake/OptionsEfl.cmake:
41
kbalazs@webkit.orge9055cb2012-10-04 13:42:11 +0000422012-10-04 Balazs Kelemen <kbalazs@webkit.org>
43
44 Don't allow to disable compositing in forced compositing mode
45 https://bugs.webkit.org/show_bug.cgi?id=98048
46
47 Reviewed by Jocelyn Turcotte.
48
49 Export Settings::setAcceleratedCompositingEnabled because it has been deinlined.
50
51 * Source/autotools/symbols.filter:
52
ryuan.choi@samsung.comec475c72012-10-04 05:46:28 +0000532012-10-03 Ryuan Choi <ryuan.choi@samsung.com>
54
55 [EFL] Default.edj should be generated although ENABLE_WEBKIT disabled.
56 https://bugs.webkit.org/show_bug.cgi?id=97753
57
58 Reviewed by Laszlo Gombos.
59
60 default.edj is used in both webkit/efl and webkit2/efl.
61 However, it has been generated only when ENABLE_WEBKIT is enabled.
62
63 This patch separates the script which generates default.edj
64 from source/webkit/platformefl.cmake.
65
66 * Source/CMakeLists.txt:
67 * Source/PlatformEfl.cmake: Added to generate custom target for default theme.
68 * Source/cmake/OptionsEfl.cmake:
69 Moved directory generation from WebKit/PlatformEfl.cmake
70 because THEME_BINARY_DIR is used for both Default Theme and control theme in Tools.
71
commit-queue@webkit.orgc0c0e812012-10-03 21:11:10 +0000722012-10-03 Otto Derek Cheung <otcheung@rim.com>
73
74 [BlackBerry] Implementing the NetworkInfo API for BB port
75 https://bugs.webkit.org/show_bug.cgi?id=98273
76
77 Reviewed by Rob Buis.
78
79 Adding references to new classes added to support BlackBerry's
80 NetworkInfo implementation.
81
82 * Source/cmake/OptionsBlackBerry.cmake:
83
keishi@webkit.org2fb5b7d2012-10-02 02:37:27 +0000842012-10-01 Keishi Hattori <keishi@webkit.org>
85
86 Calendar picker should use zero as default step base
87 https://bugs.webkit.org/show_bug.cgi?id=97976
88
89 Reviewed by Kent Tamura.
90
91 * ManualTests/forms/calendar-picker.html: Added stepBase parameters.
92
commit-queue@webkit.org74ba6be2012-09-29 06:31:08 +0000932012-09-28 Mariusz Grzegorczyk <mariusz.g@samsung.com>
94
95 [WK2][GTK][EFL] Share WebKit2-GTK plugin process implementation with EFL port
96 https://bugs.webkit.org/show_bug.cgi?id=91844
97
98 Reviewed by Simon Hausmann.
99
100 Turn on Netscape Plugin API by default for WebKit2-Efl.
101
102 * Source/cmake/OptionsEfl.cmake:
103
hclam@chromium.orga8e31292012-09-28 23:58:22 +00001042012-09-28 Alpha Lam <hclam@chromium.org>
105
106 REGRESSION(r122215) - CachedImage::likelyToBeUsedSoon crashes on accessing a deleted CachedImageClient
107 https://bugs.webkit.org/show_bug.cgi?id=97749
108
109 Reviewed by James Robinson.
110
111 Added a manual test to demonstrate drag image and crashing.
112
113 * ManualTests/drag-image-no-crash.html: Added.
114
keishi@webkit.orgbca51ec2012-09-27 08:17:24 +00001152012-09-27 Keishi Hattori <keishi@webkit.org>
116
117 SuggestionPicker should support rtl
118 https://bugs.webkit.org/show_bug.cgi?id=97555
119
120 Reviewed by Kent Tamura.
121
122 * ManualTests/forms/calendar-picker.html: Added tests for Arabic with datalist.
123
paroga@webkit.org47f23e92012-09-27 07:30:06 +00001242012-09-27 Patrick Gansterer <paroga@webkit.org>
125
126 [WINCE] Enable JIT by default
127
128 * Source/cmake/OptionsWinCE.cmake:
129
mrobinson@webkit.orgfc8c42f2012-09-26 15:53:42 +00001302012-09-26 Martin Robinson <mrobinson@igalia.com>
131
132 [GTK] Use XDamage to simplify RedirectedXCompositeWindow
133 https://bugs.webkit.org/show_bug.cgi?id=97267
134
135 Reviewed by Alejandro G. Castro.
136
137 Use XDamage to queue redraws of the widget when redirecting accelerated compositing
138 to an offscreen window. This allows removing a finicky timer-based approach, improves
139 performance, and allows simplifying things greatly.
140
141 * configure.ac: Add support for finding XDamage via pkg-config.
142
hausmann@webkit.org283c7c52012-09-26 08:38:35 +00001432012-09-26 Simon Hausmann <simon.hausmann@digia.com>
144
145 [Qt] Remove Qt Quick 1 support
146
147 Reviewed by Kenneth Rohde Christiansen.
148
149 It is being moved to the Qt5 QtQuick1 module.
150
151 * Source/tests.pri:
152
zandobersek@gmail.com69904aa2012-09-26 07:38:12 +00001532012-09-26 Zan Dobersek <zandobersek@gmail.com>
154
155 [GTK] Enable some of the unstable CSS features
156 https://bugs.webkit.org/show_bug.cgi?id=97572
157
158 Reviewed by Martin Robinson.
159
160 Export the required RuntimeEnabledFeatures symbol.
161
162 * Source/autotools/symbols.filter:
163
commit-queue@webkit.orgfe797d02012-09-25 22:16:30 +00001642012-09-25 Cosmin Truta <ctruta@rim.com>
165
166 [BlackBerry] Enable LLInt
167 https://bugs.webkit.org/show_bug.cgi?id=97604
168
169 Reviewed by Yong Li.
170
171 * Source/cmake/OptionsBlackBerry.cmake:
172
rniwa@webkit.orgfa81ae52012-09-25 21:22:08 +00001732012-09-25 Ryosuke Niwa <rniwa@webkit.org>
174
175 Perf-o-matic should store "values" and support array'ed input
176 https://bugs.webkit.org/show_bug.cgi?id=97601
177
178 Reviewed by Dirk Pranke.
179
180 Support new JSON format where the outermost structure is an array instead of a dictionary and results may
181 contain "values". This change will let us remove some code from run-perf-tests.
182
183 Old: {"webkit-revision": 123456, "results": {"test": {"avg": 123}}
184 New: [{"webkit-revision": 123456, "results": {"test": {"avg": 123, values: [122, 123, 124]}}}]
185
186 * Websites/webkit-perf.appspot.com/app.yaml: Incremented the version number.
187 * Websites/webkit-perf.appspot.com/models.py:
188 (TestResult): Added values property.
189 (TestResult.get_or_insert_from_parsed_json): Pass in "values" to the constructor if the value is present.
190 (ReportLog.get_value): Use the first item in the array if self._parsed uses the new format.
191 (ReportLog.results_are_well_formed): Verifies that items in "values" are floats convertible. Also verify that
192 if the JSON uses new format, there is exactly one set of results. In theory, we could support multiple results
193 but we don't do that now for its complexity.
194 * Websites/webkit-perf.appspot.com/models_unittest.py:
195 (TestResultTests.test_get_or_insert_stat_value): Make sure values is present and is an empty list.
196 (TestResultTests.test_get_or_insert_stat_value_with_values): Added.
197 (ReportLogTests.test_results_are_well_formed):
198 (ReportLogTests.test_chromium_revision): Renamed from chromium_revision so that it actually runs.
199 (ReportLogTests.test_results_in_array):
200
commit-queue@webkit.orgcef48762012-09-25 08:14:53 +00002012012-09-25 Laszlo Gombos <l.gombos@samsung.com>
202
203 [EFL] Update minimal required versions for dependencies
204 https://bugs.webkit.org/show_bug.cgi?id=97523
205
206 Reviewed by Gyuyoung Kim.
207
208 Use the same versions numbers for dependencies as in Tools/efl/jhbuild.modules.
209
210 * Source/cmake/OptionsEfl.cmake:
211
hausmann@webkit.orgf849a072012-09-25 08:08:17 +00002122012-09-24 Simon Hausmann <simon.hausmann@digia.com>
213
214 [Qt] Fix build with latest Qt 5
215 https://bugs.webkit.org/show_bug.cgi?id=97479
216
217 Reviewed by Tor Arne Vestbø.
218
219 Define MODULE_BASE_DIR before loading qt_module.prf, which now calls syncqt. MODULE_BASE_DIR is
220 passed as last parameter (source dir) to syncqt now, so set it to the directory that contains
221 sync.profile.
222
223 * Source/api.pri:
224
commit-queue@webkit.org67248b22012-09-25 06:51:39 +00002252012-09-24 Bo Liu <boliu@chromium.org>
226
227 Reland "Add in-place reload behavior to ImagesEnabled setting" with optimizations
228 https://bugs.webkit.org/show_bug.cgi?id=97055
229
230 Reviewed by Adam Barth.
231
232 Relanding 128780, 128676, 128645. Was reverted in 128914 due to
233 performance regression in Chromium.
234
235 New changes in addition to previously reverted patches:
236
237 Refactored CachedResource::requestResource, loadResource, and
238 revalidateResource. Moved CachedResource::load method to end of
239 requestResource so there is one place where load is called for all
240 resources.
241
242 Added a enum parameter for requestResource and
243 determineRevalidationPolicy so that FrameLoaderClient::allowImage call
244 do not need to be called multiple times.
245
246 Removed CachedImage::load call in requestImage so it is not called
247 twice.
248
249 Removed unnecessary Frame.h includes in CachedResource and
250 CachedImage.
251
252 Removed dead load() method declaration in CachedImage.
253
254 Updated text expectation for two image-permissions tests to reflect
255 the removed calls to allowImage.
256
257 * Source/autotools/symbols.filter:
258
commit-queue@webkit.org143a7ff52012-09-25 03:22:13 +00002592012-09-24 Byungwoo Lee <bw80.lee@samsung.com>
260
261 [CMake] Change hardcoded 'lib' and 'bin' in CMakeLists.txt to 'LIB_INSTALL_DIR' and 'EXEC_INSTALL_DIR'.
262 https://bugs.webkit.org/show_bug.cgi?id=97419
263
264 Reviewed by Gyuyoung Kim.
265
266 Use the value of LIB_INSTALL_DIR and EXEC_INSTALL_DIR instead of
267 hardcoding 'lib' and 'bin' for CMAKE_{ARCHIVE,LIBRARY,RUNTIME}_OUTPUT_DIRECTORY.
268
269 * CMakeLists.txt:
270 Use ${LIB_INSTALL_DIR} instead of hardcoding "lib".
271 Use ${EXEC_INSTALL_DIR} instead of hardcoding "bin".
272
commit-queue@webkit.orgc4157482012-09-24 20:07:13 +00002732012-09-24 Sheriff Bot <webkit.review.bot@gmail.com>
274
ossy@webkit.org7fa15452012-09-24 20:47:45 +0000275 Unreviewed, rolling out r129343.
276 http://trac.webkit.org/changeset/129343
277 https://bugs.webkit.org/show_bug.cgi?id=97479
278
279 It broke the build (Requested by Ossy_NIGHT on #webkit).
280
281 * Source/api.pri:
282
2832012-09-24 Sheriff Bot <webkit.review.bot@gmail.com>
284
commit-queue@webkit.orgc4157482012-09-24 20:07:13 +0000285 Unreviewed, rolling out r129388.
286 http://trac.webkit.org/changeset/129388
287 https://bugs.webkit.org/show_bug.cgi?id=97477
288
289 Caused an assertion in a WebKit2 unit test (Requested by
290 abarth on #webkit).
291
292 * Source/autotools/symbols.filter:
293
dominik.rottsches@intel.comdfe84c82012-09-24 18:49:40 +00002942012-09-24 Dominik Röttsches <dominik.rottsches@intel.com>
295
296 [EFL][DRT] Enable Regions support
297 https://bugs.webkit.org/show_bug.cgi?id=83897
298
299 Reviewed by Kenneth Rohde Christiansen.
300
301 Default build setting for CSS regions set to on.
302
303 * Source/cmake/OptionsEfl.cmake:
304
commit-queue@webkit.org2a1dff22012-09-24 18:13:34 +00003052012-09-24 Bo Liu <boliu@chromium.org>
306
307 Reland "Add in-place reload behavior to ImagesEnabled setting" with optimizations
308 https://bugs.webkit.org/show_bug.cgi?id=97055
309
310 Reviewed by Adam Barth.
311
312 Relanding 128780, 128676, 128645. Was reverted in 128914 due to
313 performance regression in Chromium.
314
315 New changes in addition to previously reverted patches:
316
317 Refactored CachedResource::requestResource, loadResource, and
318 revalidateResource. Moved CachedResource::load method to end of
319 requestResource so there is one place where load is called for all
320 resources.
321
322 Added a enum parameter for requestResource and
323 determineRevalidationPolicy so that FrameLoaderClient::allowImage call
324 do not need to be called multiple times.
325
326 Removed CachedImage::load call in requestImage so it is not called
327 twice.
328
329 Removed unnecessary Frame.h includes in CachedResource and
330 CachedImage.
331
332 Removed dead load() method declaration in CachedImage.
333
334 Updated text expectation for two image-permissions tests to reflect
335 the removed calls to allowImage.
336
337 * Source/autotools/symbols.filter:
338
commit-queue@webkit.orgb3cd24a2012-09-24 11:38:00 +00003392012-09-24 Vivek Galatage <vivekgalatage@gmail.com>
340
341 Web Inspector: implement testing harness for pure protocol tests.
342 https://bugs.webkit.org/show_bug.cgi?id=90675
343
344 Reviewed by Yury Semikhatsky.
345
346 Added export symbols required for Gtk+ to support the Inspector Protocol
347 testing harness.
348
349 * Source/autotools/symbols.filter:
350
hausmann@webkit.org4bd09882012-09-24 11:07:29 +00003512012-09-24 Simon Hausmann <simon.hausmann@digia.com>
352
353 [Qt] Fix build with latest Qt 5
354
355 Reviewed by Tor Arne Vestbø.
356
357 Define MODULE_BASE_DIR before loading qt_module.prf, which now calls syncqt. MODULE_BASE_DIR is
358 passed as last parameter (source dir) to syncqt now, so set it to the directory that contains
359 sync.profile.
360
361 * Source/api.pri:
362
keishi@webkit.orgec5c8e02012-09-24 04:39:09 +00003632012-09-23 Keishi Hattori <keishi@webkit.org>
364
365 Add suggestionPicker to CalendarPicker
366 https://bugs.webkit.org/show_bug.cgi?id=97201
367
368 Reviewed by Kent Tamura.
369
370 * ManualTests/forms/calendar-picker.html: Added tests for SuggestionPicker.
371
fischman@chromium.org9de834a2012-09-22 04:44:29 +00003722012-09-21 Ami Fischman <fischman@chromium.org>
373
374 HTMLMediaElement isn't garbage collected between document reloads
375 https://bugs.webkit.org/show_bug.cgi?id=97020
376
377 Reviewed by Eric Carlson.
378
379 Manual test added: ManualTests/audio-freed-during-reload.html
380
381 * ManualTests/audio-freed-during-reload.html:
382
crogers@google.com143fd022012-09-21 22:12:36 +00003832012-09-21 Chris Rogers <crogers@google.com>
384
385 Add Web Audio support for deprecated/legacy APIs
386 https://bugs.webkit.org/show_bug.cgi?id=97050
387
388 Reviewed by Eric Carlson.
389
390 * Source/cmake/WebKitFeatures.cmake:
391
hausmann@webkit.orgb2449d72012-09-21 12:05:41 +00003922012-09-21 Simon Hausmann <simon.hausmann@digia.com>
393
394 [Qt] Bail out when trying to build WebKit with Qt != 5
395
396 Reviewed by Tor Arne Vestbø.
397
398 Moved check for Qt version out of default_pre into top-level WebKit.pro,
399 because we never reach default_pre.prf due to the lack of .qmake.conf support
400 in older versions of Qt/QMake.
401
402 * WebKit.pro:
403
hausmann@webkit.org7870ad12012-09-20 11:58:44 +00004042012-09-20 Simon Hausmann <simon.hausmann@digia.com>
405
406 [Qt] QtWebKit module header includes private dependencies
407
408 Reviewed by Tor Arne Vestbø.
409
410 Moved loading of webkit_modules.prf a few lines down after the definition
411 of QT_API_DEPENDS, because webkit_modules.prf does the sanitization of the
412 QT variable now and therefore needs QT_API_DEPENDS.
413
414 * Source/api.pri:
415
commit-queue@webkit.orgd6c30c62012-09-19 03:39:04 +00004162012-09-18 Sailesh Agrawal <sail@chromium.org>
417
418 Chromium: Scrollbar with tickmarks doesn't respond to clicks
419 https://bugs.webkit.org/show_bug.cgi?id=96049
420
421 Reviewed by Beth Dakin.
422
423 Update exported symbols.
424
425 * Source/autotools/symbols.filter:
426
commit-queue@webkit.org0d7a7412012-09-18 18:18:08 +00004272012-09-18 Bo Liu <boliu@chromium.org>
428
429 Revert 128780, 128676, 128645
430 https://bugs.webkit.org/show_bug.cgi?id=97022
431
432 Reviewed by Adam Barth.
433
434 I made these revisions to add in-place reload behavior to ImagesEnabled setting.
435 Reverting this for now due to them causing performance regression in
436 chromium, possibly caused by increased calls to
437 PermissionClient::imageAllowed.
438
439 * Source/autotools/symbols.filter:
440
ryuan.choi@samsung.com53f38802012-09-18 07:20:05 +00004412012-09-18 Ryuan Choi <ryuan.choi@samsung.com>
442
443 [CMAKE] Fix build break because of memory exhausted.
444 https://bugs.webkit.org/show_bug.cgi?id=77327
445
446 Reviewed by Gyuyoung Kim.
447
448 Added to avoid memory exhaustion on 32bit linux debug build.
449
450 * Source/cmake/OptionsCommon.cmake:
451
rwlbuis@webkit.org9c82b2d2012-09-17 20:55:20 +00004522012-09-17 Rob Buis <rbuis@rim.com>
453
454 [BlackBerry] Enable VIDEO_TRACK
455 https://bugs.webkit.org/show_bug.cgi?id=96949
456
457 Reviewed by Antonio Gomes.
458
459 Turn on VIDEO_TRACK feature.
460
461 * Source/cmake/OptionsBlackBerry.cmake:
462
zandobersek@gmail.comb975a612012-09-17 17:58:07 +00004632012-09-17 Zan Dobersek <zandobersek@gmail.com>
464
465 [Gtk] Remove configuration options for stable features that are currently enabled
466 https://bugs.webkit.org/show_bug.cgi?id=96621
467
468 Reviewed by Martin Robinson.
469
470 Remove configuration flags that were used for either features that were enabled
471 by default or were enabled only when unstable features support was enabled. In
472 any case the feature was removed only if it does not introduce a dependency.
473
474 * configure.ac:
475
vestbo@webkit.org10de7822012-09-17 13:32:37 +00004762012-09-17 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
477
478 [Qt] Auto-generate the module pri file for QtWebKit
479
480 Reviewed by Simon Hausmann.
481
482 * Source/api.pri:
483
jchaffraix@webkit.org5083f632012-09-15 01:24:30 +00004842012-09-14 Julien Chaffraix <jchaffraix@webkit.org>
485
486 Revert r127457 and following fixes due to several hit-testing regressions
487 https://bugs.webkit.org/show_bug.cgi?id=96830
488
489 Reviewed by Antonio Gomes.
490
491 This change reverts r127457, r127863 and r128505.
492
493 * Source/autotools/symbols.filter:
494
abarth@webkit.org79bb5eb2012-09-14 22:04:58 +00004952012-09-14 Adam Barth <abarth@webkit.org>
496
497 Remove webkitPostMessage
498 https://bugs.webkit.org/show_bug.cgi?id=96577
499
500 Reviewed by Ojan Vafai.
501
502 Add ENABLE_LEGACY_VENDOR_PREFIXES flag.
503
504 * Source/cmake/WebKitFeatures.cmake:
505 * Source/cmakeconfig.h.cmake:
506
jpfau@apple.comaaef7312012-09-14 21:30:42 +00005072012-09-14 Jeffrey Pfau <jpfau@apple.com>
508
509 Allow third-party storage blocking setting to change while a page is loaded
510 https://bugs.webkit.org/show_bug.cgi?id=95790
511
512 Reviewed by Brady Eidson.
513
514 Update exported symbols.
515
516 * Source/autotools/symbols.filter:
517
commit-queue@webkit.orgd0a50672012-09-14 20:04:30 +00005182012-09-14 Bo Liu <boliu@chromium.org>
519
520 Add in-place reload behavior to ImagesEnabled setting
521 https://bugs.webkit.org/show_bug.cgi?id=95478
522
523 Reviewed by Adam Barth.
524
525 Export WebCore::Settings::setImagesEnabled symbol.
526
527 * Source/autotools/symbols.filter:
528
vestbo@webkit.orgbb5e6be2012-09-14 13:41:24 +00005292012-09-14 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
530
531 [Qt] Fix handling of debug/release/debug_and_release/build_all
532
533 We now pick up the defaults from Qt, in default_pre (CONFIG already
534 contains the appropriate values for debug and release). We then let
535 the command line arguments to qmake, or the project files themselves,
536 override the configuration, and finally we sanitize the configuration
537 in default_post.
538
539 Reviewed by Simon Hausmann.
540
541 * Source/api.pri:
542
keishi@webkit.org13c4f222012-09-14 11:11:17 +00005432012-09-14 Keishi Hattori <keishi@webkit.org>
544
545 Add runtime flag that enables lang attribute for form controls in LayoutTests
546 https://bugs.webkit.org/show_bug.cgi?id=96636
547
548 Reviewed by Kent Tamura.
549
550 * Source/autotools/symbols.filter:
551
commit-queue@webkit.org9a8a2e52012-09-13 15:31:12 +00005522012-09-13 Raphael Kubo da Costa <raphael.kubo.da.costa@intel.com>
553
554 [CMake] Remove some redundant warning flags and enable a few more warnings.
555 https://bugs.webkit.org/show_bug.cgi?id=96654
556
557 Reviewed by Kenneth Rohde Christiansen.
558
559 * Source/cmake/WebKitHelpers.cmake: Remove a few warning flags
560 which are already enabled by -Wall and -Wextra, remove -W which
561 looks useless and also enable a few more warnings by removing
562 their -Wno-foo counterparts which were present.
563
vestbo@webkit.orgbef66922012-09-13 12:39:46 +00005642012-09-13 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
565
vestbo@webkit.org18883b62012-09-13 15:10:43 +0000566 [Qt] Ensure that QT is finalized before loading qt_module.prf
567
568 As qt_module.prf does dependency tracking based on the content of the
569 QT variable. The intermediate WebKit modules modify the variable in
570 their .pri files, so we have to ensure we've loaded all the modules
571 before loading qt_module.
572
573 Reviewed by Tor Arne Vestbø.
574 Patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com> on 2012-09-13
575
576 * Source/api.pri:
577
5782012-09-13 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
579
vestbo@webkit.orgbef66922012-09-13 12:39:46 +0000580 [Qt] Make sure LIBS, PKGCONFIG, and QT, do not affect QtWebKit's prl file
581
582 Unless it's actually a dependency of the public QtWebKit API.
583
584 We could replace every occurance of LIBS, PKGCONFIG, and QT, in the pri
585 files with their _PRIVATE equivivalent, but that's likely to break when
586 someone adds a new QT/LIBS/PKGCONFIG += foo line somewhere. Instead we
587 clean up the variables in default_post.
588
589 This means that the CONFIG -= explicitlib in linkAgainstLibrary() is no
590 longer needed, as it was a workaround for the intermediate libraries ending
591 up in the prl file. And, since CONFIG -= staticlib was there to support
592 the explicitlib option, we can remove that too (as well as the exception
593 for gprof, since it would be empty). If gprof needs tweaks to always link
594 statically they should go in gprof.prf.
595
596 Reviewed by Simon Hausmann.
597
598 * Source/api.pri:
599
vestbo@webkit.orgab7c14a2012-09-13 10:37:28 +00006002012-09-13 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
601
602 [Qt] Fllow rename of qt_module_config.prf to qt_module.prf
603
604 Reviewed by Tor Arne Vestbø.
605
606 * Source/api.pri:
607
hausmann@webkit.org5c756e22012-09-13 08:50:40 +00006082012-09-13 Simon Hausmann <simon.hausmann@nokia.com>
609
610 [Qt] syncqt isn't re-run when WebKit1.pro changes and we're building with --no-webkit2
611 https://bugs.webkit.org/show_bug.cgi?id=96545
612
613 Reviewed by Tor Arne Vestbø.
614
615 Do the QMAKE_INTERNAL_INCLUDED_FILES trick separately for WebKit1.pro and WebKit2/Target.pri,
616 depending on build?(webkit1) and build?(webkit2), as discussed earlier.
617
618 * Source/api.pri:
619
commit-queue@webkit.org3f2c0092012-09-13 05:09:58 +00006202012-09-12 Sheriff Bot <webkit.review.bot@gmail.com>
621
622 Unreviewed, rolling out r127876.
623 http://trac.webkit.org/changeset/127876
624 https://bugs.webkit.org/show_bug.cgi?id=96600
625
626 mouse click doesn't work for spin button if spin button in
627 iframe (Requested by yosin on #webkit).
628
629 * Source/autotools/symbols.filter:
630
commit-queue@webkit.orge6e86232012-09-13 00:56:49 +00006312012-09-12 KyungTae Kim <ktf.kim@samsung.com>
632
633 [EFL] Support download attribute feature
634 https://bugs.webkit.org/show_bug.cgi?id=96462
635
636 Reviewed by Gyuyoung Kim.
637
638 * Source/cmake/OptionsEfl.cmake: Enable DOWNLOAD_ATTRIBUTE feature.
639
commit-queue@webkit.org4e9d4a02012-09-12 19:21:41 +00006402012-09-12 Sami Kyostila <skyostil@google.com>
641
642 Rename OVERFLOW_SCROLLING as ACCELERATED_OVERFLOW_SCROLLING
643 https://bugs.webkit.org/show_bug.cgi?id=96251
644
645 Reviewed by Simon Fraser.
646
647 Rename OVERFLOW_SCROLLING as ACCELERATED_OVERFLOW_SCROLLING to better describe
648 the feature it controls.
649
650 * Source/cmakeconfig.h.cmake:
651
ryuan.choi@samsung.com47ae6ee2012-09-12 04:24:57 +00006522012-09-11 Ryuan Choi <ryuan.choi@samsung.com>
653
654 [CMAKE] Supply feature defines to CodeGeneratorTestRunner.
655 https://bugs.webkit.org/show_bug.cgi?id=96273
656
657 Reviewed by Gyuyoung Kim.
658
659 * Source/cmake/WebKitFeatures.cmake: Generated FEATURE_DEFINES_WITH_SPACE_SEPARATOR.
660
commit-queue@webkit.org17d4dad2012-09-11 22:32:24 +00006612012-09-11 Arnaud Renevier <a.renevier@sisa.samsung.com>
662
663 [Gtk] allow building with css-shaders
664 https://bugs.webkit.org/show_bug.cgi?id=95603
665
666 Reviewed by Martin Robinson.
667
668 if unstable features and accelerated compositing are turned on, and
669 acceleration backend is opengl, then build CSS Shaders and CSS
670 Filters.
671
672 * configure.ac:
673
commit-queue@webkit.org2f7ffce2012-09-11 18:31:11 +00006742012-09-11 Marcelo Lira <marcelo.lira@openbossa.org>
675
676 Restore original value of mock scrollbars enabled in InternalSettings
677 https://bugs.webkit.org/show_bug.cgi?id=87680
678
679 Reviewed by Adam Barth.
680
681 Added backup support for mock scrollbars state in
682 InternalSettings::Backup, and removed support for these
683 from Qt's DumpRenderTree.
684
685 * Source/autotools/symbols.filter:
686
rakuco@webkit.org72080602012-09-11 15:33:04 +00006872012-09-11 Raphael Kubo da Costa <rakuco@webkit.org>
688
689 [EFL] Rewrite the EFL-related Find modules
690 https://bugs.webkit.org/show_bug.cgi?id=95237
691
692 Reviewed by Kenneth Rohde Christiansen.
693
694 FindEFL.cmake had several problems which caused unnecessary trouble
695 when building the EFL port under some setups:
696
697 o It looked for some modules (such as ecore) more than once for no
698 reason, which led to people adding libraries and include paths in
699 different ways across the build system.
700
701 o It depended on pkg-config being present for the searches to
702 succeed.
703
704 o It obtained the library definitions from pkg-config, so
705 ${FOO_LIBRARIES} would be set to something like "foo;bar" which
706 expanded to "-lfoo -lbar" to the linker. If a wrong -L<path> was
707 passed before that, the wrong library installation would end up
708 being picked up.
709
710 o Due to the problem above, we also needed to set the LINK_FLAGS
711 property for each target with the value of ${FOO_LDFLAGS}, which was
712 also obtained from pkg-config and sort of compensated the fact that
713 the libraries did not use absolute paths and added the required -L
714 paths. This also included dependencies for these libraries, so we
715 ended up including libraries indirectly, which is bad.
716
717 We have now replaced that file with a set of Find-modules which are
718 much more granular, each of them responsible for looking for a
719 single library and its components and setting library and include
720 locations the right way (with FIND_PATH() and FIND_LIBRARY()), so
721 that all the problems above are fixed.
722
723 * Source/cmake/EFLHelpers.cmake: Added.
724 * Source/cmake/FindEDBus.cmake: Added.
725 * Source/cmake/FindEFL.cmake: Removed.
726 * Source/cmake/FindEcore.cmake: Added.
727 * Source/cmake/FindEdje.cmake: Added.
728 * Source/cmake/FindEeze.cmake: Added.
729 * Source/cmake/FindEfreet.cmake: Added.
730 * Source/cmake/FindEina.cmake: Added.
731 * Source/cmake/FindEvas.cmake: Added.
732 * Source/cmake/OptionsEfl.cmake:
733
hausmann@webkit.org3ce75262012-09-11 13:51:45 +00007342012-09-11 Simon Hausmann <simon.hausmann@nokia.com>
735
736 [Qt] In-source builds are broken
737
738 Reviewed by Tor Arne Vestbø.
739
740 The Tools sub-directory contains a Makefile checked into SVN. For in-source builds let's not try to
741 overwrite it but instead generate a dedicated Makefile.Tools.
742
743 * Makefile:
744 * WebKit.pro:
745
vestbo@webkit.orga5de2262012-09-11 13:06:39 +00007462012-09-11 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
747
748 [Qt] Add a configure step to the Qt build system
749
750 This allows building the Qt port using just 'qmake WebKit.pro'. Using
751 the build-webkit script is still supported, and will add slightly more
752 logic to the build, such as detecting the need for clean or incremental
753 builds.
754
755 Internally, the build system now uses a new variable, WEBKIT_CONFIG, for
756 all things related to configuring the build, such as use/have/enable flags,
757 and these are translated to defines in default_post. Project files should
758 no longer check contains(DEFINES,...) to detect features, but use the new
759 enable?(), use?(), and have?() functions. The no_webkit1 and no_webkit2
760 options have been translated into WEBKIT_CONFIG options as well, and can
761 be checked using build?().
762
763 Reviewed by Simon Hausmann.
764
765 * Source/QtWebKit.pro:
766 * Source/api.pri:
767 * Source/tests.pri:
768 * WebKit.pro:
769
commit-queue@webkit.org934f4082012-09-10 16:06:32 +00007702012-09-10 Thiago Marcos P. Santos <thiago.santos@intel.com>
771
772 [CMake][EFL] Enable the LLInt
773 https://bugs.webkit.org/show_bug.cgi?id=92682
774
775 Reviewed by Csaba Osztrogonác.
776
777 Added LLInt to CMake buildsystem and enabled it by default on EFL.
778 Note that Ruby is not enforced: a secondary check is done when LLInt
779 is enabled on the JSC's CMakeLists.txt.
780
781 * CMakeLists.txt:
782 * Source/cmake/OptionsEfl.cmake:
783 * Source/cmake/WebKitFeatures.cmake:
784 * Source/cmakeconfig.h.cmake:
785
simon.fraser@apple.com4030b0a2012-09-08 00:48:40 +00007862012-09-07 Simon Fraser <simon.fraser@apple.com>
787
788 box-shadow causes overlay scrollbars to be in the wrong position when element is composited
789 https://bugs.webkit.org/show_bug.cgi?id=85647
790
791 Reviewed by James Robinson.
792
793 Test overlay scrollbars in composited layers.
794
795 * ManualTests/scrollbars/scrollbars-in-composited-layers.html: Added.
796
mrobinson@webkit.org219213a2012-09-07 17:52:07 +00007972012-09-07 Martin Robinson <mrobinson@igalia.com>
798
799 [GTK] Move user agent helpers to WebCore
800 https://bugs.webkit.org/show_bug.cgi?id=95745
801
802 Reviewed by Carlos Garcia Campos.
803
804 Added an autoconf step for the new user agent shared code header in
805 WebCore. This is necessary so that we can use the user agent version
806 based on the information in the configure.ac file.
807
808 * configure.ac:
809
allan.jensen@nokia.com38071cd2012-09-07 16:09:16 +00008102012-09-07 Allan Sandfeld Jensen <allan.jensen@nokia.com>
811
812 Simplify hitTestResultAtPoint and nodesFromRect APIs
813 https://bugs.webkit.org/show_bug.cgi?id=95720
814
815 Reviewed by Antonio Gomes.
816
817 Update exported symbols.
818
819 * Source/autotools/symbols.filter:
820
zandobersek@gmail.com47053b32012-09-07 16:01:56 +00008212012-09-07 Zan Dobersek <zandobersek@gmail.com>
822
823 [GTK] Multiple feature defines in webcore_cppflags can occur
824 https://bugs.webkit.org/show_bug.cgi?id=95942
825
826 Reviewed by Martin Robinson.
827
828 Add the feature_defines_unstable variable that should control values of feature
829 defines for unstable features when unstable features are not enabled (e.g. release builds).
830
831 * GNUmakefile.am:
832
zandobersek@gmail.com6a566432012-09-06 17:58:42 +00008332012-09-06 Zan Dobersek <zandobersek@gmail.com>
834
835 [Gtk] Remove configuration options for features that are not supported by the Gtk port
836 https://bugs.webkit.org/show_bug.cgi?id=87664
837
838 Reviewed by Martin Robinson.
839
840 Remove configuration options for features that are completely unsupported by the GTK port.
841 They only bloat the configure.ac file. They should be re-added when the feature becomes
842 supported and introduces an external dependency that the users might want to avoid.
843
844 * configure.ac:
845
hausmann@webkit.org516d3eb2012-09-06 10:55:43 +00008462012-09-06 Simon Hausmann <simon.hausmann@nokia.com>
847
848 [Qt] Fix build with ANGLE on platforms that provide EGL/GLESv2
849 https://bugs.webkit.org/show_bug.cgi?id=95965
850
851 Reviewed by Tor Arne Vestbø.
852
853 Add ANGLE as separate static library to the build and dependencies.
854
855 * Source/api.pri:
856 * WebKit.pro:
857
staikos@webkit.orgfcde6392012-09-06 01:16:40 +00008582012-09-05 George Staikos <staikos@webkit.org>
859
860 [BlackBerry] Match th ebuild flags from the platform library
861 https://bugs.webkit.org/show_bug.cgi?id=95423
862
863 Reviewed by Antonio Gomes.
864
865 Unaligned build flags can cause crashes and other strange behavior.
866 These two were not defined here but were defined on the system.
867
868 * Source/cmake/OptionsBlackBerry.cmake:
869
kaustubh@motorola.com478c5092012-09-05 11:36:03 +00008702012-09-05 Kaustubh Atrawalkar <kaustubh@motorola.com>
871
872 [DRT] LTC:: Move printing related APIs from LayoutTestController to Internals
873 https://bugs.webkit.org/show_bug.cgi?id=92735
874
875 Reviewed by Hajime Morita.
876
877 Move numberOfPages, pageProperty & pageSizeAndMarginsInPixels in Internals and remove duplicated code from DumprenderTree & WebkitTestRunner.
878 Added symbols for GTK builds for corresponding APIs.
879
880 * Source/autotools/symbols.filter:
881
jchaffraix@webkit.orgdeb687a2012-09-04 23:39:00 +00008822012-09-04 Julien Chaffraix <jchaffraix@webkit.org>
883
884 REGRESSION(r120832): RenderLayer::clampScrollOffset doesn't properly clamp
885 https://bugs.webkit.org/show_bug.cgi?id=95776
886
887 Reviewed by Simon Fraser.
888
889 * ManualTests/select-menu-list-wrongly-positioned.html: Added.
890
commit-queue@webkit.org61e24692012-09-04 13:13:08 +00008912012-09-04 Michał Pakuła vel Rutka <m.pakula@samsung.com>
892
893 [EFL] Context menu restore.
894 https://bugs.webkit.org/show_bug.cgi?id=74179
895
896 Reviewed by Gyuyoung Kim.
897
898 Adds context menu support for EFL port using non-CROSS_PLATFORM_CONTEXT_MENUS
899 approach, the same as used in WebKit2.
900
901 * Source/cmake/OptionsEfl.cmake: Turn on CONTEXT_MENUS flag for EFL port
902
allan.jensen@nokia.com80831832012-09-04 11:56:46 +00009032012-09-04 Allan Sandfeld Jensen <allan.jensen@nokia.com>
904
905 Allow child-frame content in hit-tests.
906 https://bugs.webkit.org/show_bug.cgi?id=95204
907
908 Reviewed by Antonio Gomes.
909
910 Update exported symbols.
911
912 * Source/autotools/symbols.filter:
913
commit-queue@webkit.org3a5958b2012-09-04 09:25:24 +00009142012-09-04 Jinwoo Song <jinwoo7.song@samsung.com>
915
916 [CMAKE] Update cmakeconfig.h.cmake
917 https://bugs.webkit.org/show_bug.cgi?id=95712
918
919 Reviewed by Gyuyoung Kim.
920
921 Update feature definitions which are missing compared to WebKitFeatures.cmake
922
923 * Source/cmakeconfig.h.cmake:
924
commit-queue@webkit.org3b4355c2012-09-03 14:01:17 +00009252012-09-03 Jinwoo Song <jinwoo7.song@samsung.com>
926
927 [EFL] Use WebKitVersion.h to get version information
928 https://bugs.webkit.org/show_bug.cgi?id=95669
929
930 Reviewed by Gyuyoung Kim.
931
932 WEBKIT_USER_AGENT_MAJOR_VERSION and WEBKIT_USER_AGENT_MINOR_VERSION
933 are defined as constant in the OptionsEfl.cmake. But we do not need
934 to define these here but can use the defined constant in WebKitVersion.h.
935
936 WebKitVersion.h is already generated with the version information
937 from the Source/WebCore/Configurations/Version.xcconfig.
938
939 * Source/cmake/OptionsEfl.cmake: Do not set WEBKIT_USER_AGENT_* variables.
940 * Source/cmakeconfig.h.cmake: Remove WEBKIT_USER_AGENT_* definitions
941 as no more port uses.
942
tony@chromium.orgb866aaa2012-08-31 21:17:19 +00009432012-08-31 Tony Chang <tony@chromium.org>
944
945 Remove ENABLE_CSS3_FLEXBOX compile time flag
946 https://bugs.webkit.org/show_bug.cgi?id=95382
947
948 Reviewed by Ojan Vafai.
949
950 Everyone is already enabling this by default and the spec has stablized.
951
952 * Source/cmake/WebKitFeatures.cmake:
953 * Source/cmakeconfig.h.cmake:
954 * configure.ac:
955
commit-queue@webkit.org9f7e2312012-08-30 21:56:45 +00009562012-08-30 JungJik Lee <jungjik.lee@samsung.com>
957
958 [EFL][WK2] Add WebMemorySampler feature.
959 https://bugs.webkit.org/show_bug.cgi?id=91214
960
961 Reviewed by Kenneth Rohde Christiansen.
962
963 Set WebMemorySampler feature on in EFL port.
964
965 * Source/cmake/OptionsEfl.cmake:
966 * Source/cmake/WebKitFeatures.cmake:
967 * Source/cmakeconfig.h.cmake:
968
rwlbuis@webkit.orgcd4492b2012-08-30 20:14:58 +00009692012-08-30 Rob Buis <rbuis@rim.com>
970
971 [CMake] Suppress ANGLE compilation warnings
972 https://bugs.webkit.org/show_bug.cgi?id=95377
973
974 Reviewed by Antonio Gomes.
975
976 Change WEBKIT_SET_EXTRA_COMPILER_FLAGS so it has an option to suppress C++ warnings.
977
978 * Source/cmake/WebKitHelpers.cmake:
979
hausmann@webkit.orgca4d6662012-08-29 18:50:56 +00009802012-08-29 Thiago Macieira <thiago.macieira@intel.com>
981
982 Tell git-archive to not export .gitattributes and .gitignore
983
984 Reviewed by Simon Hausmann.
985
986 Exclude git specific files from archives created via git-archive.
987
988 * .gitattributes:
989
commit-queue@webkit.org32cc8762012-08-28 22:59:22 +00009902012-08-28 Mario Sanchez Prada <msanchez@igalia.com>
991
992 Add directory generated by Eclipse to .gitignore
993 https://bugs.webkit.org/show_bug.cgi?id=95231
994
995 Reviewed by Andreas Kling.
996
997 * .gitignore: Ignore .settings directory.
998
rwlbuis@webkit.org2e9fadb2012-08-27 15:51:09 +00009992012-08-27 Rob Buis <rbuis@rim.com>
1000
1001 [BlackBerry] remove -fno-rtti option in CMAKE_C_FLAGS
1002 https://bugs.webkit.org/show_bug.cgi?id=95089
1003
1004 Reviewed by Antonio Gomes.
1005
1006 This option does not make sense for compiling C and gives a warning.
1007
1008 * Source/cmake/OptionsBlackBerry.cmake:
1009
commit-queue@webkit.org30167702012-08-27 09:19:27 +000010102012-08-27 Mikhail Pozdnyakov <mikhail.pozdnyakov@intel.com>
1011
1012 Rename RegisterProtocolHandler API to NavigatorContentUtils
1013 https://bugs.webkit.org/show_bug.cgi?id=94920
1014
1015 Reviewed by Adam Barth.
1016
1017 Modified configuration files so that they contain renamed NavigatorContentUtils-prefixed files.
1018
1019 * Source/cmake/OptionsBlackBerry.cmake:
1020 * Source/cmake/OptionsEfl.cmake:
1021 * Source/cmake/WebKitFeatures.cmake:
1022 * Source/cmakeconfig.h.cmake:
1023
kevino@webkit.org0ea72832012-08-23 18:41:33 +000010242012-08-23 Kevin Ollivier <kevino@theolliviers.com>
1025
1026 [wx] Unreviewed build fix. Disable compilation of WebDOM file for now,
1027 add the opentype directory, and remove old ATSUI files no longer in the tree.
1028
1029 * wscript:
1030
jesus@webkit.orgdcf00282012-08-23 18:28:41 +000010312012-08-22 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
1032
1033 [EFL] Use WTF_USE_SOUP instead BUILDING_SOUP__
1034 https://bugs.webkit.org/show_bug.cgi?id=94744
1035
1036 Reviewed by Gustavo Noronha Silva.
1037
1038 There is no need to define BUILDING_SOUP__ if only WTF_USE_SOUP
1039 is used.
1040
1041 * GNUmakefile.am:
1042 * Source/cmake/OptionsEfl.cmake:
1043
zandobersek@gmail.com56572452012-08-23 18:20:39 +000010442012-08-23 Zan Dobersek <zandobersek@gmail.com>
1045
1046 [Gtk] Move feature defines processing into a GNUmakefile that's simple to autogenerate
1047 https://bugs.webkit.org/show_bug.cgi?id=87127
1048
1049 Reviewed by Martin Robinson.
1050
1051 Add 'feature_defines_defaults' and 'feature_defines_overrides' variables
1052 and define them, along with 'feature_defines' (changed from the all-caps version),
1053 before webcore_cppflags.
1054
1055 * GNUmakefile.am:
1056
commit-queue@webkit.orgd89cca72012-08-23 16:26:04 +000010572012-08-23 Martin Robinson <mrobinson@igalia.com>
1058
1059 [GTK] The tarball should be called webkitgtk-x.x.x.tar.xz
1060 https://bugs.webkit.org/show_bug.cgi?id=94572
1061
1062 Reviewed by Carlos Garcia Campos.
1063
1064 Change the name of the tarball to match the name of the library
1065 and to disambiguate it from other WebKit ports.
1066
1067 * configure.ac: Update the tarball name.
1068
commit-queue@webkit.org0b980c72012-08-23 13:21:39 +000010692012-08-23 Carlos Garcia Campos <cgarcia@igalia.com>
1070
carlosgc@webkit.org132d6792012-08-23 15:48:18 +00001071 Unreviewed. Bump WebKitGTK+ version number.
1072
1073 * configure.ac: Bump version number to 1.11.0 now that we branched
1074 for 1.10.
1075
10762012-08-23 Carlos Garcia Campos <cgarcia@igalia.com>
1077
commit-queue@webkit.org0b980c72012-08-23 13:21:39 +00001078 REGRESSION(r126306): it broke the plugin process
1079 https://bugs.webkit.org/show_bug.cgi?id=94797
1080
1081 Reviewed by Xan Lopez.
1082
1083 * GNUmakefile.am:
1084
bdakin@apple.com231bd902012-08-22 20:20:14 +000010852012-08-22 Beth Dakin <bdakin@apple.com>
1086
1087 https://bugs.webkit.org/show_bug.cgi?id=94401
1088 Add support for making a web site become paginated using overflow:
1089 paged-x | paged-y
1090 -and corresponding-
1091 <rdar://problem/11831783>
1092
1093 Reviewed by Dave Hyatt.
1094
1095 * Source/autotools/symbols.filter:
1096
kov@webkit.orgd76520b2012-08-22 15:47:53 +000010972012-08-22 Gustavo Noronha Silva <gns@gnome.org>
1098
1099 [GTK] Split WebCore/platform into a separate library
1100 https://bugs.webkit.org/show_bug.cgi?id=94435
1101
1102 Reviewed by Martin Robinson.
1103
1104 More people have been reporting problems when linking WebCore because
1105 the command line limit is being exceeded. Splitting WebCore a bit more
1106 is in order.
1107
1108 * GNUmakefile.am: add variable that will hold the list of source files
1109 for libWebCorePlatform .
1110
commit-queue@webkit.org0d1aac52012-08-21 22:35:21 +000011112012-08-21 Thiago Marcos P. Santos <thiago.santos@intel.com>
1112
1113 [EFL] Enable CSS Text Decoration by default
1114 https://bugs.webkit.org/show_bug.cgi?id=94483
1115
1116 Reviewed by Kenneth Rohde Christiansen.
1117
1118 By enabling this feature by default, it will get tested by the bots
1119 and we can make sure no regressions will happen.
1120
1121 * Source/cmake/OptionsEfl.cmake:
1122
commit-queue@webkit.org1ac54b12012-08-21 22:32:32 +000011232012-08-21 Ulan Degenbaev <ulan@chromium.org>
1124
1125 Call AdjustAmountOfExternalAllocatedMemory when V8ArrayBuffer constructed and destructed
1126 https://bugs.webkit.org/show_bug.cgi?id=92993
1127
1128 Reviewed by Kenneth Russell.
1129
1130 Call AdjustAmountOfExternalAllocatedMemory when V8ArrayBuffer
1131 is constructed and destructed so that V8's garbage collection
1132 heuristics can account for the memory held by these objects.
1133
1134 * ManualTests/typed-array-memory.html: Added.
1135
mrobinson@webkit.org9632d0322012-08-21 20:29:16 +000011362012-08-21 Martin Robinson <mrobinson@igalia.com>
1137
1138 [GTK] Using a native window for the WebView breaks GtkOverlay
1139 https://bugs.webkit.org/show_bug.cgi?id=90085
1140
1141 Reviewed by Alejandro G. Castro.
1142
1143 * configure.ac: Parse xcomposite pkg-config file during configuration.
1144
paroga@webkit.org6363b4f2012-08-21 13:44:29 +000011452012-08-21 Patrick Gansterer <paroga@webkit.org>
1146
1147 Build fix for WinCE after r115348.
1148
1149 * Source/cmake/OptionsWindows.cmake: Removed duplicated WEBKIT_OPTION_DEFAULT_PORT_VALUE().
1150
staikos@webkit.orgd56466e2012-08-20 22:23:54 +000011512012-08-20 George Staikos <staikos@webkit.org>
1152
1153 [BlackBerry] Enable XHR Response BLOB
1154 https://bugs.webkit.org/show_bug.cgi?id=94525
1155
1156 Reviewed by Rob Buis.
1157
1158 Add the XHR response blob enable feature to the cmake build system and
1159 enable it for BlackBerry.
1160
1161 * Source/cmake/OptionsBlackBerry.cmake: Add the feature and enable
1162 * Source/cmakeconfig.h.cmake: Add the feature
1163
commit-queue@webkit.org2736b662012-08-20 09:09:26 +000011642012-08-20 Dominik Röttsches <dominik.rottsches@intel.com>
1165
1166 [EFL] Get rid of pango backend support once harfbuzz-ng is working
1167 https://bugs.webkit.org/show_bug.cgi?id=92102
1168
1169 Reviewed by Kenneth Rohde Christiansen.
1170
1171 Removing choice of font backend, Pango detection not required any more.
1172
1173 * Source/cmake/FindPango.cmake: Removed.
1174 * Source/cmake/LibFindMacros.cmake: Removed.
1175 * Source/cmake/OptionsEfl.cmake: Removing choice of font backend.
1176
rakuco@webkit.org1e351fd2012-08-17 19:12:16 +000011772012-08-17 Raphael Kubo da Costa <rakuco@webkit.org>
1178
1179 [CMake] Add FindDBus.cmake and use it in the EFL port.
1180 https://bugs.webkit.org/show_bug.cgi?id=94319
1181
1182 Reviewed by Daniel Bates.
1183
1184 Currently, the Battery Status-related code in the EFL port uses
1185 libdbus but does not directly include its directories or link
1186 against it, relying instead on the compiler flags coming via
1187 EDbus's pkg-config information.
1188
1189 That will break once we stop obtaining EFL's include directories
1190 and library paths from pkg-config, so write FindDBus.cmake to
1191 prepare for that.
1192
1193 * Source/cmake/FindDBus.cmake: Added.
1194 * Source/cmake/OptionsEfl.cmake: Look for D-Bus if BATTERY_STATUS
1195 support is enabled.
1196
rwlbuis@webkit.orge10c2a32012-08-17 15:12:52 +000011972012-08-17 Rob Buis <rbuis@rim.com>
1198
1199 [BlackBerry] Remove some shared libraries from linking
1200 https://bugs.webkit.org/show_bug.cgi?id=94253
1201
1202 Reviewed by Yong Li.
1203
1204 Remove some shared libraries.
1205
1206 * Source/cmake/OptionsBlackBerry.cmake:
1207
kov@webkit.org8e83d702012-08-16 23:39:35 +000012082012-08-16 Gustavo Noronha Silva <gns@gnome.org>
1209
1210 Unreviewed speculative 32 bits build fix.
1211
1212 * Source/autotools/symbols.filter: add symbol version that gets
1213 generated in 32 bits build.
1214
commit-queue@webkit.org830ba052012-08-16 20:54:21 +000012152012-08-16 Max Feil <mfeil@rim.com>
1216
1217 [BlackBerry] Some media controls are mispositioned for dynamic live streams (HLS)
1218 https://bugs.webkit.org/show_bug.cgi?id=94176
1219
1220 Reviewed by Antonio Gomes.
1221
1222 An automated layout test is not possible for this patch because
1223 dynamic live streams require a special dedicated web server.
1224 Putting an external video URL into an automated test is not
1225 correct either. So I have created a manual test that points to
1226 an external HLS video that works today.
1227
1228 * ManualTests/blackberry/video-hls-controls.html: Added.
1229
commit-queue@webkit.org2f936c82012-08-16 08:52:25 +000012302012-08-16 Marja Hölttä <marja@chromium.org>
1231
1232 FormController, WebHistoryItem: Enable reading selected file names from document state
1233 https://bugs.webkit.org/show_bug.cgi?id=91231
1234
1235 Reviewed by Jochen Eisinger.
1236
1237 This change enables Chromium to set up file permissions properly when
1238 the session restore feature restores a page with selected files.
1239
1240 * Source/autotools/symbols.filter: Exported FormController::getReferencedFilePaths and HistoryController::saveDocumentAndScrollState.
1241
tkent@chromium.org2f3dfdf2012-08-16 03:54:03 +000012422012-08-15 Kent Tamura <tkent@chromium.org>
1243
1244 Calendar Picker: Localize numbers in a calendar picker
1245 https://bugs.webkit.org/show_bug.cgi?id=93704
1246
1247 Reviewed by Hajime Morita.
1248
1249 * ManualTests/forms/calendar-picker.html:
1250 Add a mock pagePopupController.localizeNumberString().
1251
rniwa@webkit.orgff14beb2012-08-16 02:40:21 +000012522012-08-15 Ryosuke Niwa <rniwa@webkit.org>
1253
1254 Update manual tests and comments to refer to TestRunner instead of LayoutTestController
1255 https://bugs.webkit.org/show_bug.cgi?id=94168
1256
1257 Reviewed by Kent Tamura.
1258
1259 * ManualTests/resources/multiFileResources/post-echo-and-notify-done.cgi:
1260
commit-queue@webkit.orgb0d27632012-08-15 22:31:26 +000012612012-08-15 Bruno de Oliveira Abinader <bruno.abinader@basyskom.com>
1262
1263 [css3-text] Add CSS3 Text decoration compile flag
1264 https://bugs.webkit.org/show_bug.cgi?id=93863
1265
1266 Reviewed by Julien Chaffraix.
1267
1268 This patch handles the compile flag implementation, which will come disabled by
1269 default, thus not exposing the CSS3 text decoration features to the web, unless
1270 when explicitly enabling it with "--css3-text-decoration" build parameter.
1271
1272 * Source/cmake/WebKitFeatures.cmake:
1273 * Source/cmakeconfig.h.cmake:
1274 * configure.ac:
1275
beidson@apple.com6e913b22012-08-15 19:33:37 +000012762012-08-15 Brady Eidson <beidson@apple.com>
1277
1278 Removing a plug-in element from a page opened in a background tab in Safari crashes
1279 <rdar://problem/12057991> and https://bugs.webkit.org/show_bug.cgi?id=93913
1280
1281 Reviewed by Beth Dakin.
1282
1283 * Source/autotools/symbols.filter: Allow this symbol through for DRT's sake.
1284
keishi@webkit.orgd6779ca2012-08-15 03:34:14 +000012852012-08-14 Keishi Hattori <keishi@webkit.org>
1286
1287 Share common code between calendar picker and color suggestion picker
1288 https://bugs.webkit.org/show_bug.cgi?id=93802
1289
1290 Reviewed by Kent Tamura.
1291
1292 * ManualTests/forms/calendar-picker.html:
1293 * ManualTests/forms/color-suggestion-picker.html:
1294
commit-queue@webkit.org11ee93b2012-08-14 11:42:04 +000012952012-08-14 Milian Wolff <milian.wolff@kdab.com>
1296
1297 [Qt] QtWebKit linking fails for QNX cross build
1298 https://bugs.webkit.org/show_bug.cgi?id=93460
1299
1300 Reviewed by Simon Hausmann.
1301
1302 The GCC 4.4.2 used by the QNX BBNDK 2.0.1 fails to link QtWebKit.
1303 Apparently it does not properly support the linker invokation using
1304 -Wl,-whole-archive -l... -Wl,-no-whole-archive
1305 yielding a "cc: no files to process" error. This patch works around
1306 this issue by adding an empty dummy file (and thus object file) to
1307 the linking stage.
1308
1309 * Source/api.pri:
1310
keishi@webkit.org184ab5d2012-08-14 08:48:24 +000013112012-08-14 Keishi Hattori <keishi@webkit.org>
1312
1313 Move page popup resources to separate directory
1314 https://bugs.webkit.org/show_bug.cgi?id=93932
1315
1316 Reviewed by Kent Tamura.
1317
1318 * ManualTests/forms/calendar-picker.html:
1319 * ManualTests/forms/color-suggestion-picker.html:
1320
rakuco@webkit.org48d9a032012-08-13 23:30:23 +000013212012-08-11 Raphael Kubo da Costa <rakuco@webkit.org>
1322
1323 [CMake] Rewrite FindLibSoup2.cmake.
1324 https://bugs.webkit.org/show_bug.cgi?id=93191
1325
1326 Reviewed by Rob Buis.
1327
1328 The existing LibSoup2 was imported from somewhere else and not
1329 only did it contain a lot of unnecessary cruft to look for libsoup
1330 2.2 (which we do not support anyway), but it also relied on the
1331 paths returned by pkg-config for setting the library and include
1332 paths.
1333
1334 For one, this meant "-lsoup-2.4" was passed to the linked instead
1335 of "-L/path/to/libsoup-2.4.so", which would sometimes make a
1336 system version of libsoup to be picked up instead of the one
1337 installed by, say, jhbuild.
1338
1339 The new FindLibSoup.cmake now only looks for libsoup 2.4 and
1340 relies on pkg-config solely for retrieving the current LibSoup
1341 version.
1342
1343 * Source/cmake/FindLibSoup.cmake: Added.
1344 * Source/cmake/FindLibSoup2.cmake: Removed.
1345 * Source/cmake/OptionsEfl.cmake: Look for LibSoup instead of
1346 LibSoup2, look for the GObject component of Glib.
1347
rakuco@webkit.org56218832012-08-13 20:38:06 +000013482012-08-13 Raphael Kubo da Costa <rakuco@webkit.org>
1349
1350 [CMake] Remove glib-related Find modules and write single new one instead.
1351 https://bugs.webkit.org/show_bug.cgi?id=93786
1352
1353 Reviewed by Rob Buis.
1354
1355 As part of the ongoing effort to write proper Find modules that use
1356 absolute include and library paths instead of the short ones from
1357 pkg-config, replace Find{GIO,Glib,Gthread}.cmake with a single
1358 FindGLIB.cmake that optionally detects components such as GIO and
1359 GObject.
1360
1361 Library paths are now defined as "/full/path/to/libfoo.so" instead of
1362 simply "foo", so that the linker receives a full path and we can then
1363 avoid accidentally picking up a libfoo.so installed into /usr/lib
1364 instead of a local one built with jhbuild.
1365
1366 * Source/cmake/FindGIO.cmake: Removed.
1367 * Source/cmake/FindGLIB.cmake: Added.
1368 * Source/cmake/FindGlib.cmake: Removed.
1369 * Source/cmake/FindGthread.cmake: Removed.
1370 * Source/cmake/OptionsEfl.cmake: Look for GLIB with the GIO component.
1371
zandobersek@gmail.com98b4e512012-08-13 11:42:39 +000013722012-08-13 Zan Dobersek <zandobersek@gmail.com>
1373
1374 [Gtk] Remove SVG_FEATURES and HTML_FEATURES from Source/WebCore/GNUmakefile.am
1375 https://bugs.webkit.org/show_bug.cgi?id=90693
1376
1377 Reviewed by Philippe Normand.
1378
1379 Remove exportation of SVG_FLAGS and HTML_FLAGS as Automake conditionals
1380 as they are not required anymore.
1381
1382 * configure.ac:
1383
commit-queue@webkit.org1d4682c2012-08-12 16:52:54 +000013842012-08-12 Loïc Yhuel <loic.yhuel@softathome.com>
1385
1386 [Qt] Make it possible to build without QtTest/QtPrintSupport
1387 https://bugs.webkit.org/show_bug.cgi?id=93492
1388
1389 Reviewed by Tor Arne Vestbø.
1390
1391 * Source/QtWebKit.pro: Disable tests if no testlib
1392
rwlbuis@webkit.orgdf7c2552012-08-10 20:21:57 +000013932012-08-10 Rob Buis <rbuis@rim.com>
1394
1395 [BlackBerry] Enable relro link option for JSC executable
1396 https://bugs.webkit.org/show_bug.cgi?id=93726
1397
1398 Reviewed by Yong Li.
1399
1400 Enable relro link option for JSC executable.
1401
1402 * Source/cmake/OptionsBlackBerry.cmake:
1403
rakuco@webkit.org0fb09242012-08-10 00:58:49 +000014042012-08-09 Raphael Kubo da Costa <rakuco@webkit.org>
1405
1406 [CMake] Bump minimum required version to 2.8.3.
1407 https://bugs.webkit.org/show_bug.cgi?id=93450
1408
1409 Reviewed by Daniel Bates.
1410
1411 Following the discussion in bug 93189, it was decided that bumping
1412 the minimum required version from 2.8.0 to 2.8.3 was a good thing
1413 due to additional features, such as improved
1414 FIND_PACKAGE_HANDLE_STANDARD_ARGS() support and better argument
1415 handling in the PKG_CHECK_MODULES() call.
1416
1417 CMake 2.8.3 was released almost two years ago, so people are
1418 expected to have it or a later version installed.
1419
1420 * CMakeLists.txt:
1421
commit-queue@webkit.org656e6522012-08-09 02:29:35 +000014222012-08-08 Shane Stephens <shanestephens@google.com>
1423
1424 Compile flag for CSS Hierarchies
1425 https://bugs.webkit.org/show_bug.cgi?id=92433
1426
1427 Reviewed by Tony Chang.
1428
1429 * Source/cmake/WebKitFeatures.cmake:
1430
commit-queue@webkit.org7d33c4b2012-08-09 00:18:01 +000014312012-08-08 Ming Xie <mxie@rim.com>
1432
1433 [BlackBerry] Fix "-fPIC" define in the BlackBerry build
1434 https://bugs.webkit.org/show_bug.cgi?id=93548
1435
1436 Reviewed by Rob Buis.
1437
1438 In the current CMake release (version 2.8.5), ${CMAKE_SHARED
1439 _LIBRARY_C_FLAGS} and ${CMAKE_SHARED_LIBRARY_CXX_FLAGS} is
1440 set to empty (See cmake/Modules/Platform/QNX.cmake)
1441
1442 This breaks the assumption which WebKit CMake build system
1443 makes in Source/cmake/WebKitHelper.cmake
1444
1445 * Source/cmake/OptionsBlackBerry.cmake:
1446
philn@webkit.orgd3302192012-08-08 16:52:20 +000014472012-08-08 Philippe Normand <pnormand@igalia.com>
1448
1449 [GStreamer] 0.11 build broken (again)
1450 https://bugs.webkit.org/show_bug.cgi?id=93474
1451
1452 Reviewed by Martin Robinson.
1453
1454 * configure.ac: Disable media-stream build if GStreamer 0.11
1455 support is enabled, due to farstream-0.1 still messing up with
1456 gstreamer-0.10 include path.
1457
commit-queue@webkit.orgadb694d2012-08-08 05:38:28 +000014582012-08-07 YoungTaeck Song <youngtaeck.song@samsung.com>
1459
1460 [WK2][EFL] Implement accelerated compositing on WK2 Efl port
1461 https://bugs.webkit.org/show_bug.cgi?id=89840
1462
1463 Reviewed by Noam Rosenthal.
1464
1465 Implement accelerated composition with TiledBackingStore on WK2 Efl port.
1466 This implementation is based on COORDINATED_GRAPHICS.
1467 Add COORDINATED_GRAPHICS related definitions in OptionsEfl.cmake.
1468
1469 * Source/cmake/OptionsEfl.cmake:
1470
hausmann@webkit.org63555802012-08-07 15:04:25 +000014712012-08-07 No'am Rosenthal <noam.rosenthal@nokia.com>
1472
1473 [Qt] Make it possible to build without QtQuick
1474
1475 Reviewed by Simon Hausmann.
1476
1477 * Source/QtWebKit.pro:
1478 * Source/tests.pri:
1479
hausmann@webkit.org2d2e5352012-08-07 12:06:52 +000014802012-07-19 Simon Hausmann <simon.hausmann@nokia.com>
1481
1482 [Qt] Remove Qt 4 specific code paths
1483 https://bugs.webkit.org/show_bug.cgi?id=88161
1484
1485 Reviewed by Kenneth Rohde Christiansen.
1486
1487 * Source/api.pri:
1488 * WebKit.pro:
1489
gyuyoung.kim@samsung.com04d32b72012-08-07 06:37:09 +000014902012-08-06 Gyuyoung Kim <gyuyoung.kim@samsung.com>
1491
1492 [EFL] Enable link prefetch
1493 https://bugs.webkit.org/show_bug.cgi?id=93281
1494
1495 Reviewed by Kentaro Hara.
1496
1497 * Source/cmake/OptionsEfl.cmake: Enable LINK_PREFETCH by default.
1498
commit-queue@webkit.org1342caa2012-08-07 01:07:01 +000014992012-08-06 Xan Lopez <xlopez@igalia.com>
1500
1501 [GTK] Cleanup configure.ac build options output
1502 https://bugs.webkit.org/show_bug.cgi?id=93245
1503
1504 Reviewed by Laszlo Gombos.
1505
1506 Remove duplicated elements, sort alphabetically.
1507
1508 * configure.ac: ditto.
1509
carlosgc@webkit.orgbd5ccdc2012-08-06 13:45:44 +000015102012-08-06 Carlos Garcia Campos <cgarcia@igalia.com>
1511
1512 Unreviewed. Update NEWS and configure.ac for 1.9.6 release
1513
1514 * configure.ac: Bump version numbers.
1515
paroga@webkit.org62459992012-08-03 21:10:27 +000015162012-08-03 Patrick Gansterer <paroga@webkit.org>
1517
1518 [CMake][WIN] Disable C++ exceptions and RTTI
1519 https://bugs.webkit.org/show_bug.cgi?id=93104
1520
1521 Reviewed by Ryosuke Niwa.
1522
1523 Both features are not used in WebKit, so remove them to safe some code.
1524 Also enable compilation of plain c files with multiple processes.
1525
1526 * Source/cmake/OptionsWindows.cmake:
1527
mario@webkit.org31f68c82012-08-03 14:40:21 +000015282012-08-03 Mario Sanchez Prada <msanchez@igalia.com>
1529
1530 Unreviewed build fix for GTK after r124479.
1531
1532 * Source/autotools/symbols.filter: Removed unneeded symbol.
1533
vestbo@webkit.org7d1eb8c2012-08-03 14:11:03 +000015342012-08-03 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
1535
1536 [Qt] Populate .qmake.cache from the top-level project file
1537
1538 This makes it possible to build webkit without using the perl build
1539 script. The duplicated logic in build-webkit will be removed when we
1540 remove the Qt4 code paths. The build-webkit script will then simply
1541 call 'qmake WebKit.pro' from WEBKITOUTPUTDIR.
1542
1543 Reviewed by Tor Arne Vestbø.
1544
1545 * WebKit.pro:
1546
commit-queue@webkit.org8f475bd2012-08-03 10:02:37 +000015472012-08-03 Dominik Röttsches <dominik.rottsches@intel.com>
1548
1549 [cmake] Cleanup FindHarfBuzz.cmake
1550 https://bugs.webkit.org/show_bug.cgi?id=92984
1551
1552 Reviewed by Hajime Morita.
1553
1554 Cleanup which didn't make it into my previous ptch.
1555
1556 * Source/cmake/FindHarfBuzz.cmake: Remove duplicate line, add a bit of documentation.
1557
commit-queue@webkit.org366f5b62012-08-03 07:33:11 +000015582012-08-03 Joone Hur <joone.hur@intel.com>
1559
1560 [EFL][DRT] WebKitAnimation API compile-time disabled
1561 https://bugs.webkit.org/show_bug.cgi?id=84593
1562
1563 Reviewed by Laszlo Gombos.
1564
1565 Enable ENABLE_ANIMATION_API by default on the Efl port.
1566
1567 * Source/cmake/OptionsEfl.cmake:
1568 * Source/cmakeconfig.h.cmake:
1569
zandobersek@gmail.com74b95202012-08-03 06:27:38 +000015702012-08-02 Zan Dobersek <zandobersek@gmail.com>
1571
1572 Unreviewed attempt at fixing the GTK 64-bit debug build.
1573
1574 * Source/autotools/symbols.filter:
1575
mrobinson@webkit.orgd6721a52012-08-02 13:45:07 +000015762012-08-02 Martin Robinson <mrobinson@igalia.com>
1577
1578 [GTK] When farstream is not present do not enable MediaStream
1579
1580 Reviewed by Philippe Normand.
1581
1582 When farstream libraries are no present, simply do not build MediaStream
1583 support.
1584
1585 * configure.ac:
1586
jianli@chromium.orgf66b5812012-08-02 00:14:28 +000015872012-08-01 Jian Li <jianli@chromium.org>
1588
1589 Add new CSS property "-webkit-widget-region" to expose dashboard region support for other port
1590 https://bugs.webkit.org/show_bug.cgi?id=90298
1591
1592 Reviewed by Adam Barth.
1593
1594 * configure.ac: Add ENABLE_WIDGET_REGION define.
1595
commit-queue@webkit.orge68015d2012-07-31 19:52:34 +000015962012-07-31 Joshua Netterfield <jnetterfield@rim.com>
1597
1598 [BlackBerry] Enable CSS Filter Effects
1599 https://bugs.webkit.org/show_bug.cgi?id=92685
1600
1601 Reviewed by Rob Buis.
1602
1603 Enable CSS filter effects, with the exception of custom effects (CSS shaders) and reference effects (SVG effects)
1604
1605 Internally reviewed by Arvid Nilsson <anilsson@rim.com> and Antonio Gomes <agomes@rim.com>.
1606
1607 * Source/cmake/OptionsBlackBerry.cmake: Add LayerFilterRenderer
1608 * Source/cmakeconfig.h.cmake: Acknowledge CSS filter effects
1609
rniwa@webkit.orge8bea922012-07-31 09:00:33 +000016102012-07-31 Ryosuke Niwa <rniwa@webkit.org>
1611
1612 Perf-o-matic: dashboard images are not generated properly from incrementally updated JSON
1613 https://bugs.webkit.org/show_bug.cgi?id=92717
1614
1615 Reviewed by Hajime Morita.
1616
1617 Sort the values by timestamp. Unfortunately, there isn't a good way of testing this fix.
1618
1619 * Websites/webkit-perf.appspot.com/models.py:
1620 (Runs.chart_params):
1621
commit-queue@webkit.org26e3bd12012-07-31 08:46:59 +000016222012-07-31 Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
1623
1624 add Farstream flags/deps to WebKit, for WebRTC
1625 https://bugs.webkit.org/show_bug.cgi?id=87524
1626
1627 Reviewed by Philippe Normand.
1628
1629 Since Farstream will be used as the backend for GTK's WebRTC, this
1630 patch adds it as a dependency to the build system.
1631
1632 * GNUmakefile.am:
1633 * configure.ac:
1634
rniwa@webkit.orgfcde46b2012-07-31 06:19:17 +000016352012-07-30 Ryosuke Niwa <rniwa@webkit.org>
1636
1637 /api/test/runs/chart expires on perf-o-matic
1638 https://bugs.webkit.org/show_bug.cgi?id=92714
1639
1640 Reviewed by Hajime Morita.
1641
1642 Don't update the entire JSON while generating the dashboard images.
1643 This is a bug and not doing this will reduce the server load significantly.
1644
1645 * Websites/webkit-perf.appspot.com/controller.py:
1646 (RunsChartHandler.post):
1647
commit-queue@webkit.org1f756372012-07-30 23:13:25 +000016482012-07-30 Dominik Röttsches <dominik.rottsches@intel.com>
1649
1650 Avoid Assertion Failure in HarfBuzzRun::characterIndexForXPosition
1651 https://bugs.webkit.org/show_bug.cgi?id=92376
1652
1653 Reviewed by Tony Chang.
1654
1655 Added manual test to reliably reproduce assertion failure which is solved by this patch.
1656
1657 * ManualTests/harfbuzz-mouse-selection-crash.html: Added.
1658
vsevik@chromium.org58d6bc32012-07-30 15:58:48 +000016592012-07-29 Vsevolod Vlasov <vsevik@chromium.org>
1660
1661 Web Inspector: Resource agent's reference to cached resources should be weak.
1662 https://bugs.webkit.org/show_bug.cgi?id=92108
1663
1664 Reviewed by Pavel Feldman.
1665
1666 * Source/autotools/symbols.filter:
1667
shinyak@chromium.orgf5c4f8b2012-07-30 15:16:24 +000016682012-07-30 Shinya Kawanaka <shinyak@chromium.org>
1669
1670 Prohibit having AuthorShadowDOM of input or textarea element for a while and having a flag to enable it in Internals.
1671 https://bugs.webkit.org/show_bug.cgi?id=92611
1672
1673 Reviewed by Hajime Morita.
1674
1675 * Source/autotools/symbols.filter:
1676
vsevik@chromium.orge7823052012-07-30 12:21:00 +000016772012-07-30 Sheriff Bot <webkit.review.bot@gmail.com>
1678
1679 Unreviewed, rolling out r124000.
1680 http://trac.webkit.org/changeset/124000
1681 https://bugs.webkit.org/show_bug.cgi?id=92632
1682
1683 seems to have broken chromium Range_InstanceSizeUnknown unit
1684 test across many platforms (Requested by tomhudson on
1685 #webkit).
1686
1687 * Source/autotools/symbols.filter:
1688
paroga@webkit.org74b5be12012-07-30 10:25:41 +000016892012-07-30 Patrick Gansterer <paroga@webkit.org>
1690
1691 Replace UnicodeWinCE with UnicodeWchar
1692 https://bugs.webkit.org/show_bug.cgi?id=92539
1693
1694 Reviewed by Ryosuke Niwa.
1695
1696 UnicodeWinCE never contained WinCE specific code. UnicodeWchar
1697 is a replacement for it, which is mainly based on the functions
1698 from <wchar.h>. It is ment as a minimal Unicode backend, which
1699 can be used very easy and has no external dependencies.
1700
1701 * Source/cmake/OptionsWinCE.cmake:
1702
vsevik@chromium.orge14cf6d2012-07-30 07:54:54 +000017032012-07-29 Vsevolod Vlasov <vsevik@chromium.org>
1704
1705 Web Inspector: Resource agent's reference to cached resources should be weak.
1706 https://bugs.webkit.org/show_bug.cgi?id=92108
1707
1708 Reviewed by Pavel Feldman.
1709
1710 * Source/autotools/symbols.filter:
1711
commit-queue@webkit.orgc1c4f122012-07-29 21:59:53 +000017122012-07-29 Rik Cabanier <cabanier@adobe.com>
1713
1714 Add ENABLE_CSS_COMPOSITING flag
1715 https://bugs.webkit.org/show_bug.cgi?id=92553
1716
1717 Reviewed by Dirk Schulze.
1718
1719 Adds compiler flag CSS_COMPOSITING to build systems to enable CSS blending and compositing. See spec https://dvcs.w3.org/hg/FXTF/rawfile/tip/compositing/index.html
1720
1721 * Source/cmake/WebKitFeatures.cmake:
1722 * Source/cmakeconfig.h.cmake:
1723 * configure.ac:
1724
commit-queue@webkit.org18fcb612012-07-28 06:00:39 +000017252012-07-27 Kihong Kwon <kihong.kwon@samsung.com>
1726
1727 [EFL] Support for HTML media capture
1728 https://bugs.webkit.org/show_bug.cgi?id=91842
1729
1730 Reviewed by Ryosuke Niwa.
1731
1732 Add HTML media capture feature, and enable that on the Efl port.
1733
1734 * Source/cmake/OptionsEfl.cmake:
1735 * Source/cmake/WebKitFeatures.cmake:
1736 * Source/cmakeconfig.h.cmake:
1737
rniwa@webkit.org43a62d42012-07-28 00:08:44 +000017382012-07-27 Ryosuke Niwa <rniwa@webkit.org>
1739
1740 Unreviewed perf-o-matic build fix for dashboard image generation.
1741 Also, only show Parser/html5-full-render on the dashboard by default
1742 so that it won't take forever to load it.
1743
1744 * Websites/webkit-perf.appspot.com/controller.py:
1745 (schedule_runs_update):
1746 (RunsChartHandler.post):
1747 * Websites/webkit-perf.appspot.com/models.py:
1748 (Runs.chart_params):
1749 (DashboardImage.get_image):
1750 * Websites/webkit-perf.appspot.com/models_unittest.py:
1751 (RunsTest.test_chart_params_with_value):
1752
commit-queue@webkit.org868e06e2012-07-27 11:32:44 +000017532012-07-27 Dominik Röttsches <dominik.rottsches@intel.com>
1754
1755 [Cairo] Add complex font drawing using HarfbuzzNG
1756 https://bugs.webkit.org/show_bug.cgi?id=91864
1757
1758 Reviewed by Simon Hausmann and Martin Robinson.
1759
1760 Configuring Freetype backend to use HarfBuzz by default.
1761
1762 * Source/cmake/FindHarfBuzz.cmake: Added pkgconfig based discovery of HarfBuzz.
1763 * Source/cmake/OptionsEfl.cmake: Adding Harfbuzz configuration.
1764
mitz@apple.comb285bee2012-07-27 03:24:09 +000017652012-07-26 Dan Bernstein <mitz@apple.com>
1766
1767 When Safari 6 is launched via the WebKit Xcode workspace, it does not link against the built frameworks
1768 https://bugs.webkit.org/show_bug.cgi?id=92331
1769
1770 Reviewed by Mark Rowe.
1771
1772 Changed references to the Safari executable to the SafariForWebKitDevelopment binary.
1773
1774 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source (target WebProcess).xcscheme:
1775 * WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
1776
keishi@webkit.org01368682012-07-27 03:21:46 +000017772012-07-26 Keishi Hattori <keishi@webkit.org>
1778
1779 Implement ColorSuggestionPicker page popup
1780 https://bugs.webkit.org/show_bug.cgi?id=92109
1781
1782 Reviewed by Kent Tamura.
1783
1784 * ManualTests/forms/color-suggestion-picker.html: Added. Tests colorSuggestionPicker.{js,css}
1785
commit-queue@webkit.org9cb75d82012-07-26 12:01:37 +000017862012-07-26 Zoltan Nyul <zoltan.nyul@intel.com>
1787
1788 [EFL] EFL port should use XDG paths
1789 https://bugs.webkit.org/show_bug.cgi?id=91719
1790
1791 Reviewed by Kenneth Rohde Christiansen.
1792
1793 Efreet library added.
1794
1795 * Source/cmake/FindEFL.cmake:
1796
kaustubh@motorola.com8e91b052012-07-26 07:06:57 +000017972012-07-26 Kaustubh Atrawalkar <kaustubh@motorola.com>
1798
1799 [DRT] LTC:: pageNumberForElementById() could be moved to Internals.
1800 https://bugs.webkit.org/show_bug.cgi?id=92091
1801
1802 Reviewed by Adam Barth.
1803
1804 Exporting Internals::pageNumber symbols for the Gtk build.
1805
1806 * Source/autotools/symbols.filter:
1807
commit-queue@webkit.org43b1af32012-07-25 15:14:32 +000018082012-07-25 Sheriff Bot <webkit.review.bot@gmail.com>
1809
1810 Unreviewed, rolling out r123606.
1811 http://trac.webkit.org/changeset/123606
1812 https://bugs.webkit.org/show_bug.cgi?id=92247
1813
1814 broke Windows build of Chromium (Requested by tomhudson on
1815 #webkit).
1816
1817 * ManualTests/forms/color-suggestion-picker.html: Removed.
1818
keishi@webkit.org0cc6ae72012-07-25 11:57:21 +000018192012-07-25 Keishi Hattori <keishi@webkit.org>
1820
1821 Implement ColorSuggestionPicker page popup
1822 https://bugs.webkit.org/show_bug.cgi?id=92109
1823
1824 Reviewed by Kent Tamura.
1825
1826 * ManualTests/forms/color-suggestion-picker.html: Added. Tests colorSuggestionPicker.{js,css}
1827
tkent@chromium.org3528a712012-07-24 06:35:19 +000018282012-07-23 Kent Tamura <tkent@chromium.org>
1829
tkent@chromium.orgc08ca1c2012-07-24 06:43:17 +00001830 [GTK] Remove unnecessary trailing space in the previous commit.
1831
1832 * Source/autotools/symbols.filter:
1833
18342012-07-23 Kent Tamura <tkent@chromium.org>
1835
tkent@chromium.org3528a712012-07-24 06:35:19 +00001836 [GTK] Attempt to fix build
1837
1838 * Source/autotools/symbols.filter: Export DocumentMarkerController::addTextMatchMarker.
1839
commit-queue@webkit.orgc4534e12012-07-24 00:53:24 +000018402012-07-23 Sheriff Bot <webkit.review.bot@gmail.com>
1841
1842 Unreviewed, rolling out r123184, r123195, and r123197.
1843 http://trac.webkit.org/changeset/123184
1844 http://trac.webkit.org/changeset/123195
1845 http://trac.webkit.org/changeset/123197
1846 https://bugs.webkit.org/show_bug.cgi?id=92049
1847
1848 pagecycler regression (Requested by morrita on #webkit).
1849
1850 * Source/autotools/symbols.filter:
1851
commit-queue@webkit.orgdecb7a12012-07-24 00:48:06 +000018522012-07-23 Roger Fong <roger_fong@apple.com>
1853
1854 If select element in Windows is off screen horizontally,
1855 menu is either inappropriately resized or positioned offscreen.
1856 https://bugs.webkit.org/show_bug.cgi?id=91913
1857 <rdar://problem/7611229>
1858
1859 Reviewed by Tim Horton.
1860
1861 Add a manual test to verify that popup menus render in the correct place.
1862
1863 * ManualTests/win/select-menu-off-screen.html: Added.
1864
simon.fraser@apple.com5cc8c732012-07-23 17:45:43 +000018652012-07-23 Simon Fraser <simon.fraser@apple.com>
1866
1867 Implement sticky positioning
1868 https://bugs.webkit.org/show_bug.cgi?id=90046
1869
1870 Reviewed by Ojan Vafai.
1871
1872 Add ENABLE_CSS_STICKY_POSITION, defaulting to off initially.
1873
1874 Sort the ENABLE_CSS lines in the file.
1875
1876 * Source/cmake/WebKitFeatures.cmake:
1877 * Source/cmakeconfig.h.cmake:
1878
paroga@webkit.org4aa14752012-07-23 10:05:19 +000018792012-07-23 Patrick Gansterer <paroga@webkit.org>
1880
1881 [WINCE] Define NOMINMAX in the build system instead of Platform.h
1882 https://bugs.webkit.org/show_bug.cgi?id=91938
1883
1884 Reviewed by Ryosuke Niwa.
1885
1886 Define it in OptionsWindows.cmake, since NOMINMAX
1887 should to be defined for all windows ports.
1888
1889 * Source/cmake/OptionsWinCE.cmake:
1890 * Source/cmake/OptionsWindows.cmake:
1891
commit-queue@webkit.orgd97f5062012-07-23 01:08:49 +000018922012-07-22 Sheriff Bot <webkit.review.bot@gmail.com>
1893
1894 Unreviewed, rolling out r123298 and r123301.
1895 http://trac.webkit.org/changeset/123298
1896 http://trac.webkit.org/changeset/123301
1897 https://bugs.webkit.org/show_bug.cgi?id=91953
1898
1899 We need to think some more about the intricacies of exposing a
1900 CMake option for ENABLE_DFG_JIT as this option is specific to
1901 the port and architecture. (Requested by dydx on #webkit).
1902
1903 * Source/cmake/WebKitFeatures.cmake:
1904 * Source/cmakeconfig.h.cmake:
1905
dbates@webkit.org10974b82012-07-23 00:00:02 +000019062012-07-22 Daniel Bates <dbates@webkit.org>
1907
1908 Fix the Windows CE build after <http://trac.webkit.org/changeset/123298>
1909 (https://bugs.webkit.org/show_bug.cgi?id=91939)
1910
1911 Disable the DFG JIT across all CMake ports (by default) (*). Enabling DFG JIT
1912 breaks the Windows CE build as the Windows CE port builds with the JIT disabled
1913 (ENABLE_JIT := 0) and hence ENABLE_ASSEMBLER := 0.
1914
1915 (*) We should look to further discuss with CMake port maintainers about enabling
1916 the DFG JIT by default.
1917
1918 * Source/cmake/WebKitFeatures.cmake:
1919
tkent@chromium.orgd89d5452012-07-22 23:23:53 +000019202012-07-23 Kent Tamura <tkent@chromium.org>
1921
1922 Rename ENABLE_METER_TAG and ENABLE_PROGRESS_TAG to ENABLE_METER_ELEMENT and ENABLE_PROGRESS_ELEMENT respectively
1923 https://bugs.webkit.org/show_bug.cgi?id=91941
1924
1925 Reviewed by Kentaro Hara.
1926
1927 A flag name for an elmement should be ENABLE_*_ELEMENT.
1928
1929 * Source/cmake/WebKitFeatures.cmake:
1930 * Source/cmakeconfig.h.cmake:
1931 * configure.ac:
1932
paroga@webkit.org10675b52012-07-22 16:36:24 +000019332012-07-22 Patrick Gansterer <paroga@webkit.org>
1934
1935 [CMake] Add option for ENABLE_DFG_JIT
1936 https://bugs.webkit.org/show_bug.cgi?id=91939
1937
1938 Reviewed by Daniel Bates.
1939
1940 * Source/cmake/WebKitFeatures.cmake:
1941 * Source/cmakeconfig.h.cmake:
1942
tkent@chromium.org43921e62012-07-22 10:59:32 +000019432012-07-22 Kent Tamura <tkent@chromium.org>
1944
1945 Rename ENABLE_DETAILS to ENABLE_DETAILS_ELEMENT
1946 https://bugs.webkit.org/show_bug.cgi?id=91928
1947
1948 Reviewed by Kentaro Hara.
1949
1950 A flag name for an elmement should be ENABLE_*_ELEMENT.
1951
1952 * Source/cmake/WebKitFeatures.cmake:
1953 * Source/cmakeconfig.h.cmake:
1954 * configure.ac:
1955
tkent@chromium.org3d897372012-07-21 02:00:46 +000019562012-07-20 Kent Tamura <tkent@chromium.org>
1957
1958 Rename ENABLE_DATALIST to ENABLE_DATALIST_ELEMENT
1959 https://bugs.webkit.org/show_bug.cgi?id=91846
1960
1961 Reviewed by Kentaro Hara.
1962
1963 A flag name for an elmement should be ENABLE_*_ELEMENT.
1964
1965 * Source/cmake/OptionsEfl.cmake:
1966 * Source/cmake/WebKitFeatures.cmake:
1967 * Source/cmakeconfig.h.cmake:
1968 * configure.ac:
1969
morrita@google.com836359f2012-07-20 06:33:48 +000019702012-07-19 MORITA Hajime <morrita@google.com>
1971
1972 [Refactoring] Replace Node's Document pointer with a TreeScope pointer
1973 https://bugs.webkit.org/show_bug.cgi?id=59816
1974
1975 Reviewed by Ryosuke Niwa.
1976
1977 * Source/autotools/symbols.filter: Added newly exported symbols.
1978
commit-queue@webkit.org31d46402012-07-19 14:51:50 +000019792012-07-19 Christophe Dumez <christophe.dumez@intel.com>
1980
1981 [EFL] Bump libsoup dependency to v2.39.4.1 to fix cookie issues
1982 https://bugs.webkit.org/show_bug.cgi?id=91741
1983
1984 Reviewed by Kenneth Rohde Christiansen.
1985
1986 Bump libsoup dependency in CMake to v2.39.4.1 to fix issues
1987 with cookies in non-suffixed/private domains [GNOME #679230].
1988
1989 * Source/cmake/OptionsEfl.cmake:
1990
mario@webkit.org30fc09f2012-07-19 11:07:06 +000019912012-07-19 Mario Sanchez Prada <msanchez@igalia.com>
1992
1993 [GTK] Enable MHTML support by default at build time
1994 https://bugs.webkit.org/show_bug.cgi?id=89987
1995
1996 Reviewed by Carlos Garcia Campos.
1997
1998 Enable MHTML support by default for GTK in configure.ac.
1999
2000 * configure.ac:
2001
commit-queue@webkit.orgeb841ae2012-07-19 04:47:59 +000020022012-07-18 Christophe Dumez <christophe.dumez@intel.com>
2003
2004 [CMake][EFL] Should try to find the same libsoup version pulled by jhbuild
2005 https://bugs.webkit.org/show_bug.cgi?id=91626
2006
2007 Reviewed by Kenneth Rohde Christiansen.
2008
2009 Bump required version of libsoup in CMake to 2.39.3. This is the first
2010 tarball version to contain the API we need (soup_cookie_jar_get_cookies()
2011 and soup_cookie_jar_set_cookie_with_first_party()).
2012
2013 * Source/cmake/OptionsEfl.cmake:
2014
commit-queue@webkit.org6967c672012-07-18 18:43:13 +000020152012-07-18 Varun Jain <varunjain@chromium.org>
2016
2017 [chromium] Drag image for image elements should be scaled with device scale factor.
2018 https://bugs.webkit.org/show_bug.cgi?id=89688
2019
2020 Reviewed by Adam Barth.
2021
2022 * ManualTests/chromium/drag-image-accounts-for-device-scale.html:
2023
commit-queue@webkit.orgfc592f42012-07-18 11:15:41 +000020242012-07-18 Thiago Marcos P. Santos <thiago.santos@intel.com>
2025
2026 [CMake] Make gtest a shared library
2027 https://bugs.webkit.org/show_bug.cgi?id=90973
2028
2029 Reviewed by Daniel Bates.
2030
2031 It's nicer to make it a shared library because it might improve
2032 linking time and we don't need to force gtest users to link with gtest
2033 dependencies like pthreads (which causes linking errors when it is not
2034 available).
2035
2036 * Source/cmake/gtest/CMakeLists.txt:
2037
commit-queue@webkit.orga37d9a4f2012-07-17 14:51:54 +000020382012-07-17 Gabor Ballabas <gaborb@inf.u-szeged.hu>
2039
2040 [Qt][V8] Remove the V8 related codepaths and configuration
2041 https://bugs.webkit.org/show_bug.cgi?id=90863
2042
2043 Reviewed by Simon Hausmann.
2044
2045 * Source/api.pri:
2046 * WebKit.pro:
2047
kkristof@inf.u-szeged.hu0069e292012-07-17 11:27:55 +000020482012-07-17 Sheriff Bot <webkit.review.bot@gmail.com>
2049
2050 Unreviewed, rolling out r122834.
2051 http://trac.webkit.org/changeset/122834
2052 https://bugs.webkit.org/show_bug.cgi?id=91492
2053
2054 it broke the chromium (Requested by kkristof on #webkit).
2055
2056 * Source/api.pri:
2057 * WebKit.pro:
2058
kkristof@inf.u-szeged.hudb065a42012-07-17 10:58:50 +000020592012-07-17 Gabor Ballabas <gaborb@inf.u-szeged.hu>
2060
2061 [Qt][V8] Remove the V8 related codepaths and configuration
2062 https://bugs.webkit.org/show_bug.cgi?id=90863
2063
2064 Reviewed by Simon Hausmann.
2065
2066 * Source/api.pri:
2067 * WebKit.pro:
2068
commit-queue@webkit.org7bf73302012-07-17 07:11:52 +000020692012-07-17 David Barr <davidbarr@chromium.org>
2070
2071 Introduce ENABLE_CSS_IMAGE_ORIENTATION compile flag
2072 https://bugs.webkit.org/show_bug.cgi?id=89055
2073
2074 Reviewed by Kent Tamura.
2075
2076 The css3-images module is at candidate recommendation.
2077 http://www.w3.org/TR/2012/CR-css3-images-20120417/#the-image-orientation
2078
2079 Add a configuration option for CSS image-orientation support, disabling it by default.
2080
2081 * Source/cmake/WebKitFeatures.cmake:
2082 * Source/cmakeconfig.h.cmake:
2083
commit-queue@webkit.org466dbd42012-07-17 04:37:29 +000020842012-07-16 Pete Williamson <petewil@google.com>
2085
2086 Expose an export for the iconUrl list so Internals can use it
2087 https://bugs.webkit.org/show_bug.cgi?id=88665
2088
2089 Reviewed by Kent Tamura.
2090
2091 * Source/autotools/symbols.filter: export iconURLs
2092
commit-queue@webkit.org241bd212012-07-17 04:33:25 +000020932012-07-16 Hajime Morrita <morrita@chromium.org>
2094
2095 WebCore needs WEBCORE_TESTING macro to mark methods being exported for testing.
2096 https://bugs.webkit.org/show_bug.cgi?id=90764
2097
2098 Reviewed by Adam Barth.
2099
2100 Removed symbols which are now covered by WEBCORE_TESTING.
2101
2102 * Source/autotools/symbols.filter:
2103
carlosgc@webkit.org193c4092012-07-16 09:43:44 +000021042012-07-16 Carlos Garcia Campos <cgarcia@igalia.com>
2105
2106 Unreviewed. Update NEWS and configure.ac for 1.9.5 release
2107
2108 * configure.ac: Bump version number.
2109
commit-queue@webkit.orgd9c31bf2012-07-14 00:33:28 +000021102012-07-12 Josh Hawn <jhawn@apple.com>
2111
2112 Fix for WebContext::getWebCoreStatistics() causes crash if no m_process
2113 https://bugs.webkit.org/show_bug.cgi?id=91116
2114
2115 Reviewed by Simon Fraser.
2116
2117 * Source/WebKit2/UIProcess/WebContext.cpp:
2118 WebContext::getWebCoreStatistics():
2119 Now invalidates callback if no m_process.
2120
commit-queue@webkit.org5b8a8ed2012-07-13 17:25:14 +000021212012-07-13 Thiago Marcos P. Santos <thiago.santos@intel.com>
2122
2123 [CMake] Proper handling of ENABLE_API_TESTS build option
2124 https://bugs.webkit.org/show_bug.cgi?id=91221
2125
2126 Reviewed by Rob Buis.
2127
2128 Make the flag reusable across the ports using CMake. We are about to enable the WTF,
2129 WebCore and WebKit 2 API's at Tools/TestWebKitAPI and other ports using CMake can get
2130 it almost for free.
2131
2132 * CMakeLists.txt:
2133 * Source/cmake/OptionsEfl.cmake:
2134 * Source/cmake/WebKitFeatures.cmake:
2135 * Source/cmakeconfig.h.cmake:
2136
commit-queue@webkit.org820c83b2012-07-12 05:33:03 +000021372012-07-11 Matt Falkenhagen <falken@chromium.org>
2138
2139 Add dialog element feature toggle to InternalSettings
2140 https://bugs.webkit.org/show_bug.cgi?id=90934
2141
2142 Reviewed by Hajime Morita.
2143
2144 * Source/autotools/symbols.filter: Added newly exported symbol.
2145
commit-queue@webkit.orgae1899f2012-07-11 18:14:47 +000021462012-07-11 Arnaud Renevier <a.renevier@sisa.samsung.com>
2147
2148 [Gtk] allow building with css-filters
2149 https://bugs.webkit.org/show_bug.cgi?id=90908
2150
2151 Add support for css-filters in Source/WebCore/GNUmakefile.am
2152 configure.ac
2153
2154 Reviewed by Eric Seidel.
2155
2156 * configure.ac:
2157
gyuyoung.kim@samsung.com96508f12012-07-10 22:53:58 +000021582012-07-10 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2159
2160 [CMAKE] Add missing feature macros
2161 https://bugs.webkit.org/show_bug.cgi?id=90890
2162
2163 Reviewed by Eric Seidel.
2164
2165 ENABLE_CSS_EXCLUSIONS, ENABLE_CSS_REGIONS, ENABLE_TEXT_AUTOSIZING macros
2166 haven't defined in cmake feature list.
2167
2168 * Source/cmake/WebKitFeatures.cmake:
2169 * Source/cmakeconfig.h.cmake:
2170
tkent@chromium.orgae0b9702012-07-10 11:19:37 +000021712012-07-10 Kent Tamura <tkent@chromium.org>
2172
2173 RTL calendar picker for <input type=date> is too narrow and clipped
2174 https://bugs.webkit.org/show_bug.cgi?id=90864
2175
2176 Reviewed by Kentaro Hara.
2177
2178 * ManualTests/forms/calendar-picker.html:
2179 - Add isRTL:true for the arabic setting
2180 - Reset the iframe size when the setting is changed.
2181
ossy@webkit.org6aedce22012-07-10 08:46:08 +000021822012-07-10 Sheriff Bot <webkit.review.bot@gmail.com>
2183
2184 Unreviewed, rolling out r122178.
2185 http://trac.webkit.org/changeset/122178
2186 https://bugs.webkit.org/show_bug.cgi?id=90857
2187
2188 browser tests, PrerenderBrowserTest.PrerenderFavicon and other
2189 tests, started to fail (Requested by hayato on #webkit).
2190
2191 * Source/autotools/symbols.filter:
2192
commit-queue@webkit.orge1bba8e2012-07-10 05:45:21 +000021932012-07-09 Matt Falkenhagen <falken@chromium.org>
2194
2195 Add ENABLE_DIALOG_ELEMENT and skeleton files
2196 https://bugs.webkit.org/show_bug.cgi?id=90521
2197
2198 Reviewed by Kent Tamura.
2199
2200 * Source/cmake/WebKitFeatures.cmake:
2201 * Source/cmakeconfig.h.cmake:
2202
commit-queue@webkit.org546c67d2012-07-10 01:37:36 +000022032012-07-09 Pete Williamson <petewil@google.com>
2204
2205 Expose an export for the iconUrl list so Internals can use it
2206 https://bugs.webkit.org/show_bug.cgi?id=88665
2207
2208 Reviewed by Kent Tamura.
2209
2210 * Source/autotools/symbols.filter: export iconURLs
2211
commit-queue@webkit.org14ae5052012-07-09 19:27:11 +000022122012-07-09 Mike Lattanzio <mlattanzio@rim.com>
2213
2214 [BlackBerry] meta viewport initial-scale doesn't factor in device pixel ratio
2215 https://bugs.webkit.org/show_bug.cgi?id=90575
2216
2217 Reviewed by Rob Buis.
2218
2219 Add a manual test to verify wide content doesn't interfere
2220 with initial-scale calculations.
2221
2222 Internal review from Konrad Piascik.
2223
2224 * ManualTests/blackberry/meta-viewport-initial-scale-wide-content.html: Added.
2225
commit-queue@webkit.orgfb3c9682012-07-09 15:39:09 +000022262012-07-09 Sheriff Bot <webkit.review.bot@gmail.com>
2227
2228 Unreviewed, rolling out r122107.
2229 http://trac.webkit.org/changeset/122107
2230 https://bugs.webkit.org/show_bug.cgi?id=90794
2231
2232 Build failure on Mac debug bots (Requested by falken_ on
2233 #webkit).
2234
2235 * Source/cmake/WebKitFeatures.cmake:
2236 * Source/cmakeconfig.h.cmake:
2237
commit-queue@webkit.orgb46a45d2012-07-09 14:42:00 +000022382012-07-09 Matt Falkenhagen <falken@chromium.org>
2239
2240 Add ENABLE_DIALOG_ELEMENT and skeleton files
2241 https://bugs.webkit.org/show_bug.cgi?id=90521
2242
2243 Reviewed by Kent Tamura.
2244
2245 * Source/cmake/WebKitFeatures.cmake:
2246 * Source/cmakeconfig.h.cmake:
2247
commit-queue@webkit.orge0151792012-07-06 19:19:44 +000022482012-07-06 Thiago Marcos P. Santos <thiago.santos@intel.com>
2249
2250 [EFL][CMake] Move gtest sources to an upper level
2251 https://bugs.webkit.org/show_bug.cgi?id=90602
2252
2253 Reviewed by Chang Shu.
2254
2255 CTest was enabled for all the ports, but used only by EFL. Now
2256 ENABLE_API_TESTS has to be defined, which will also build gtest.
2257
2258 * CMakeLists.txt:
2259 * Source/CMakeLists.txt:
2260 * Source/cmake/OptionsEfl.cmake:
2261 * Source/cmake/gtest/CMakeLists.txt: Added.
2262
zandobersek@gmail.com03e439c2012-07-06 18:36:31 +000022632012-07-06 Zan Dobersek <zandobersek@gmail.com>
2264
2265 [Gtk] Add a configuration option for disabling unstable features in releases
2266 https://bugs.webkit.org/show_bug.cgi?id=87995
2267
2268 Reviewed by Martin Robinson.
2269
2270 Add a configuration flag for enabling the unstable features - features of which
2271 support in the Gtk port is being worked on but is not yet complete. The primary
2272 use of this flag is when compiling through the build-webkit script.
2273
2274 All the features that are currently enabled when building through build-webkit but
2275 are disabled by default when executing the configure script directly have their default
2276 value (when the correspondent flag is not passed) set to 'yes' when unstable features
2277 are enabled and 'no' otherwise. This way unstable features are kept disabled when performing
2278 a release build (unless they are specifically enabled).
2279
2280 * configure.ac:
2281
ossy@webkit.orgb9f1ca62012-07-06 13:12:01 +000022822012-07-06 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2283
ossy@webkit.org31681df2012-07-06 13:18:47 +00002284 [Qt] Remove custom qmake logic for module creation
2285
2286 Qmake now has the necessary hooks to cleanly override the build locations.
2287
2288 https://bugs.webkit.org/show_bug.cgi?id=90461
2289
2290 Reviewed by Tor Arne Vestbø.
2291
2292 * Source/api.pri:
2293
22942012-07-06 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2295
ossy@webkit.org98fee7a2012-07-06 13:17:36 +00002296 [Qt] Add top-level .qmake.conf
2297
2298 With Qt5, this makes setting $QMAKEPATH externally unnecessary.
2299
2300 The magic in the perl scripts to set QMAKEPATH is still there, as it doesn't
2301 hurt, and is still required for Qt4.
2302
2303 https://bugs.webkit.org/show_bug.cgi?id=90461
2304
2305 Reviewed by Tor Arne Vestbø.
2306
2307 * .qmake.conf: Added.
2308 * WebKit.pro:
2309
23102012-07-06 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2311
ossy@webkit.org69a64272012-07-06 13:15:24 +00002312 [Qt] Let qt_module_config create the forwarding module pri file
2313
2314 https://bugs.webkit.org/show_bug.cgi?id=90461
2315
2316 Reviewed by Tor Arne Vestbø.
2317
2318 * Source/sync.profile:
2319
23202012-07-06 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2321
ossy@webkit.org66972eb2012-07-06 13:14:20 +00002322 [Qt] Don't let qt_webkit.pri proclaim its own location
2323
2324 This won't work any more with recent Qt5 versions, as the forwarding
2325 pri is created by qt_module_config, which needs MODULE_PRI to be set
2326 up already.
2327
2328 We also need to load build_config, not qt_module.
2329
2330 https://bugs.webkit.org/show_bug.cgi?id=90461
2331
2332 Reviewed by Tor Arne Vestbø.
2333
2334 * Source/api.pri:
2335
23362012-07-06 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2337
ossy@webkit.orgd9eb8642012-07-06 13:13:07 +00002338 [Qt] Remove redundant CONFIG+=module
2339
2340 qt_module_config takes care of that.
2341
2342 In api.pri we are actually testing the flag ourselves, so now we need to
2343 test a related flag qt_module_config sets instead.
2344
2345 https://bugs.webkit.org/show_bug.cgi?id=90461
2346
2347 Reviewed by Tor Arne Vestbø.
2348
2349 * Source/api.pri:
2350
23512012-07-06 Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2352
ossy@webkit.orgb9f1ca62012-07-06 13:12:01 +00002353 [Qt] Adjust to changed generation of master include file
2354
2355 The responsiblity for creating the master include was moved out of syncqt.
2356 @ignore_for_master_contents still stays, as syncqt (ab-)uses this for
2357 determining whether a header is private.
2358
2359 https://bugs.webkit.org/show_bug.cgi?id=90461
2360
2361 Reviewed by Tor Arne Vestbø.
2362
2363 * Source/sync.profile:
2364
rwlbuis@webkit.org45009b62012-07-05 17:46:09 +000023652012-07-05 Rob Buis <rbuis@rim.com>
2366
2367 [CMake] Fix some CMake warnings
2368 https://bugs.webkit.org/show_bug.cgi?id=90558
2369
2370 Fix WebKit options so they match with FeatureList.pm.
2371
2372 Reviewed by Dan Bates.
2373
2374 * Source/cmake/WebKitFeatures.cmake:
2375 * Source/cmakeconfig.h.cmake:
2376
vestbo@webkit.org19d488f2012-07-05 16:39:54 +000023772012-07-05 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
2378
2379 [Qt] Move Webkit1 before WebKit2 in the build order
2380
2381 Reviewed by Csaba Osztrogonác.
2382
2383 * WebKit.pro:
2384
ryuan.choi@samsung.comdfb773b2012-07-05 14:20:53 +000023852012-07-05 Ryuan Choi <ryuan.choi@samsung.com>
2386
2387 [CMAKE] Unreviewd typo fix after r121857
2388
2389 * Source/cmake/WebKitMacros.cmake:
2390
commit-queue@webkit.org19f54962012-07-05 10:52:48 +000023912012-07-05 Dongwoo Im <dw.im@samsung.com>
2392
2393 [EFL] Enable the CUSTOM_SCHEME_HANDLER feature as default.
2394 https://bugs.webkit.org/show_bug.cgi?id=88608
2395
2396 Reviewed by Hajime Morita.
2397
2398 * Source/cmake/OptionsEfl.cmake: Enable the CUSTOM_SCHEME_HANDLER feature as default.
2399
ryuan.choi@samsung.com8d2c4892012-07-05 08:47:49 +000024002012-07-05 Ryuan Choi <ryuan.choi@samsung.com>
2401
2402 [Wk2][EFL] EFL needs a WebKitTestRunner
2403 https://bugs.webkit.org/show_bug.cgi?id=87659
2404
2405 Reviewed by Kenneth Rohde Christiansen.
2406
2407 * Source/CMakeLists.txt:
2408 Set compiler flags for WebCoreTestSupport to be linked into TestRunnerInjectedBundle
2409 shared library.
2410 * Source/cmake/WebKitMacros.cmake: Remove unnecessary dependency.
2411
commit-queue@webkit.org1fcb31a2012-07-04 16:16:01 +000024122012-07-04 John Mellor <johnme@chromium.org>
2413
2414 Text Autosizing: Add compile flag and runtime setting
2415 https://bugs.webkit.org/show_bug.cgi?id=87394
2416
2417 This patch renames Font Boosting to Text Autosizing.
2418
2419 Reviewed by Adam Barth.
2420
2421 * configure.ac:
2422
ryuan.choi@samsung.com9d83d8d2012-07-04 15:25:35 +000024232012-07-04 Ryuan Choi <ryuan.choi@samsung.com>
2424
2425 [CMAKE] Add GENERATE_BINDINGS macro to share the codes which use generate-bindings.pl.
2426 https://bugs.webkit.org/show_bug.cgi?id=90258
2427
2428 Reviewed by Rob Buis.
2429
2430 This new macro calls generate-bindings.pl and append generated sources
2431 into proper source list.
2432
2433 * Source/cmake/WebKitMacros.cmake:
2434
vestbo@webkit.orgb29c0732012-07-04 14:21:59 +000024352012-07-04 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
2436
2437 [Qt] Get rid of un-needed QT += declarative for Qt 5
2438
2439 The declarative module has been renamed to quick1 in Qt 5, and the
2440 engine-only module for Qt 5 is named 'qml'. For many of the instances
2441 we could just remove 'declarative', since the project file was only
2442 used for Qt5/WebKit2 builds. In the other cases the module was wrapped
2443 in a haveQt(4) scope.
2444
2445 Reviewed by Csaba Osztrogonác.
2446
2447 * Source/api.pri:
2448
commit-queue@webkit.orgf8650c72012-07-04 01:56:08 +000024492012-07-03 Christophe Dumez <christophe.dumez@intel.com>
2450
2451 [EFL] Enable CSS variables support at compile time
2452 https://bugs.webkit.org/show_bug.cgi?id=90448
2453
2454 Reviewed by Kenneth Rohde Christiansen.
2455
2456 Turn on CSS_VARIABLES flag by default on EFL port.
2457
2458 * Source/cmake/OptionsEfl.cmake:
2459 * Source/cmakeconfig.h.cmake:
2460
staikos@webkit.orgcbaf17a2012-07-03 16:34:07 +000024612012-07-03 George Staikos <staikos@webkit.org>
2462
2463 [BlackBerry] Enable microdata support for BlackBerry.
2464 https://bugs.webkit.org/show_bug.cgi?id=90429
2465
2466 Reviewed by Rob Buis.
2467
2468 * Source/cmake/OptionsBlackBerry.cmake:
2469
vestbo@webkit.org15c931a2012-07-03 16:22:10 +000024702012-07-03 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
2471
2472 [Qt] Make use of .qmake.cache for caching features
2473
2474 Instead of loading() features from the files that need them (and re-running
2475 a bunch of checks), we now run feature detection as part of configure.pro,
2476 and have build-webkit write the computed feature-defines and CONFIG to
2477 .qmake.cache, which is then loaded by qmake _before_ even defaults_pre
2478 when building WebKit.pro.
2479
2480 At some point we'll be able to selectivly prevent running of config tests
2481 in configure.pro, which means we don't need a separate code-path for
2482 the build-webkit --help case.
2483
2484 We should also move the code in build-webkit that now uses .webkit.config
2485 to detect clean builds, to use .qmake.cache, since we now store the same
2486 thing there.
2487
2488 Original patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2489
2490 Reviewed by Tor Arne Vestbø.
2491
2492 * Source/QtWebKit.pro:
2493 * Source/api.pri:
2494 * Source/tests.pri:
2495 * WebKit.pro:
2496
commit-queue@webkit.org26c3c5d2012-07-03 16:04:50 +000024972012-07-03 Sheriff Bot <webkit.review.bot@gmail.com>
2498
2499 Unreviewed, rolling out r121766.
2500 http://trac.webkit.org/changeset/121766
2501 https://bugs.webkit.org/show_bug.cgi?id=90465
2502
2503 It caused flakey build errors on the bots (Requested by Ossy
2504 on #webkit).
2505
2506 * Source/QtWebKit.pro:
2507 * Source/api.pri:
2508 * Source/tests.pri:
2509 * WebKit.pro:
2510
staikos@webkit.org8a898b42012-07-03 15:53:31 +000025112012-07-03 George Staikos <staikos@webkit.org>
2512
staikos@webkit.orga9fe4062012-07-03 16:00:22 +00002513 [BlackBerry] Enable Custom Scheme Handlers for BlackBerry.
2514 https://bugs.webkit.org/show_bug.cgi?id=90422
2515
2516 Reviewed by Rob Buis.
2517
2518 * Source/cmake/OptionsBlackBerry.cmake:
2519
25202012-07-03 George Staikos <staikos@webkit.org>
2521
staikos@webkit.org8a898b42012-07-03 15:53:31 +00002522 [BlackBerry] Enable RegisterProtocolHandler for BlackBerry.
2523 https://bugs.webkit.org/show_bug.cgi?id=90422
2524
2525 Reviewed by Rob Buis.
2526
2527 * Source/cmake/OptionsBlackBerry.cmake:
2528
commit-queue@webkit.org0f4231e2012-07-03 15:48:38 +000025292012-07-03 Priit Laes <plaes@plaes.org>
2530
2531 [GTK] Need to bump libsoup requirements (for `soup_cookie_jar_get_cookie_list`)
2532 https://bugs.webkit.org/show_bug.cgi?id=90332
2533
2534 Reviewed by Gustavo Noronha Silva.
2535
2536 * configure.ac: Bump libsoup requirements to 2.39.2
2537
vestbo@webkit.org3ad354f2012-07-03 15:23:20 +000025382012-07-03 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
2539
2540 [Qt] Make use of .qmake.cache for caching features
2541
2542 Instead of loading() features from the files that need them (and re-running
2543 a bunch of checks), we now run feature detection as part of configure.pro,
2544 and have build-webkit write the computed feature-defines and CONFIG to
2545 .qmake.cache, which is then loaded by qmake _before_ even defaults_pre
2546 when building WebKit.pro.
2547
2548 At some point we'll be able to selectivly prevent running of config tests
2549 in configure.pro, which means we don't need a separate code-path for
2550 the build-webkit --help case.
2551
2552 We should also move the code in build-webkit that now uses .webkit.config
2553 to detect clean builds, to use .qmake.cache, since we now store the same
2554 thing there.
2555
2556 Original patch by Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
2557
2558 Reviewed by Tor Arne Vestbø.
2559
2560 * Source/QtWebKit.pro:
2561 * Source/api.pri:
2562 * Source/tests.pri:
2563 * WebKit.pro:
2564
commit-queue@webkit.orgb70cc582012-07-03 07:01:58 +000025652012-07-03 Christophe Dumez <christophe.dumez@intel.com>
2566
2567 [EFL] Enable MICRODATA support
2568 https://bugs.webkit.org/show_bug.cgi?id=90377
2569
2570 Reviewed by Kenneth Rohde Christiansen.
2571
2572 Turn on MICRODATA support by default for EFL port.
2573
2574 * Source/cmake/OptionsEfl.cmake:
2575
staikos@webkit.orgf09221f2012-07-03 03:40:34 +000025762012-07-02 George Staikos <staikos@webkit.org>
2577
2578 [BlackBerry] Enable scoped style for BlackBerry.
2579 https://bugs.webkit.org/show_bug.cgi?id=90418
2580
2581 Reviewed by Rob Buis.
2582
2583 * Source/cmake/OptionsBlackBerry.cmake:
2584 * Source/cmakeconfig.h.cmake:
2585
commit-queue@webkit.org081c9692012-07-03 03:38:29 +000025862012-07-02 Xiaobo Wang <xbwang@torchmobile.com.cn>
2587
2588 [BlackBerry] Use PUBLIC_BUILD to enable/disable DRT
2589 https://bugs.webkit.org/show_bug.cgi?id=90271
2590
2591 Reviewed by George Staikos.
2592
2593 RIM PR #154707
2594
2595 Currently DRT code will be compiled only if ENABLE_DRT is set, and it's not
2596 defined by default.
2597 We should enable DRT by default unless PUBLIC_BUILD is set. In this way we don't
2598 need to rebuild webkit before running DRT.
2599
2600 * Source/cmake/OptionsBlackBerry.cmake:
2601 * Source/cmakeconfig.h.cmake:
2602
commit-queue@webkit.orgcf833612012-07-02 19:46:16 +000026032012-07-02 Thiago Marcos P. Santos <thiago.santos@intel.com>
2604
2605 [EFL][CMake] Integrate API unit tests with CTest
2606 https://bugs.webkit.org/show_bug.cgi?id=87251
2607
2608 Reviewed by Daniel Bates.
2609
2610 Enable CTest on the root CMakeLists.txt as it is expected
2611 to be here. This will create a new build target ("make test")
2612 to run all the API unit tests.
2613
2614 * CMakeLists.txt:
2615
commit-queue@webkit.orgcdf5a922012-07-02 06:22:14 +000026162012-07-01 Christophe Dumez <christophe.dumez@intel.com>
2617
2618 [EFL] Add Gamepad support
2619 https://bugs.webkit.org/show_bug.cgi?id=90170
2620
2621 Reviewed by Kenneth Rohde Christiansen.
2622
2623 * Source/cmake/FindEFL.cmake: Bump EFL libs dependencies.
2624 * Source/cmake/OptionsEfl.cmake: Turn on GAMEPAD flag on EFL port.
2625 * Source/cmakeconfig.h.cmake: Add GAMEPAD flag to CMake.
2626
commit-queue@webkit.orgfc7dc862012-06-30 22:54:56 +000026272012-06-30 Jason Liu <jason.liu@torchmobile.com.cn>
2628
2629 [BlackBerry] WebView/Browser cause blank screen when selecting a dropdown field.
2630 https://bugs.webkit.org/show_bug.cgi?id=90241
2631
2632 This issue is caused by single quotes in option's labels.
2633 We should use the escape character of single quotes in JavaScript's string which
2634 starts and ends with single quotes.
2635 So we replace lablels' single quotes with its escape character during generating the
2636 select popUp's HTML.
2637
2638
2639 Reviewed by George Staikos.
2640
2641 * ManualTests/blackberry/select-popup-items-unicode-display.html:
2642
commit-queue@webkit.orgd62be1b2012-06-30 04:18:40 +000026432012-06-29 Luiz Agostini <luiz.agostini@nokia.com>
2644
2645 [Qt][WK2] Private non-QtQuick API
2646 https://bugs.webkit.org/show_bug.cgi?id=84532
2647
2648 Reviewed by Noam Rosenthal.
2649
2650 API tests for QRawWebView.
2651
2652 * Source/tests.pri:
2653
zandobersek@gmail.come0e4ce72012-06-29 14:38:23 +000026542012-06-29 Zan Dobersek <zandobersek@gmail.com>
2655
2656 Unreviewed build fix after r121518, adding a missing symbol to symbols.filter.
2657
2658 * Source/autotools/symbols.filter:
2659
morrita@google.comc9a96382012-06-29 06:00:56 +000026602012-06-28 MORITA Hajime <morrita@google.com>
2661
2662 [Refactoring] NodeRenderingContext ctor could be built on top of the ComposedShadowTreeWalker
2663 https://bugs.webkit.org/show_bug.cgi?id=89732
2664
2665 Reviewed by Dimitri Glazkov.
2666
2667 * Source/autotools/symbols.filter:
2668
commit-queue@webkit.org05cdaaa2012-06-29 04:20:18 +000026692012-06-28 Jason Liu <jason.liu@torchmobile.com.cn>
2670
2671 [BlackBerry] Selection items show as garbage for non-ascii characters.
2672 https://bugs.webkit.org/show_bug.cgi?id=89969
2673
2674 Add charset utf-8 to the select popup's page.
2675
2676 Reviewed by Antonio Gomes.
2677
2678 * ManualTests/blackberry/select-popup-items-unicode-display.html: Added.
2679
commit-queue@webkit.org0400b6e2012-06-28 21:02:30 +000026802012-06-28 Christophe Dumez <christophe.dumez@intel.com>
2681
2682 [EFL] Enable support for HTML5 datalist
2683 https://bugs.webkit.org/show_bug.cgi?id=90157
2684
2685 Reviewed by Martin Robinson.
2686
2687 Turn on DATALIST flag by default on EFL port to
2688 support HTML5 datalist tag.
2689
2690 * Source/cmake/OptionsEfl.cmake:
2691
zandobersek@gmail.comc8bac582012-06-27 09:19:15 +000026922012-06-27 Zan Dobersek <zandobersek@gmail.com>
2693
2694 [Gtk] Add support for the Gamepad API
2695 https://bugs.webkit.org/show_bug.cgi?id=87503
2696
2697 Reviewed by Carlos Garcia Campos.
2698
2699 Only enable the Gamepad feature on Linux as support
2700 for other operating systems is not present.
2701
2702 Check for the GIO Unix and GUdev dependencies when the
2703 Gamepad feature is enabled.
2704
2705 * configure.ac:
2706
hausmann@webkit.orged7b727a2012-06-26 04:47:14 +000027072012-06-25 Simon Hausmann <simon.hausmann@nokia.com>
2708
2709 [Qt] Make it possible to build WebKit without QtWidgets
2710 https://bugs.webkit.org/show_bug.cgi?id=78109
2711
2712 Reviewed by Tor Arne Vestbø.
2713
2714 * Source/QtWebKit.pro: Don't build WK1 tests and examples if WK1 is disabled.
2715 * Source/api.pri: Move WK1 sources away from here and use WEBKIT += webkit1 instead
2716 * WebKit.pro: Add WK1 to SUBDIRS unless no_webkit1 is set.
2717
gyuyoung.kim@samsung.comdb645152012-06-25 18:01:42 +000027182012-06-25 Gyuyoung Kim <gyuyoung.kim@samsung.com>
2719
2720 [EFL] Implement Network Information API
2721 https://bugs.webkit.org/show_bug.cgi?id=87067
2722
2723 Reviewed by Kenneth Rohde Christiansen.
2724
2725 * Source/cmake/FindEFL.cmake: Find eeze library in build system.
2726
carlosgc@webkit.org447b3712012-06-25 13:38:19 +000027272012-06-25 Carlos Garcia Campos <cgarcia@igalia.com>
2728
2729 Unreviewed. Update NEWS and configure.ac for 1.9.4 release
2730
2731 * configure.ac: Bump version number.
2732
commit-queue@webkit.orgc2df1f02012-06-22 20:10:10 +000027332012-06-22 Joshua Netterfield <jnetterfield@rim.com>
2734
2735 [BlackBerry] Sanitize GLSL code using ANGLE.
2736
2737 BlackBerry port does not sanitize GLSL code with ANGLE
2738 https://bugs.webkit.org/show_bug.cgi?id=89583
2739
2740 Reviewed by Rob Buis.
2741
2742 * Source/cmake/OptionsBlackBerry.cmake: Include ANGLE openGL headers as system headers in BlackBerry port.
2743
commit-queue@webkit.org618672d2012-06-21 19:20:00 +000027442012-06-21 Kalev Lember <kalevlember@gmail.com>
2745
2746 [GTK] Fix NPAPI plugins on Windows
2747 https://bugs.webkit.org/show_bug.cgi?id=54531
2748
2749 Reviewed by Martin Robinson.
2750
2751 Define XP_WIN on Windows for plugin support.
2752
2753 * GNUmakefile.am:
2754
commit-queue@webkit.orgbff9a102012-06-21 15:46:40 +000027552012-06-21 Ryuan Choi <ryuan.choi@gmail.com>
2756
2757 [EFL][WK2] Make WebKit2/Efl headers and resources installable.
2758 https://bugs.webkit.org/show_bug.cgi?id=88207
2759
2760 Reviewed by Chang Shu.
2761
2762 * Source/cmake/OptionsCommon.cmake:
2763 Provide new variable, EXEC_INSTALL_DIR to determine where to install
2764 executables.
2765
ryuan.choi@samsung.com71b54342012-06-21 15:11:48 +000027662012-06-21 Ryuan Choi <ryuan.choi@samsung.com>
2767
2768 [EFL[WK2] Add WKViewEfl and WebKit2 API Object to represent Evas_Object.
2769 https://bugs.webkit.org/show_bug.cgi?id=88935
2770
2771 Reviewed by Chang Shu.
2772
2773 * Source/cmake/OptionsEfl.cmake: Defines BUILDING_EFL__.
2774
commit-queue@webkit.org7a98dfe2012-06-20 22:49:13 +000027752012-06-20 Varun Jain <varunjain@chromium.org>
2776
2777 Account for device scale factor when creating image for dragging.
2778 https://bugs.webkit.org/show_bug.cgi?id=89489
2779
2780 Reviewed by Adam Barth.
2781
2782 * ManualTests/chromium/drag-image-accounts-for-device-scale.html: Added.
2783
philn@webkit.org36de8852012-06-20 02:25:14 +000027842012-06-18 Philippe Normand <pnormand@igalia.com>
2785
2786 [GStreamer] 0.11 video-sink
2787 https://bugs.webkit.org/show_bug.cgi?id=77087
2788
2789 Reviewed by Martin Robinson.
2790
2791 * configure.ac: Fix required gstreamer 0.11 version
2792
jocelyn.turcotte@nokia.com36177bb2012-06-19 15:15:00 +000027932012-06-19 Jocelyn Turcotte <jocelyn.turcotte@nokia.com>
2794
2795 [Qt] Fix the Windows build when Qt is built without -release or -debug
2796 https://bugs.webkit.org/show_bug.cgi?id=89471
2797
2798 Reviewed by Tor Arne Vestbø.
2799
2800 Make sure that we at least remove build_all on Windows for api.pri,
2801 as WebCore wasn't built for all configurations.
2802
2803 * Source/api.pri:
2804
commit-queue@webkit.orgf5584612012-06-19 09:13:52 +000028052012-06-19 Mike West <mkwst@chromium.org>
2806
2807 Introduce ENABLE_CSP_NEXT configuration flag.
2808 https://bugs.webkit.org/show_bug.cgi?id=89300
2809
2810 Reviewed by Adam Barth.
2811
2812 The 1.0 draft of the Content Security Policy spec is just about to
2813 move to Last Call. We'll hide work on the upcoming 1.1 spec behind
2814 this ENABLE flag, disabled by default.
2815
2816 Spec: https://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-specification.dev.html
2817
2818 * Source/cmake/WebKitFeatures.cmake:
2819 * Source/cmakeconfig.h.cmake:
2820
hausmann@webkit.orgfa23ca32012-06-19 07:35:06 +000028212012-06-19 Joel Dillon <joel.dillon@codethink.co.uk>, Jocelyn Turcotte <jocelyn.turcotte@nokia.com>
2822
2823 [Qt] Allow the modules file generation to work on Windows.
2824 https://bugs.webkit.org/show_bug.cgi?id=89010
2825
2826 Reviewed by Csaba Osztrogonác.
2827
2828 Add calls to toSystemPath and use QMAKE_DIR_SEP where necessary.
2829
2830 * Source/api.pri:
2831
hausmann@webkit.org7c253c02012-06-19 07:32:50 +000028322012-06-19 Jocelyn Turcotte <jocelyn.turcotte@nokia.com>
2833
2834 [Qt] Fix TARGET not properly being set for QtWebKitd5.dll when building in debug.
2835 https://bugs.webkit.org/show_bug.cgi?id=88880
2836
2837 load(qt_module_config) adjusts the TARGET to add the "d" suffix when doing
2838 the debug build_pass. When doing the first pass, qt_module_config.prf doesn't
2839 adjust the target since it is in debug_and_release and expects the debug
2840 build_pass to come later. However, since we remove debug_and_release from CONFIG
2841 right after this, the TARGET hasn't been adjusted and the debug build_pass
2842 will not happen.
2843
2844 Work around it by disabling this optimization on Windows.
2845
2846 Reviewed by Tor Arne Vestbø.
2847
2848 * Source/api.pri:
2849
commit-queue@webkit.org828d2392012-06-19 07:27:33 +000028502012-06-19 Mike West <mkwst@chromium.org>
2851
2852 Add a scheme registry for bypassing Content Security Policy.
2853 https://bugs.webkit.org/show_bug.cgi?id=89373
2854
2855 Reviewed by Adam Barth.
2856
2857 * Source/autotools/symbols.filter:
2858
rwlbuis@webkit.orgbb8126f2012-06-18 22:08:53 +000028592012-06-18 Rob Buis <rbuis@rim.com>
2860
2861 [BlackBerry] Enable LEGACY_VIEWPORT_ADAPTION
2862 https://bugs.webkit.org/show_bug.cgi?id=89381
2863
2864 Reviewed by Antonio Gomes.
2865
2866 PR 163598
2867
2868 Enable LEGACY_VIEWPORT_ADAPTION.
2869
2870 * Source/cmake/OptionsBlackBerry.cmake:
2871
philn@webkit.org538a3bba2012-06-17 18:36:21 +000028722012-06-17 Philippe Normand <pnormand@igalia.com>
2873
philn@webkit.orgc668d9c2012-06-18 02:35:53 +00002874 Unreviewed, GTK 64-bit build fix after r120551.
2875
2876 * Source/autotools/symbols.filter:
2877
28782012-06-17 Philippe Normand <pnormand@igalia.com>
2879
philn@webkit.org538a3bba2012-06-17 18:36:21 +00002880 Unreviewed, GTK build fix after r120397.
2881
2882 * Source/autotools/symbols.filter:
2883
tkent@chromium.orgbcc71632012-06-15 04:34:25 +000028842012-06-14 Kent Tamura <tkent@chromium.org>
2885
2886 Validate form state strings in FormController::setStateForNewFormElements()
2887 https://bugs.webkit.org/show_bug.cgi?id=88768
2888
2889 Reviewed by Hajime Morita.
2890
2891 * Source/autotools/symbols.filter: Expose some symbols used by Internals.cpp.
2892
commit-queue@webkit.orgea3f3f02012-06-14 09:32:37 +000028932012-06-14 Chris Guan <chris.guan@torchmobile.com.cn>
2894
2895 [Blackberry] add a new Api named setAllowNotification
2896 https://bugs.webkit.org/show_bug.cgi?id=88950
2897
2898 Reviewed by Antonio Gomes.
2899
2900 Add a new API named setAllowNotification in webpage class to
2901 let client set those allowed domains into notifications.
2902
2903 Test case:
2904 * ManualTests/blackberry/notification.html: Added.
2905
zandobersek@gmail.com44a6ce72012-06-13 18:21:58 +000029062012-06-13 Zan Dobersek <zandobersek@gmail.com>
2907
2908 [Gtk] Enable link prefetch support in the developer builds
2909 https://bugs.webkit.org/show_bug.cgi?id=89011
2910
2911 Reviewed by Martin Robinson.
2912
2913 Rather export an automake conditional than define a preprocessor
2914 macro for enabling link prefetch support.
2915
2916 * configure.ac:
2917
commit-queue@webkit.org687a1a042012-06-13 12:28:50 +000029182012-06-13 Robin Cao <robin.cao@torchmobile.com.cn>
2919
2920 [BlackBerry] Enable MEDIA_STREAM by default
2921 https://bugs.webkit.org/show_bug.cgi?id=88849
2922
2923 Reviewed by Antonio Gomes.
2924
2925 * Source/cmake/OptionsBlackBerry.cmake:
2926 * Source/cmakeconfig.h.cmake:
2927
morrita@google.com649eaeb2012-06-13 01:28:33 +000029282012-06-12 MORITA Hajime <morrita@google.com>
2929
2930 Shadow Pseudo ID should be able to nest to point nested shadow DOM.
2931 https://bugs.webkit.org/show_bug.cgi?id=62218
2932
2933 Reviewed by Dimitri Glazkov.
2934
2935 * Source/autotools/symbols.filter:
2936
commit-queue@webkit.orge8e0b102012-06-12 16:32:58 +000029372012-06-12 Christophe Dumez <christophe.dumez@intel.com>
2938
commit-queue@webkit.orgf128e802012-06-13 00:28:03 +00002939 [EFL] Enable SHADOW_DOM flag
2940 https://bugs.webkit.org/show_bug.cgi?id=87732
2941
2942 Reviewed by Kentaro Hara.
2943
2944 Enable SHADOW_DOM flag by default at compile time for EFL port.
2945
2946 * Source/autotools/symbols.filter: Fix GTK build by adding new symbol.
2947 * Source/cmake/OptionsEfl.cmake:
2948 * Source/cmakeconfig.h.cmake:
2949
29502012-06-12 Christophe Dumez <christophe.dumez@intel.com>
2951
commit-queue@webkit.orge8e0b102012-06-12 16:32:58 +00002952 [EFL] enable LEGACY_WEBKIT_BLOB_BUILDER flag
2953 https://bugs.webkit.org/show_bug.cgi?id=88715
2954
2955 Reviewed by Noam Rosenthal.
2956
2957 Enable LEGACY_WEBKIT_BLOB_BUILDER flag by default on EFL port.
2958
2959 * Source/cmake/OptionsEfl.cmake:
2960 * Source/cmakeconfig.h.cmake:
2961
commit-queue@webkit.orgb6175312012-06-12 13:19:07 +000029622012-06-12 Thiago Marcos P. Santos <thiago.santos@intel.com>
2963
2964 [CMake] Enabled CSS_BOX_DECORATION_BREAK by default
2965 https://bugs.webkit.org/show_bug.cgi?id=88850
2966
2967 Reviewed by Alexis Menard.
2968
2969 Enabled it by default on CMake ports like in other ports.
2970 This patch is a follow up to r120029.
2971
2972 * Source/cmake/WebKitFeatures.cmake:
2973 * Source/cmakeconfig.h.cmake:
2974
kaustubh@motorola.com479cf832012-06-12 10:47:39 +000029752012-06-11 Kaustubh Atrawalkar <kaustubh@motorola.com>
2976
2977 [DRT] LTC:: counterValueForElementById() could be moved to Internals.
2978 https://bugs.webkit.org/show_bug.cgi?id=84406
2979
2980 Reviewed by Hajime Morita.
2981
2982 Exporting Internals::counterValueForElement symbols for the Gtk build.
2983
2984 * Source/autotools/symbols.filter:
2985
alexis.menard@openbossa.org91279ad2012-06-12 02:21:42 +000029862012-06-11 Alexis Menard <alexis.menard@openbossa.org>
2987
2988 [CSS3 Backgrounds and Borders] Protect box-decoration-break behind a feature flag.
2989 https://bugs.webkit.org/show_bug.cgi?id=88804
2990
2991 Reviewed by Tony Chang.
2992
2993 Protect box-decoration-break behind a feature flag enabled by default.
2994
2995 * configure.ac:
2996
commit-queue@webkit.orgb12c4b92012-06-11 22:16:11 +000029972012-06-11 Arnaud Renevier <arno@renevier.net>
2998
2999 Replace obsolete mkdir_p variable with MKDIR_P
3000 https://bugs.webkit.org/show_bug.cgi?id=88790
3001
3002 Reviewed by Martin Robinson.
3003
3004 * GNUmakefile.am:
3005 * configure.ac:
3006
carlosgc@webkit.orgf4fbe002012-06-11 15:31:19 +000030072012-06-11 Carlos Garcia Campos <cgarcia@igalia.com>
3008
3009 Unreviewed. Fix make distcheck issues.
3010
3011 * GNUmakefile.am: Initialize jscore nosource variables.
3012
darin@apple.com7a26ab32012-06-10 17:15:55 +000030132012-06-10 Darin Adler <darin@apple.com>
3014
3015 Remove unneeded callRemovedLastRef function from TreeShared refactoring
3016 https://bugs.webkit.org/show_bug.cgi?id=88653
3017
3018 Reviewed by Sam Weinig.
3019
3020 * Source/autotools/symbols.filter: Filter removedLastRef instead of
3021 callRemovedLastRef.
3022
commit-queue@webkit.org5deb7492012-06-09 09:05:22 +000030232012-06-09 Sukolsak Sakshuwong <sukolsak@google.com>
3024
3025 Add UNDO_MANAGER flag
3026 https://bugs.webkit.org/show_bug.cgi?id=87908
3027
3028 Reviewed by Tony Chang.
3029
3030 * Source/cmake/WebKitFeatures.cmake:
3031
mrobinson@webkit.org940af952012-06-08 22:24:55 +000030322012-06-08 Martin Robinson <mrobinson@igalia.com>
3033
mrobinson@webkit.org214e0b82012-06-08 23:13:35 +00003034 Fix the GTK+ build when OpenGL is enabled.
3035
3036 * configure.ac: Fix the build.
3037
30382012-06-08 Martin Robinson <mrobinson@igalia.com>
3039
mrobinson@webkit.org940af952012-06-08 22:24:55 +00003040 [GTK] build accelerated compositing on by default if OpenGL is present
3041 https://bugs.webkit.org/show_bug.cgi?id=88677
3042
3043 Reviewed by Alejandro G. Castro.
3044
3045 Build accelerated compositing by default if OpenGL is present, just like WebGL.
3046 Also prevent enabling WebGL if Clutter is turned on.
3047
3048 * configure.ac: Build AC by default.
3049
carlosgc@webkit.org6ea8d202012-06-08 16:37:48 +000030502012-06-08 Carlos Garcia Campos <cgarcia@igalia.com>
3051
3052 [GTK] Add API to get the library version to WebKit2 GTK+
3053 https://bugs.webkit.org/show_bug.cgi?id=88426
3054
3055 Reviewed by Martin Robinson.
3056
3057 * configure.ac: Generate WebKitVersion.h from WebKitVersion.h.in
3058 file.
3059
commit-queue@webkit.org033422c2012-06-08 15:23:12 +000030602012-06-08 Ion Rosca <rosca@adobe.com>
3061
3062 Some overlay scrollbar API calls in ScrollAnimatorMac can lead to an assertion in RenderBox::mapAbsoluteToLocalPoint
3063 https://bugs.webkit.org/show_bug.cgi?id=74111
3064
3065 Reviewed by Simon Fraser.
3066
3067 * ManualTests/scrollbar-crash-on-hide-scrolled-area.html: Added.
3068
haraken@chromium.orgbba7c9c2012-06-08 06:28:12 +000030692012-06-07 Kentaro Hara <haraken@chromium.org>
3070
3071 Reduce Node object size from 72 byte to 64 byte
3072 https://bugs.webkit.org/show_bug.cgi?id=88528
3073
3074 Reviewed by Ryosuke Niwa.
3075
3076 Added a symbol for callRemovedLastRef().
3077
3078 * Source/autotools/symbols.filter:
3079
paroga@webkit.org40935152012-06-07 23:18:38 +000030802012-06-07 Patrick Gansterer <paroga@webkit.org>
3081
3082 Build fix for WinCE after r113570.
3083
3084 * Source/cmake/OptionsWinCE.cmake:
3085
abarth@webkit.org9a476fa2012-06-07 21:21:31 +000030862012-06-07 Adam Barth <abarth@webkit.org>
3087
3088 Settings::defaultDeviceScaleFactor is redundant with Page::deviceScaleFactor
3089 https://bugs.webkit.org/show_bug.cgi?id=88375
3090
3091 Reviewed by James Robinson.
3092
3093 This symbol no longer exists.
3094
3095 * Source/autotools/symbols.filter:
3096
ddkilzer@apple.com19f61db2012-06-06 21:19:38 +000030972012-06-06 David Kilzer <ddkilzer@apple.com>
3098
3099 Teach git about localizable *.strings files
3100 <http://webkit.org/b/88447>
3101
3102 Reviewed by Adam Roben.
3103
3104 * .gitattributes: Set diff attribute for *.strings files so
3105 git-diff doesn't complain about them being binary files once the
3106 git-config command is run.
3107
wingo@igalia.com4990fe82012-06-06 16:00:38 +000031082012-06-06 Andy Wingo <wingo@igalia.com>
3109
3110 [GTK] Enable the LLInt
3111 https://bugs.webkit.org/show_bug.cgi?id=88315
3112
3113 Reviewed by Filip Pizlo.
3114
3115 * configure.ac: Require Ruby, to build the low-level interpreter.
3116
loislo@chromium.org227483d2012-06-06 11:27:56 +000031172012-06-06 Sam D <dsam2912@gmail.com>
3118
3119 Web Inspector: Option for selecting/deselecting all breakpoints in breakpoint pane
3120 https://bugs.webkit.org/show_bug.cgi?id=87644
3121
3122 Reviewed by Pavel Feldman.
3123
3124 Added an option to enable/disable all breakpoints in Breakpoint pane.
3125
3126 * Source/WebCore/English.lproj/localizedStrings.js:
3127 * Source/WebCore/inspector/front-end/BreakpointManager.js:
3128 (WebInspector.BreakpointManager.prototype.enableAllBreakpoints):
3129 (WebInspector.BreakpointManager.prototype.disableAllBreakpoints):
3130 * Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js:
3131 (WebInspector.JavaScriptBreakpointsSidebarPane.prototype._breakpointContextMenu.enabledBreakpointCount):
3132 (WebInspector.JavaScriptBreakpointsSidebarPane.prototype._breakpointContextMenu):
3133
commit-queue@webkit.org4b6f5b32012-06-06 05:19:18 +000031342012-06-05 Danilo Cesar Lemes de Paula <danilo.cesar@collabora.co.uk>
3135
3136 [GTK] show the feature list in alphabetical order
3137 https://bugs.webkit.org/show_bug.cgi?id=88343
3138
3139 Reviewed by Gustavo Noronha Silva.
3140
3141 * configure.ac:
3142
commit-queue@webkit.org3401b2d2012-06-05 11:32:22 +000031432012-06-05 Dongwoo Im <dw.im@samsung.com>
3144
3145 Add 'isProtocolHandlerRegistered' and 'unregisterProtocolHandler'.
3146 https://bugs.webkit.org/show_bug.cgi?id=73176
3147
3148 Reviewed by Adam Barth.
3149
3150 Two more APIs are added in Custom Scheme Handler specification.
3151 http://dev.w3.org/html5/spec/Overview.html#custom-handlers
3152 One is 'isProtocolHandlerRegistered' to query whether the specific URL
3153 is registered or not.
3154 The other is 'unregisterProtocolHandler' to remove the registered URL.
3155
3156 * Source/cmake/WebKitFeatures.cmake: Add a macro 'ENABLE_CUSTOM_SCHEME_HANDLER'.
3157 * Source/cmakeconfig.h.cmake: Add a macro 'ENABLE_CUSTOM_SCHEME_HANDLER'.
3158
commit-queue@webkit.org38d67852012-06-05 03:01:18 +000031592012-06-04 Hugo Parente Lima <hugo.lima@openbossa.org>
3160
3161 Turn LEGACY_VIEWPORT_ADAPTION USE flag into an ENABLE flag.
3162 https://bugs.webkit.org/show_bug.cgi?id=88243
3163
3164 Reviewed by Adam Barth.
3165
3166 * Source/cmake/WebKitFeatures.cmake:
3167
commit-queue@webkit.org14c5bee2012-06-04 20:11:36 +000031682012-06-04 Sadrul Habib Chowdhury <sadrul@chromium.org>
3169
3170 [chromium] Fix software rendering for device-scale-factor > 1
3171 https://bugs.webkit.org/show_bug.cgi?id=88136
3172
3173 Reviewed by Darin Fisher.
3174
3175 Export WebCore::Page::setDeviceScaleFactor and WebCore::Settings::setDefaultDeviceScaleFactor.
3176
3177 * Source/autotools/symbols.filter:
3178
commit-queue@webkit.org2c5253a2012-06-04 19:52:05 +000031792012-06-04 Kevin Greer <kgr@chromium.org>
3180
3181 [chromium] Issue async events for console.time/timeEnd
3182 https://bugs.webkit.org/show_bug.cgi?id=88003
3183
3184 Reviewed by Pavel Feldman.
3185
3186 * ../../Source/WebCore/page/Console.cpp:
3187
carlosgc@webkit.org380b0e12012-06-04 11:00:09 +000031882012-06-04 Carlos Garcia Campos <cgarcia@igalia.com>
3189
3190 Unreviewed. Update NEWS and configure.ac for 1.9.3 release
3191
3192 * configure.ac: Bump version number.
3193
kevino@webkit.orgf2b0e142012-06-02 18:54:52 +000031942012-06-02 Kevin Ollivier <kevino@theolliviers.com>
3195
3196 [wx] Unreviewed build fix. Temporarily disable DerivedSources cleanup on Windows.
3197
3198 * wscript:
3199
hausmann@webkit.org56ac0762012-06-01 20:00:43 +000032002012-06-01 Simon Hausmann <simon.hausmann@nokia.com>
3201
3202 [Qt] Use -Werror only in developer builds
3203
3204 Rubber-stamped by Tor Arne Vestbø.
3205
3206 In production builds -Werror with custom toolchains and wierd system
3207 headers, -Werror is of no use and just creates confusion. So use it
3208 only if Qt is configured with -developer-build.
3209
3210 * Source/api.pri: qt_developer_build determination moved to default_pre.prf
3211
caio.oliveira@openbossa.org8bbea2e2012-06-01 19:57:46 +000032122012-06-01 Caio Marcelo de Oliveira Filho <caio.oliveira@openbossa.org>
3213
3214 [Qt] Move QObject bridge related tests from tst_qwebframe to tst_qobjectbridge
3215 https://bugs.webkit.org/show_bug.cgi?id=88117
3216
3217 Reviewed by Noam Rosenthal.
3218
3219 * Source/tests.pri: Add new entry for tst_qobjectbridge.
3220
commit-queue@webkit.orgdc1f1da2012-06-01 16:35:49 +000032212012-06-01 Christophe Dumez <christophe.dumez@intel.com>
3222
3223 [EFL] EFL port does not enable WEB_INTENTS_TAG flag
3224 https://bugs.webkit.org/show_bug.cgi?id=86866
3225
3226 Reviewed by Adam Barth.
3227
3228 Enable WEB_INTENTS_TAG flag by default on EFL port.
3229
3230 * Source/cmake/OptionsEfl.cmake:
3231 * Source/cmake/WebKitFeatures.cmake:
3232 * Source/cmakeconfig.h.cmake:
3233
commit-queue@webkit.org82912a92012-05-31 14:47:30 +000032342012-05-31 Christophe Dumez <christophe.dumez@intel.com>
3235
3236 [EFL] Enable CSS_IMAGE_SET flag
3237 https://bugs.webkit.org/show_bug.cgi?id=87727
3238
3239 Reviewed by Adam Roben.
3240
3241 Add CSS_IMAGE_SET flag to CMake and enable it by default on EFL port.
3242
3243 * Source/cmake/OptionsEfl.cmake:
3244 * Source/cmake/WebKitFeatures.cmake:
3245 * Source/cmakeconfig.h.cmake:
3246
kevino@webkit.org3e068132012-05-30 21:05:29 +000032472012-05-30 Kevin Ollivier <kevino@theolliviers.com>
3248
3249 [wx] Unreviewed build fix. Add needed file back to the wx build.
3250
3251 * wscript:
3252
ryuan.choi@samsung.come9e65c22012-05-30 12:12:23 +000032532012-05-30 Mariusz Grzegorczyk <mariusz.g@samsung.com>, Ryuan Choi <ryuan.choi@samsung.com>
3254
3255 [EFL][WK2] Fix WebKit2-EFL build
3256 https://bugs.webkit.org/show_bug.cgi?id=83693
3257
3258 Reviewed by Carlos Garcia Campos.
3259
3260 * Source/cmake/OptionsEfl.cmake: Define BUILDING_SOUP__ to build WebKit2/Efl.
3261
commit-queue@webkit.org54f7a012012-05-30 03:51:23 +000032622012-05-29 Jonathan Dong <jonathan.dong@torchmobile.com.cn>
3263
3264 [BlackBerry] Loading media data with http authentication
3265 https://bugs.webkit.org/show_bug.cgi?id=84214
3266
3267 Reviewed by George Staikos.
3268
3269 Added a manual test case which needs user to provide a HTTP server
3270 with HTTP authentication support when loading the specified media
3271 resource. The test case will test if the media resource is successfully
3272 loaded.
3273
3274 * ManualTests/blackberry/video-load-with-authentication.html: Added.
3275
simon.fraser@apple.com9d127902012-05-29 20:49:15 +000032762012-05-29 Simon Fraser <simon.fraser@apple.com>
3277
3278 Incomplete repaint on twitter.com when replying to a tweet
3279 https://bugs.webkit.org/show_bug.cgi?id=87553
3280
3281 Reviewed by Dean Jackson.
3282
3283 Manual test that adds a transform to a layer, forcing that
3284 layer to gain backing store.
3285
3286 * ManualTests/compositing/requires-backing-change.html: Added.
3287
commit-queue@webkit.orgd5058402012-05-29 14:44:38 +000032882012-05-29 David Barr <davidbarr@chromium.org>
3289
3290 Introduce ENABLE_CSS_IMAGE_RESOLUTION compile flag
3291 https://bugs.webkit.org/show_bug.cgi?id=87685
3292
3293 Reviewed by Eric Seidel.
3294
3295 Add a configuration option for CSS image-resolution support, disabling it by default.
3296
3297 * Source/cmake/WebKitFeatures.cmake:
3298 * Source/cmakeconfig.h.cmake:
3299
jesus@webkit.org51166e12012-05-28 20:00:49 +000033002012-05-25 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
3301
3302 WebKitTestRunner needs to support layoutTestController.setJavaScriptProfilingEnabled
3303 https://bugs.webkit.org/show_bug.cgi?id=42328
3304
3305 Reviewed by Eric Seidel.
3306
3307 * Source/autotools/symbols.filter: Added needed symbols for GTK build.
3308
gyuyoung.kim@samsung.com741d3552012-05-28 09:05:52 +000033092012-05-28 Gyuyoung Kim <gyuyoung.kim@samsung.com>
3310
3311 Move allowRoundingHacks to Internals interface
3312 https://bugs.webkit.org/show_bug.cgi?id=87328
3313
3314 Reviewed by Hajime Morita.
3315
3316 * Source/autotools/symbols.filter: Add allowRoundingHacks symbol filter.
3317
commit-queue@webkit.org07ecccc2012-05-28 05:00:28 +000033182012-05-27 Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com>
3319
3320 [EFL] Enable blob support for the EFL port
3321 https://bugs.webkit.org/show_bug.cgi?id=85363
3322
3323 Reviewed by Hajime Morita.
3324
3325 Enable Blob support by default for the EFL port.
3326
3327 * Source/cmake/OptionsEfl.cmake:
3328
rakuco@webkit.org1bc22102012-05-28 01:56:44 +000033292012-05-27 Raphael Kubo da Costa <rakuco@webkit.org>
3330
3331 [CMake] Make WEBKIT_SET_EXTRA_COMPILER_FLAGS work with clang.
3332 https://bugs.webkit.org/show_bug.cgi?id=87597
3333
3334 Reviewed by Daniel Bates.
3335
3336 Building with clang requires at least the -fPIC option being
3337 passed correctly, just like it is needed with gcc. clang is also
3338 compatible with most of gcc's compiler options, so we only need to
3339 check for clang besides g++ in the macro definition.
3340
3341 * Source/cmake/WebKitHelpers.cmake: Check for "Clang" and use
3342 CMAKE_COMPILER_IS_GNUCXX for the previous check, as it is shorter
3343 and achieves the same effect.
3344
zandobersek@gmail.com3f8e9712012-05-25 18:36:13 +000033452012-05-25 Zan Dobersek <zandobersek@gmail.com>
3346
zandobersek@gmail.comb8b19832012-05-25 19:40:04 +00003347 configure.ac has duplicated AC_MSG_RESULT([$enable_sandbox]) and nothing for seamless iframes
3348 https://bugs.webkit.org/show_bug.cgi?id=87453
3349
3350 Reviewed by Eric Seidel.
3351
3352 Report the value of $enable_iframe_seamless rather than $enable_sandbox
3353 after checking whether to enable the iframe seamless option.
3354
3355 * configure.ac:
3356
33572012-05-25 Zan Dobersek <zandobersek@gmail.com>
3358
zandobersek@gmail.com3f8e9712012-05-25 18:36:13 +00003359 [Gtk] Remove configuration options that do not apply anymore
3360 https://bugs.webkit.org/show_bug.cgi?id=87509
3361
3362 Reviewed by Martin Robinson.
3363
3364 Remove configuration options for enabling or disabling HTML5 datagrid,
3365 DOM storage, image resizer API and sandboxed iframe support. These
3366 features were either turned on by default with the feature defines
3367 removed from the code or removed from the source.
3368
3369 * configure.ac:
3370
commit-queue@webkit.org6e502412012-05-25 12:18:04 +000033712012-05-25 Zalan Bujtas <zbujtas@gmail.com>
3372
3373 [Qt] Broken controls rendering when transform is applied.
3374 https://bugs.webkit.org/show_bug.cgi?id=87483
3375
3376 Reviewed by Simon Hausmann.
3377
3378 * ManualTests/qt/control_paiting_with_transforms.html: Added.
3379
timothy_horton@apple.com3f03ac12012-05-25 06:53:27 +000033802012-05-24 Tim Horton <timothy_horton@apple.com>
3381
3382 Add feature defines for web-facing parts of CSS Regions and Exclusions
3383 https://bugs.webkit.org/show_bug.cgi?id=87442
3384 <rdar://problem/10887709>
3385
3386 Reviewed by Dan Bernstein.
3387
3388 * configure.ac:
3389
tkent@chromium.org9da8b8c2012-05-25 06:50:38 +000033902012-05-24 Kent Tamura <tkent@chromium.org>
3391
3392 PAGE_POPUP: window.setValueAndClosePopup should be moved to a
3393 per-context property of DOMWindow.
3394 https://bugs.webkit.org/show_bug.cgi?id=87086
3395
3396 Reviewed by Adam Barth.
3397
3398 * ManualTests/forms/calendar-picker.html:
3399 Introduce pseudo window.pagePopupController.
3400
commit-queue@webkit.org6d0c3bc2012-05-25 04:00:42 +000034012012-05-24 Philippe Normand <pnormand@igalia.com>
3402
3403 [GTK] Add --enable-css3-flexbox configure option after r118304.
3404 https://bugs.webkit.org/show_bug.cgi?id=87455
3405
3406 Reviewed by Xan Lopez.
3407
3408 * configure.ac:
3409
commit-queue@webkit.org2c8bcde2012-05-24 20:01:53 +000034102012-05-24 John Mellor <johnme@chromium.org>
3411
3412 Font Boosting: Add compile flag and runtime setting
3413 https://bugs.webkit.org/show_bug.cgi?id=87394
3414
3415 Reviewed by Adam Barth.
3416
3417 Add ENABLE_FONT_BOOSTING.
3418
3419 * configure.ac:
3420
rakuco@webkit.org4882cf92012-05-24 02:43:51 +000034212012-05-23 Raphael Kubo da Costa <rakuco@webkit.org>
3422
3423 [CMake] Unreviewed, add ENABLE_CSS3_FLEXBOX after r118304.
3424
3425 * Source/cmake/WebKitFeatures.cmake:
3426 * Source/cmakeconfig.h.cmake:
3427
commit-queue@webkit.orgbc19f902012-05-23 17:46:30 +000034282012-05-23 Xiaobo Wang <xbwang@torchmobile.com.cn>
3429
3430 [BlackBerry] Reset JS state for each test
3431 https://bugs.webkit.org/show_bug.cgi?id=86899
3432
3433 Reviewed by Nikolas Zimmermann.
3434
3435 * DumpRenderTree/blackberry/DumpRenderTree.cpp:
3436 (BlackBerry::WebKit::DumpRenderTree::resetToConsistentStateBeforeTesting):
3437
commit-queue@webkit.orge49ac252012-05-23 05:24:02 +000034382012-05-22 Dongwoo Im <dw.im@samsung.com>
3439
3440 [EFL] Implements the registerProtocolHandler method and option.
3441 https://bugs.webkit.org/show_bug.cgi?id=73638
3442
3443 Reviewed by Andreas Kling.
3444
3445 The registerProtocolHandler() method allows Web sites to register themselves
3446 as possible handlers for particular schemes.
3447
3448 http://dev.w3.org/html5/spec/Overview.html#dom-navigator-registerprotocolhandler
3449
3450 * Source/cmake/OptionsEfl.cmake: Adds the build option.
3451 * Source/cmakeconfig.h.cmake: Adds the build option.
3452
commit-queue@webkit.org0db5ac72012-05-23 02:37:31 +000034532012-05-22 Kangil Han <kangil.han@samsung.com>
3454
3455 [EFL][DRT] Implement touch event
3456 https://bugs.webkit.org/show_bug.cgi?id=86720
3457
3458 Reviewed by Hajime Morita.
3459
3460 Currently EFL DRT doesn't support touch event.
3461 Therefore, this patch enabled it and implemented some eventSender function callbacks.
3462
3463 * Source/cmake/FindEFL.cmake: Add ecore-input to dependency check.
3464 * Source/cmake/OptionsEfl.cmake: Enable touch event option.
3465
simon.fraser@apple.com9bd2c702012-05-22 20:37:14 +00003466== Rolled over to ChangeLog-2012-05-22 ==