Timeline



Jun 30, 2009:

11:51 PM Changeset in webkit [45431] by xan@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-30 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

https://bugs.webkit.org/show_bug.cgi?id=26877
[GTK] DRT fixes to pass new plugin test

Silence compiler warnings.

Newer GCC don't like using or returning a static string where a
'char*' is expected. Ideally we'd change the function signatures
to return or take 'const char*' I suppose, but since we can't do
that just cast the strings to 'char*'.

  • DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp: (webkit_test_plugin_get_value):
11:42 PM Changeset in webkit [45430] by xan@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-30 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

https://bugs.webkit.org/show_bug.cgi?id=26877
[GTK] DRT fixes to pass new plugin test

Use the common pluginLog function instead of a local copy.

  • DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp: (webkit_test_plugin_new_instance): (webkit_test_plugin_destroy_instance): (webkit_test_plugin_set_window): (webkit_test_plugin_handle_event):
11:41 PM Changeset in webkit [45429] by xan@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-30 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

https://bugs.webkit.org/show_bug.cgi?id=26877
[GTK] DRT fixes to pass new plugin test

Modify our DRT as done in bug #15457 to log logSrc as src in order
to pass test plugins/netscape-plugin-map-data-to-src.html.

  • DumpRenderTree/gtk/TestNetscapePlugin/TestNetscapePlugin.cpp: (webkit_test_plugin_new_instance):
11:10 PM Changeset in webkit [45428] by weinig@apple.com
  • 2 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Sam Weinig <sam@webkit.org>

Reviewed by Geoffrey Garen.

Converted some more arithmetic ops to put { tag, payload } in
{ regT1, regT0 }.

  • jit/JITArithmetic.cpp: (JSC::JIT::emit_op_mul): (JSC::JIT::emitSlow_op_mul):
11:07 PM Changeset in webkit [45427] by adele@apple.com
  • 2 edits in trunk/WebKit/mac

2009-06-30 Adele Peterson <adele@apple.com>

Reviewed by Dan Bernstein.

Fix for <rdar://problem/7014389> REGRESSION(4-TOT): Hyperlinks have no tooltips in Mail unless you first click in the message body

Updated these new methods (added as part of the viewless WebKit effort) that call through to WebHTMLView to use _selectedOrMainFrame,
instead of just selectedFrame. When the selection changes, I don't think there is a situation where there's no selected frame, but
it seems better to keep these two uses the same, since if there is a case, this will be more like the old behavior, before there was
a version of _selectionChanged in WebView.

  • WebView/WebView.mm: (-[WebView _setToolTip:]): (-[WebView _selectionChanged]):
10:58 PM Changeset in webkit [45426] by xan@webkit.org
  • 2 edits in trunk/LayoutTests

2009-06-30 Xan Lopez <xlopez@igalia.com>

Disable test using eventSender.

  • platform/gtk/Skipped:
10:44 PM Changeset in webkit [45425] by xan@webkit.org
  • 2 edits in trunk/LayoutTests

2009-06-30 Xan Lopez <xlopez@igalia.com>

Disable new tests until we enable the accessibility controller.

  • platform/gtk/Skipped:
10:28 PM Changeset in webkit [45424] by ggaren@apple.com
  • 3 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Converted some more arithmetic ops to put { tag, payload } in
{ regT1, regT0 }, and added a case for subtract constant.


SunSpider says no change. v8 says 0.3% slower.

  • jit/JIT.h:
  • jit/JITArithmetic.cpp: (JSC::JIT::emit_op_add): (JSC::JIT::emitAdd32Constant): (JSC::JIT::emitSlow_op_add): (JSC::JIT::emit_op_sub): (JSC::JIT::emitSub32Constant): (JSC::JIT::emitSlow_op_sub):
10:19 PM Changeset in webkit [45423] by mrowe@apple.com
  • 2 edits in trunk/WebCore

Land some code that has a hope of compiling.

  • platform/graphics/cg/ImageSourceCG.cpp:

(WebCore::imageSourceOptions):

9:55 PM Changeset in webkit [45422] by barraclough@apple.com
  • 5 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Gavin Barraclough <barraclough@apple.com>

Reviewed by Sam Weinig.

Remove more uses of addressFor(), load double constants directly from
the constantpool in the CodeBlock, rather than from the register file.

  • jit/JITArithmetic.cpp: (JSC::JIT::emitAdd32Constant): (JSC::JIT::emitBinaryDoubleOp):
9:37 PM Changeset in webkit [45421] by Stephanie Lewis
  • 2 edits in trunk/WebCore

2009-06-30 Stephanie Lewis <Stephanie Lewis>

Reviewed by Simon Fraser.

Flip back on block caching. Throwing away block data, while
a perceived memory win, is a performance hit in cases where we
are repainting large images (i.e. backgrounds) frequently
(i.e. a flash video playing on top).
<rdar://problem/6933515> REGRESSION(L-SL): Large JPEG images are
decoded on drawing, slowing down painting of sites that frequently
repaint e.g. because of Flash (pandora.com, Starcraft 2)

  • platform/graphics/cg/ImageSourceCG.cpp: (WebCore::imageSourceOptions):
8:50 PM Changeset in webkit [45420] by ggaren@apple.com
  • 5 edits in branches/nitro-extreme

JavaScriptCore:

2009-06-30 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.


Fixed a bug in postfix ops, where we would treat x = x++ and x = x--
as a no-op, even if x were not an int, and the ++/-- could have side-effects.

  • jit/JITArithmetic.cpp: (JSC::JIT::emit_op_post_inc): (JSC::JIT::emitSlow_op_post_inc): (JSC::JIT::emit_op_post_dec): (JSC::JIT::emitSlow_op_post_dec):

LayoutTests:

2009-06-30 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.


Added a test for x=x++ and x=x-- where the ++ / -- have side-effects.

  • fast/js/postfix-syntax-expected.txt:
  • fast/js/resources/postfix-syntax.js: (o.valueOf):
8:24 PM Changeset in webkit [45419] by mjs@apple.com
  • 11 edits
    1 move in trunk/WebCore

2009-06-30 Maciej Stachowiak <mjs@apple.com>

Reviewed by Sam Weinig.

  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • css/CSSStyleSelector.cpp: (WebCore::loadFullDefaultStyle):
  • css/html.css: Copied from css/html4.css.
  • css/html4.css: Removed.
  • css/themeWin.css:
  • platform/Theme.h:
  • platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::adjustMenuListButtonStyle):
  • rendering/RenderTheme.h:
7:53 PM Changeset in webkit [45418] by jmalonzo@webkit.org
  • 1 edit in trunk/WebKitTools/ChangeLog

Fix ChangeLog of r45415

7:40 PM Changeset in webkit [45417] by ggaren@apple.com
  • 1 edit in branches/nitro-extreme/JavaScriptCore/ChangeLog

Fixed a ChangeLog merge fail.

7:40 PM Changeset in webkit [45416] by ggaren@apple.com
  • 4 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Gavin Barraclough <barraclough@apple.com>

Reviewed by Sam Weinig.

Start removing cases of addressFor().

  • jit/JIT.h:
  • jit/JITArithmetic.cpp: (JSC::JIT::emitAdd32Constant): (JSC::JIT::emitBinaryDoubleOp): (JSC::JIT::emit_op_div):
  • jit/JITInlineMethods.h: (JSC::JIT::emitLoadDouble): (JSC::JIT::emitLoadInt32ToDouble): (JSC::JIT::emitStoreDouble):
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_jfalse): (JSC::JIT::emit_op_jtrue):
7:27 PM Changeset in webkit [45415] by jmalonzo@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-30 Jan Michael Alonzo <jmalonzo@webkit.org>

Reviewed by Jan Alonzo.

[GTK] GtkLauncher depends on gtk+2-2.15 because of gtk_orientable_set_orientation()
https://bugs.webkit.org/show_bug.cgi?id=26835

  • GtkLauncher/main.c: (create_toolbar):
7:16 PM Changeset in webkit [45414] by jmalonzo@webkit.org
  • 3 edits in trunk/WebCore

2009-06-30 Zan Dobersek <zandobersek@gmail.com>

Reviewed by Gustavo Noronha.

[GTK] Drag and drop support
https://bugs.webkit.org/show_bug.cgi?id=23642

Define DragImageRef as GdkPixbuf and implement essential
functions which manipulate drag images.

  • platform/DragImage.h:
  • platform/gtk/DragImageGtk.cpp: (WebCore::dragImageSize): (WebCore::deleteDragImage): (WebCore::scaleDragImage): (WebCore::createDragImageFromImage):
7:15 PM Changeset in webkit [45413] by jmalonzo@webkit.org
  • 2 edits in trunk/WebCore

2009-06-30 Maxime Simon <Maxime Simon>

Reviewed by Eric Seidel.

StorageNamespace.cpp build issue
https://bugs.webkit.org/show_bug.cgi?id=26859

Moved #endif ENABLE(DOM_STORAGE) position
so that the build doesn't fail.
The namespace WebCore was started after the #if ENABLE(DOM_STORAGE)
but closed after the #endif.

  • storage/StorageNamespace.cpp:
6:01 PM Changeset in webkit [45412] by barraclough@apple.com
  • 5 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Gavin Barraclough <barraclough@apple.com>

Reviewed by Sam Weinig.

Start removing cases of addressFor().

  • jit/JIT.h:
  • jit/JITArithmetic.cpp: (JSC::JIT::emitAdd32Constant): (JSC::JIT::emitBinaryDoubleOp): (JSC::JIT::emit_op_div):
  • jit/JITInlineMethods.h: (JSC::JIT::emitLoadDouble): (JSC::JIT::emitLoadInt32ToDouble): (JSC::JIT::emitStoreDouble):
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_jfalse): (JSC::JIT::emit_op_jtrue):
5:40 PM Changeset in webkit [45411] by Simon Fraser
  • 13 edits in trunk/LayoutTests

2009-06-30 Simon Fraser <Simon Fraser>

Rubber-stamped by Dan Bernstein.

Update compositing pixel results now that DRT dumps them correctly.

  • compositing/overflow/overflow-scroll.html: Fixed typo in this testcase.
  • platform/mac/compositing/overflow/ancestor-overflow-expected.checksum:
  • platform/mac/compositing/overflow/ancestor-overflow-expected.png:
  • platform/mac/compositing/overflow/overflow-positioning-expected.checksum:
  • platform/mac/compositing/overflow/overflow-positioning-expected.png:
  • platform/mac/compositing/overflow/overflow-scroll-expected.txt:
  • platform/mac/compositing/overflow/parent-overflow-expected.checksum:
  • platform/mac/compositing/overflow/parent-overflow-expected.png:
  • platform/mac/compositing/repaint/content-into-overflow-expected.checksum:
  • platform/mac/compositing/repaint/content-into-overflow-expected.png:
  • platform/mac/compositing/repaint/overflow-into-content-expected.checksum:
  • platform/mac/compositing/repaint/overflow-into-content-expected.png:
5:40 PM Changeset in webkit [45410] by Simon Fraser
  • 2 edits in trunk/WebKitTools

2009-06-30 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Fix drawing of view background in pixel snapshots when using compositing.
We still need to call -displayIfNeeded to ensure that the NSView drawing
has happened.

  • DumpRenderTree/mac/PixelDumpSupportMac.mm: (createBitmapContextFromWebView):
4:29 PM Changeset in webkit [45409] by ggaren@apple.com
  • 4 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Geoffrey Garen <ggaren@apple.com>

Rolled back in my last patch with regression fixed.

  • jit/JIT.cpp: (JSC::JIT::privateCompileSlowCases):
  • jit/JIT.h:
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_loop_if_less): (JSC::JIT::emit_op_loop_if_lesseq): (JSC::JIT::emit_op_resolve_global): (JSC::JIT::emitSlow_op_resolve_global): (JSC::JIT::emit_op_eq): (JSC::JIT::emitSlow_op_eq): (JSC::JIT::emit_op_neq): (JSC::JIT::emitSlow_op_neq):
4:09 PM Changeset in webkit [45408] by eric@webkit.org
  • 2 edits in trunk/LayoutTests

2009-06-30 Eric Seidel <eric@webkit.org>

No review, reverting r45396. (George Staikos agrees the change was wrong.)
http://trac.webkit.org/changeset/45396

  • fast/css/getComputedStyle/computed-style-font-family-expected.txt:
4:01 PM Changeset in webkit [45407] by eric.carlson@apple.com
  • 3 edits in trunk/WebCore

2009-06-30 Eric Carlson <eric.carlson@apple.com>

Reviewed by Oliver Hunt.

<rdar://problem/7020825> HTMLMediaElement should not assume seeking is only possible in
buffered time ranges

  • html/HTMLMediaElement.cpp:

Don't ASSERT if the network state goes to Idle when when the ready state is
HaveEnoughData or higher, it is perfectly legal.

(WebCore::HTMLMediaElement::setReadyState):

Don't clear m_seeking after posting a 'seeking' event.

  • platform/graphics/mac/MediaPlayerPrivateQTKit.mm: (WebCore::MediaPlayerPrivate::seek):

Do nothing when asked to seek to the same time we are already seeking to. Check requested
seek time against maxTimeSeekable, not maxTimeLoaded.

(WebCore::MediaPlayerPrivate::doSeek):

Don't bother stopping a movie that isn't playing. Minor cleanup to make the code more readable.

(WebCore::MediaPlayerPrivate::seekTimerFired):

Check requested seek time against maxTimeSeekable, not maxTimeLoaded.

(WebCore::MediaPlayerPrivate::updateStates):

A streaming movie has as much data as it needs once it reaches "playable", so
set the ready state to HaveFutureData. A movie with metadata doesn't drop back
to "have nothing" when seeking. A streaming movie doesn't use the network when paused.

(WebCore::MediaPlayerPrivate::timeChanged):

It may not be possible to seek to a specific time in a streamed movie but when seeking
in a streaming movie QuickTime sets the time to closest time possible and posts a
timechanged notification, so update m_seekTo so we can detect when the seek completes.

3:43 PM Changeset in webkit [45406] by ggaren@apple.com
  • 4 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Geoffrey Garen <ggaren@apple.com>

Rolled out my last patch because it was a 2% SunSpider regression.

  • jit/JIT.cpp: (JSC::JIT::privateCompileSlowCases):
  • jit/JIT.h:
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_loop_if_less): (JSC::JIT::emit_op_loop_if_lesseq): (JSC::JIT::emit_op_resolve_global): (JSC::JIT::emit_op_eq): (JSC::JIT::emitSlow_op_eq): (JSC::JIT::emit_op_neq): (JSC::JIT::emitSlow_op_neq):
3:43 PM Changeset in webkit [45405] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-30 Eric Seidel <eric@webkit.org>

Typo fix only, no review.

Fix typo causing failure during land-diff

  • Scripts/bugzilla-tool:
3:27 PM Changeset in webkit [45404] by ggaren@apple.com
  • 4 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Geoffrey Garen <ggaren@apple.com>

Reviewed by Gavin "Sam Weinig" Barraclough.


Standardized the rest of our opcodes to put { tag, payload } in
{ regT1, regT0 } where possible.

  • jit/JIT.cpp: (JSC::JIT::privateCompileSlowCases):
  • jit/JIT.h:
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_loop_if_less): (JSC::JIT::emit_op_loop_if_lesseq): (JSC::JIT::emit_op_resolve_global): (JSC::JIT::emitSlow_op_resolve_global): (JSC::JIT::emit_op_eq): (JSC::JIT::emitSlow_op_eq): (JSC::JIT::emit_op_neq): (JSC::JIT::emitSlow_op_neq):
3:06 PM Changeset in webkit [45403] by sfalken@apple.com
  • 2 edits in trunk/WebCore

https://bugs.webkit.org/show_bug.cgi?id=26860

Reviewed by Sam Weinig.

Blacklist Yahoo Application State plug-in for versions prior to 1.0.0.6.
Earlier versions cause corruption crashes.

  • plugins/win/PluginPackageWin.cpp: (WebCore::PluginPackage::isPluginBlacklisted):
2:57 PM Changeset in webkit [45402] by dino@apple.com
  • 9 edits in trunk/WebCore

2009-06-30 Dean Jackson <dino@apple.com>

Reviewed by Simon Fraser.

<rdar://problem/7005207> <video> in canvas broken with ACCEL_COMPOSITING

Fix drawImage of video in CanvasRenderingContext2D when
accelerated compositing is enabled. This is done by
adding a new paint method to HTMLVideoElement that
is only called from canvas, which will create the software
renderer if necessary, but otherwise calls the regular
paint method. Meanwhile, add logic to the software video
renderer so that it can be created without calling repaint
every time it sees a new frame.

  • html/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::drawImage):
  • html/HTMLVideoElement.cpp: (WebCore::HTMLVideoElement::paintCurrentFrameInContext):
  • html/HTMLVideoElement.h:
  • platform/graphics/MediaPlayer.cpp: (WebCore::MediaPlayer::paintCurrentFrameInContext):
  • platform/graphics/MediaPlayer.h:
  • platform/graphics/MediaPlayerPrivate.h: (WebCore::MediaPlayerPrivateInterface::paintCurrentFrameInContext):
  • platform/graphics/mac/MediaPlayerPrivateQTKit.h:
  • platform/graphics/mac/MediaPlayerPrivateQTKit.mm: (WebCore::MediaPlayerPrivate::createQTMovie): (WebCore::MediaPlayerPrivate::createQTVideoRenderer): (WebCore::MediaPlayerPrivate::currentRenderingMode): (WebCore::MediaPlayerPrivate::setUpVideoRendering): (WebCore::MediaPlayerPrivate::tearDownVideoRendering): (WebCore::MediaPlayerPrivate::paintCurrentFrameInContext):
2:47 PM Changeset in webkit [45401] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-30 Simon Fraser <Simon Fraser>

Reviewed by Mark Rowe.

createBitmapContextFromWebView() incorrectly used #ifdef BUILDING_ON_LEOPARD,
and thus failed on SnowLeopard.

  • DumpRenderTree/mac/PixelDumpSupportMac.mm: (createBitmapContextFromWebView):
2:39 PM Changeset in webkit [45400] by barraclough@apple.com
  • 7 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Gavin Barraclough <barraclough@apple.com>

Reviewed by Geoffrey Garen.

Replace calls to store32(tagFor()) and store32(payloadFor())
with emitStoreInt32(), emitStoreBool(), and emitStoreCell().

  • jit/JIT.h:
  • jit/JITArithmetic.cpp: (JSC::JIT::emit_op_negate): (JSC::JIT::emit_op_lshift): (JSC::JIT::emit_op_rshift): (JSC::JIT::emit_op_bitand): (JSC::JIT::emitBitAnd32Constant): (JSC::JIT::emit_op_bitor): (JSC::JIT::emitBitOr32Constant): (JSC::JIT::emit_op_bitxor): (JSC::JIT::emitBitXor32Constant): (JSC::JIT::emit_op_bitnot): (JSC::JIT::emit_op_post_inc): (JSC::JIT::emit_op_post_dec): (JSC::JIT::emit_op_pre_inc): (JSC::JIT::emit_op_pre_dec): (JSC::JIT::emit_op_add): (JSC::JIT::emitAdd32Constant): (JSC::JIT::emit_op_sub): (JSC::JIT::emitSub32ConstantLeft): (JSC::JIT::emitSub32ConstantRight): (JSC::JIT::emit_op_mul): (JSC::JIT::emitSlow_op_mul): (JSC::JIT::emit_op_div): (JSC::JIT::emit_op_mod):
  • jit/JITCall.cpp: (JSC::JIT::emit_op_load_varargs):
  • jit/JITInlineMethods.h: (JSC::JIT::emitStoreInt32): (JSC::JIT::emitStoreCell): (JSC::JIT::emitStoreBool): (JSC::JIT::emitStore):
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_instanceof): (JSC::JIT::emit_op_not): (JSC::JIT::emit_op_eq): (JSC::JIT::emitSlow_op_eq): (JSC::JIT::emit_op_neq): (JSC::JIT::emitSlow_op_neq): (JSC::JIT::compileOpStrictEq): (JSC::JIT::emit_op_eq_null): (JSC::JIT::emit_op_neq_null):
  • jit/JITStubCall.h: (JSC::JITStubCall::call):
2:38 PM Changeset in webkit [45399] by hyatt@apple.com
  • 1 edit in trunk/WebCore/ChangeLog

Remove conflict markers from ChangeLog.

2:37 PM Changeset in webkit [45398] by Simon Fraser
  • 2 edits in trunk/WebKitTools

2009-06-30 Simon Fraser <Simon Fraser>

Reviewed by Mark Rowe.

createBitmapContextFromWebView() incorrectly used #ifdef BUILDING_ON_LEOPARD,
and thus failed on SnowLeopard.

  • DumpRenderTree/mac/PixelDumpSupportMac.mm: (createBitmapContextFromWebView):
2:37 PM Changeset in webkit [45397] by hyatt@apple.com
  • 8 edits
    2 adds in trunk

WebCore:

<<<<<<< .mine

LayoutTests:

2009-06-30 David Hyatt <hyatt@apple.com>

Reviewed by Beth Dakin.

Add layout test for https://bugs.webkit.org/show_bug.cgi?id=26858.

  • fast/dom/HTMLDataGridElement/DataGridColumns-dom-expected.txt: Added.
  • fast/dom/HTMLDataGridElement/DataGridColumns-dom.html: Added.
2:27 PM Changeset in webkit [45396] by Simon Hausmann
  • 2 edits in trunk/LayoutTests

2009-06-30 Antonio Gomes <antonio.gomes@openbossa.org>

Reviewed by Simon Hausmann.

Updated LayoutTests/fast/css/getComputedStyle/computed-style-font-family-expected.txt
according to the default font size value set in WebKit/qt/Api/qwebsettings.cpp (in
this case '14').

  • fast/css/getComputedStyle/computed-style-font-family-expected.txt:
2:27 PM Changeset in webkit [45395] by Simon Hausmann
  • 2 edits in trunk/LayoutTests

2009-06-30 Antonio Gomes <antonio.gomes@openbossa.org>

Reviewed by Simon Hausmann.

Updated LayoutTests/platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt
to some newly cross-platform CSS properties.

  • platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
2:07 PM Changeset in webkit [45394] by levin@chromium.org
  • 3 edits in trunk/WebCore

2009-06-30 Jeremy Orlow (jorlow@chromium.org)

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=26852

Fix some minor build issues in the v8 bindings.

  • bindings/v8/custom/V8StorageCustom.cpp: (WebCore::V8Custom::v8StorageNamedPropertyEnumerator): (WebCore::storageGetter): (WebCore::storageSetter): (WebCore::storageDeleter):
  • storage/StorageArea.cpp:
1:16 PM Changeset in webkit [45393] by mrowe@apple.com
  • 4 edits in branches/WWDC-2009-branch

Versioning.

1:16 PM Changeset in webkit [45392] by mrowe@apple.com
  • 1 copy in tags/Safari-6530.19.2

New tag.

1:10 PM Changeset in webkit [45391] by agl@chromium.org
  • 3 edits in trunk/WebCore

2009-06-30 Adam Langley <agl@google.com>

Reviewed by Eric Seidel.

Chromium Linux: use different fonts for each script run.

https://bugs.webkit.org/show_bug.cgi?id=26853

Previously, when rendering complex text, we picked a single font which
could render all the glyphs needed for the run. However, this meant
that sometimes lines were rendered with, for example, [LATIN, THAI,
LATIN] and we could end up with a different font for the Latin parts
than for lines without Thai in them.

With this patch, we pick a font for each script run.

This change is covered by existing layout tests.

1:02 PM Changeset in webkit [45390] by mrowe@apple.com
  • 1 edit in branches/WWDC-2009-branch/WebKit/mac/ChangeLog

Fix up the ChangeLog.

1:02 PM Changeset in webkit [45389] by levin@chromium.org
  • 2 edits in trunk/LayoutTests

2009-06-30 David Levin <levin@chromium.org>

Reviewed by Oliver Hunt.

Make media/video-document-types pass again. It broke when the
call to waitUntilDone was accidently made asynchronous in r45378.

  • media/video-document-types.html:
12:57 PM Changeset in webkit [45388] by mrowe@apple.com
  • 2 edits in branches/WWDC-2009-branch/WebKit/mac

Merge r45386.

12:53 PM Changeset in webkit [45387] by Simon Fraser
  • 9 edits
    2 adds in trunk

2009-06-30 Simon Fraser <Simon Fraser>

Reviewed by Dave Hyatt, Dan Bernstein.

<rdar://problem/6191676> Redraw issues scrolling overflow:scroll div with compositing

There are two parts to this fix. First, if a compositing layer has overflow clipping
or a mask, then the compositing layer does not need to be sized to encompass all
non-composited children.

Second, when scrolling, we have to back up to the compositing ancestor and have
it reposition descendant compositing layers, because overflow doesn't follow
the z-order tree.

Test: compositing/overflow/overflow-scroll.html

  • page/FrameView.cpp: (WebCore::FrameView::layout): Pass the UpdateCompositingLayers flag when updating layers after layout, so that we can reposition compositing layers if we're not about to do a layer rebuild.
  • rendering/RenderLayer.cpp: (WebCore::RenderLayer::updateLayerPositions): Only update compositing layers if the flag is set.

(WebCore::RenderLayer::scrollToOffset):
Do compositing layer updates from the compositing ancestor in one fell swoop.

  • rendering/RenderLayer.h: Replace the unused FullUpdate flag with one that allows us to specify whether compositing layers should be updated.
  • rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::updateAfterLayout):
  • rendering/RenderLayerBacking.h: New param that we can pass to updateCompositingDescendantGeometry to control whether the update goes deep.
  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::calculateCompositedBounds): We can return earlier if this is not a self-painting layer. If the layer has overflow clip or a mask, then the composited bounds are just the local bounds, excluding descendants.

(WebCore::RenderLayerCompositor::updateCompositingDescendantGeometry):

  • rendering/RenderLayerCompositor.h: Renamed from updateCompositingChildrenGeometry, and added a flag that allows us to do a deep update.
12:52 PM Changeset in webkit [45386] by mrowe@apple.com
  • 2 edits in trunk/WebKit/mac

<rdar://problem/7006959> 'Save as…’ does not work in Mail

Reviewed by Timothy Hatcher.

  • WebView/WebFrameView.mm:

(-[WebFrameView initWithFrame:]): Call _needMailThreadWorkaroundIfCalledOffMainThread rather than
needMailThreadWorkaround, as the latter is intended to be used at the point which a workaround would
be applied and thus contains a main thread check. Since -initWithFrame: is called on the main thread,
this was causing us to not switch from exception-throwing to logging for the thread violation behavior.

11:27 AM Changeset in webkit [45385] by ap@webkit.org
  • 3 edits
    2 adds in trunk

Reviewed by Dan Bernstein.

https://bugs.webkit.org/show_bug.cgi?id=26764
Uncaught NOT_FOUND_ERR: DOMException 8 loading empty text file

Test: fast/parser/empty-text-resource.html

  • loader/TextDocument.cpp: (WebCore::TextTokenizer::finish): Create document tree if it hasn't been created yet.
11:23 AM Changeset in webkit [45384] by bweinstein@apple.com
  • 7 edits in trunk

2009-06-30 Brian Weinstein <bweinstein@apple.com>

Reviewed by Adam Roben.

Renamed scrollbarUnderPoint to scrollbarAtPoint.

  • page/EventHandler.cpp: (WebCore::EventHandler::hitTestResultAtPoint): (WebCore::EventHandler::handleMousePressEvent): (WebCore::EventHandler::handleMouseMoveEvent):
  • platform/ScrollView.cpp: (WebCore::ScrollView::scrollbarAtPoint):
  • platform/ScrollView.h:
  • platform/chromium/PopupMenuChromium.cpp: (WebCore::PopupListBox::handleMouseDownEvent): (WebCore::PopupListBox::handleMouseMoveEvent):

2009-06-30 Brian Weinstein <bweinstein@apple.com>

Reviewed by Adam Roben.


Renamed scrollbarUnderPoint to scrollbarAtPoint to follow conventions.

  • Api/qwebpage.cpp: (QWebPage::swallowContextMenuEvent):
11:05 AM Changeset in webkit [45383] by oliver@apple.com
  • 3 edits in trunk/WebCore

<rdar://problem/6960286> CrashTracer: [REGRESSION] 1120 crashes in Safari at com.apple.WebCore • WebCore::JSLazyEventListener::parseCode const + 62

Reviewed by Geoff Garen

<select> elements and other elements the produce popups can keep their popups
live across a page load. If this occurs and the <select> element has an
onchange handler it is possible to get into a state where we try to execute
JS on a page that no longer has an execution context.

10:42 AM Changeset in webkit [45382] by ggaren@apple.com
  • 4 edits in branches/nitro-extreme/JavaScriptCore

2009-06-30 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.


Standardized the rest of the property access instructions to put { tag,
payload } in { regT1, regT0 }.

Small v8 speedup, 0.2% SunSpider slowdown.

  • jit/JIT.h:
  • jit/JITInlineMethods.h: (JSC::JIT::emitLoad): (JSC::JIT::emitLoad2):
  • jit/JITPropertyAccess.cpp: (JSC::JIT::emit_op_get_by_val): (JSC::JIT::emitSlow_op_get_by_val): (JSC::JIT::emit_op_put_by_val): (JSC::JIT::emitSlow_op_put_by_val): (JSC::JIT::emit_op_put_by_id): (JSC::JIT::emitSlow_op_put_by_id): (JSC::JIT::patchPutByIdReplace):
10:32 AM Changeset in webkit [45381] by levin@chromium.org
  • 17 edits
    8 adds in trunk

WebCore:

2009-06-30 Drew Wilson <atwilson@google.com>

Reviewed by David Levin.

<https://bugs.webkit.org/show_bug.cgi?id=25435>

Added support for sending MessagePorts to/from Workers via postMessage().

  • bindings/js/JSWorkerContextCustom.cpp: (WebCore::JSWorkerContext::messageChannel): Exposes MessageChannel constructor WorkerContext.
  • bindings/js/JSWorkerCustom.cpp:
  • bindings/v8/custom/V8MessageChannelConstructor.cpp: (WebCore::CALLBACK_FUNC_DECL): Now correctly handles being instantiated from within a Worker.
  • platform/CrossThreadCopier.h: (WebCore::GenericWorkerTaskTraits<PassOwnPtr>): Added support for passing PassOwnPtr as argument to GenericWorkerTask
  • workers/GenericWorkerTask.h: (WebCore::):
    • workers/Worker.cpp: (WebCore::Worker::postMessage): Now handles disentangling/entangling MessagePorts sent to/from via postMessage. (WebCore::Worker::dispatchMessage):
    • workers/Worker.h:
    • workers/Worker.idl: Added an optional MessagePort argument to postMessage()
    • workers/WorkerContext.cpp: (WebCore::WorkerContext::hasPendingActivity): Workers now report pending activity whenever there are remotely entangled ports. (WebCore::WorkerContext::postMessage): Now handles disentangling/entangling MessagePorts sent to/from via postMessage. (WebCore::WorkerContext::dispatchMessage):
    • workers/WorkerContext.h:
    • workers/WorkerContext.idl: Added an optional MessagePort argument to postMessage()
    • workers/WorkerContextProxy.h:
    • workers/WorkerMessagingProxy.cpp: Updated messaging infrastructure to transport an optional MessagePort/MessagePortChannel. (WebCore::MessageWorkerContextTask::create): (WebCore::MessageWorkerContextTask::MessageWorkerContextTask): (WebCore::MessageWorkerContextTask::performTask): (WebCore::MessageWorkerTask::create): (WebCore::MessageWorkerTask::MessageWorkerTask): (WebCore::MessageWorkerTask::performTask): (WebCore::WorkerMessagingProxy::postMessageToWorkerObject): (WebCore::WorkerMessagingProxy::postMessageToWorkerContext):
    • workers/WorkerMessagingProxy.h: Added additional postMessage() API that accepts a MessagePort
    • workers/WorkerObjectProxy.h: Added additional postMessage() API that accepts a MessagePort

LayoutTests:

2009-06-30 Drew Wilson <atwilson@google.com>

Reviewed by David Levin.

<https://bugs.webkit.org/show_bug.cgi?id=25435>

Added tests for sending MessagePorts to/from workers.

  • fast/workers/resources/worker-cloneport.js: Added. (onmessage):
  • fast/workers/resources/worker-messageport.js: Added. (onmessage): (pingBack):
  • fast/workers/worker-cloneport-expected.txt: Added.
  • fast/workers/worker-cloneport.html-disabled: Added. Tests for cloning a port while messages are sent from another thread.
  • fast/workers/worker-messageport-expected.txt: Added.
  • fast/workers/worker-messageport.html-disabled: Added. General tests for sending messages to workers via message ports.
  • fast/workers/worker-messageport-gc-expected.txt: Added.
  • fast/workers/worker-messageport-gc.html-disabled: Added. Tests to ensure Workers don't shut down when reachable only via MessagePorts.
10:07 AM Changeset in webkit [45380] by treat@webkit.org
  • 6 edits
    3 adds in trunk/WebKit/qt

2009-06-30 Joe Ligman <joseph.ligman@nokia.com>

Reviewed by Adam Treat.

Bug 26422: [Qt] QWebPagePrivate::frameAt calculates wrong frame

Added a public method QWebPage::frameAt
Removed QWebPagePrivate::frameAt, which calcuated the wrong frame
Modified QWebPage::swallowContextMenuEvent to use the new frameAt method
New test case for frameAt added to tst_qwebpage.cpp

9:57 AM Changeset in webkit [45379] by agl@chromium.org
  • 2 edits
    1 add in trunk/WebCore

2009-06-30 Adam Langley <agl@google.com>

Reviewed by Eric Seidel.

Chromium: Add complex text support on Linux.

https://bugs.webkit.org/show_bug.cgi?id=25068

This patch adds complex text support on Linux using Harfbuzz. It's not
the fastest code possible: some caching of font tables will certainly
be required. However, it's probably the simplest code that works.

This will require checking in new baselines in the Chromium tree for
those layout tests which now pass.

9:30 AM Changeset in webkit [45378] by eric.carlson@apple.com
  • 4 edits in trunk

2009-06-30 Eric Carlson <eric.carlson@apple.com>

Reviewed by Simon Fraser.

<rdar://problem/7019799> Slow loading MediaDocument can fall back to plug-in unnecessarily

  • platform/graphics/mac/MediaPlayerPrivateQTKit.mm: (WebCore::MediaPlayerPrivate::updateStates):

Always fall back to a plug-in if m_hasUnsupportedTracks is set.

(WebCore::MediaPlayerPrivate::disableUnsupportedTracks):

Set m_hasUnsupportedTracks if we disable a track.

2009-06-30 Eric Carlson <eric.carlson@apple.com>

Reviewed by Simon Fraser.


<rdar://problem/7019799> Slow loading MediaDocument can fall back to plug-in unnecessarily


Don't test iframe immediately, switch over from <video> to <embed> may not have
happend when the document 'load' event fires.

  • media/video-document-types.html:
9:25 AM Changeset in webkit [45377] by Nate Chapin
  • 2 edits in trunk/WebCore

2009-06-30 Nate Chapin <Nate Chapin>

Reviewed by Dimitri Glazkov.

Fix inverted if/else that's causing a layout test in src.chromium.org to fail.

https://bugs.webkit.org/show_bug.cgi?id=26820

8:49 AM Changeset in webkit [45376] by mitz@apple.com
  • 8 edits in trunk

WebCore:

Reviewed by Dave Hyatt.

  • fix <rdar://problem/6946611> REGRESSION (r30673): Shade10:" D_Snap to Grid" window is clipping

Added an app-specific quirk to revert the behavior of <link> elements
to the way it was before r30673, namely that if the rel attribute
is not "stylesheet" but the type attribute contains "text/css", the
link behaves as a stylesheet link.

  • WebCore.base.exp: Exported setTreatsAnyTextCSSLinkAsStylesheet().
  • html/HTMLLinkElement.cpp: (WebCore::HTMLLinkElement::process): Check

Settings::treatsAnyTextCSSLinkAsStylesheet() and if true, allow a
style sheet link if the type contains "text/css".

  • page/Settings.cpp: (WebCore::Settings::Settings):

Initialize m_treatsAnyTextCSSLinkAsStylesheet.

(WebCore::Settings::setTreatsAnyTextCSSLinkAsStylesheet): Added.

  • page/Settings.h: (WebCore::Settings::treatsAnyTextCSSLinkAsStylesheet): Added.

WebKit/mac:

Reviewed by Dave Hyatt.

  • fix <rdar://problem/6946611> REGRESSION (r30673): Shade10:" D_Snap to Grid" window is clipping
  • Misc/WebKitVersionChecks.h: Added

WEBKIT_FIRST_VERSION_WITHOUT_SHADE10_QUIRK

  • WebView/WebView.mm: (-[WebView _needsLinkElementTextCSSQuirk]): Added. Returns YES if the

client app is a version of Shade 10 earlier than 10.6 and it was
linked against a version of WebKit earlier than 531.2.

(-[WebView _preferencesChangedNotification:]): Added a call to

Settings::setTreatsAnyTextCSSLinkAsStylesheet().

7:14 AM Changeset in webkit [45375] by Simon Hausmann
  • 4 edits in trunk/WebKit/qt

2009-06-30 Jakub Wieczorek <faw217@gmail.com>

Reviewed by Simon Hausmann.

Add QWebFrame::baseUrl() function that exposes the base URL of a frame.
Autotests included.

  • Api/qwebframe.cpp: (QWebFrame::baseUrl):
  • Api/qwebframe.h:
  • tests/qwebframe/tst_qwebframe.cpp:
7:05 AM Changeset in webkit [45374] by staikos@webkit.org
  • 2 edits in trunk/JavaScriptCore

2009-06-30 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

Override operator new/delete with const std::nothrow_t& as the second
argument.

6:54 AM QtWebKitContrib edited by treat@kde.org
(diff)
6:51 AM QtWebKitContrib edited by treat@kde.org
(diff)
5:15 AM Changeset in webkit [45373] by xan@webkit.org
  • 2 edits in trunk/WebCore

2009-06-30 Adrien Nader <camaradetux@gmail.com>

Reviewed by Xan Lopez.

Fix typo in GNUMakefile.am: it reads WebCOre instead of WebCore.

  • GNUmakefile.am:
5:10 AM Changeset in webkit [45372] by jmalonzo@webkit.org
  • 2 edits in trunk/WebCore

2009-06-30 Jan Michael Alonzo <jmalonzo@webkit.org>

Reviewed by Xan Lopez.

[Gtk] Turn on ENABLE_DATAGRID so we can run the layout tests.

  • GNUmakefile.am:
3:55 AM Changeset in webkit [45371] by xan@webkit.org
  • 2 edits in trunk/LayoutTests

2009-06-30 Xan Lopez <xlopez@igalia.com>

Skip new editing tests.

They are failing because we don't have a dumpEditingCallbacks
implementation.

  • platform/gtk/Skipped:
2:55 AM Changeset in webkit [45370] by ddkilzer@apple.com
  • 3 edits in trunk/JavaScriptCore

2009-06-30 Gabor Loki <loki@inf.u-szeged.hu>

Reviewed by Sam Weinig.

<https://bugs.webkit.org/show_bug.cgi?id=24986>

Remove unnecessary references to AssemblerBuffer.

  • interpreter/Interpreter.cpp:
  • interpreter/Interpreter.h:
2:33 AM Changeset in webkit [45369] by eric@webkit.org
  • 3 edits
    1 add in trunk/WebKitTools

2009-06-30 Eric Seidel <eric@webkit.org>

Reviewed by Maciej Stachowiak.

Include a built copy of BeautifulSoup 3.1.0.1 so that
bugzilla-tool users do not need to install it manually.
https://bugs.webkit.org/show_bug.cgi?id=26833

BeautifulSoup is BSD-licensed (thus WebKit compatible) and available from:
http://www.crummy.com/software/BeautifulSoup

  • Scripts/bugzilla-tool: fixed a typo in a log message.
  • Scripts/modules/BeautifulSoup.py: Added.
  • Scripts/modules/bugzilla.py:
2:03 AM Changeset in webkit [45368] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

2009-06-30 Eric Seidel <eric@webkit.org>

Reviewed by Simon Hausmann.

Fix our create_patch handling to not
hang when creating large patches.
https://bugs.webkit.org/show_bug.cgi?id=26834

We're now using StringIO to make an in-memory buffer for the patch
instead of piping from the patch command directly to the upload.
The previous hang was caused by calling wait() when the process had already
filed the stdout buffer.

  • Scripts/modules/scm.py:
12:52 AM Changeset in webkit [45367] by Simon Hausmann
  • 2 edits in trunk/WebCore

2009-06-30 Raju Kunnath <raju.kunnath@nokia.com>

Reviewed by Simon Hausmann.

<https://bugs.webkit.org/show_bug.cgi?id=26752>

[Qt] Windows release build issue with Qt4.5 due to -GL flag on msvc2005 and msvc2008.

  • WebCore.pro: Removed -GL compiler option for win32-msvc2005|win32-msvc2008.
12:48 AM Changeset in webkit [45366] by xan@webkit.org
  • 2 edits in trunk/WebCore

2009-06-30 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

Initialize member variables in the right order. Fixes compiler
warning.

  • platform/image-decoders/bmp/BMPImageReader.cpp: (WebCore::BMPImageReader::BMPImageReader):
12:24 AM Changeset in webkit [45365] by xan@webkit.org
  • 2 edits in trunk/WebCore

2009-06-29 Xan Lopez <xlopez@igalia.com>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=26831
Fix compiler warning in WorkerLoaderProxy.h

Forward declaration of a class within a class is not allowed,
since the compiler can't know if the declaration is legal at that
point. This gives the following compiler warning:

../../WebCore/workers/WorkerLoaderProxy.h:40: warning: declaration
"class WebCore::ScriptExecutionContext::Task" does not declare
anything

Include the full ScriptExecutionHeader header instead.

  • workers/WorkerLoaderProxy.h:

Jun 29, 2009:

11:43 PM Changeset in webkit [45364] by xan@webkit.org
  • 3 edits in trunk/WebKit/gtk

2009-06-29 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

Fix a couple of compiler warnings.

  • webkit/webkitwebnavigationaction.cpp:
  • webkit/webkitwebview.cpp: (webkit_web_view_real_move_cursor):
10:56 PM Changeset in webkit [45363] by xan@webkit.org
  • 2 edits in trunk/WebCore

2009-06-29 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

Remove unused function.

  • plugins/gtk/PluginPackageGtk.cpp:
10:12 PM Changeset in webkit [45362] by Simon Fraser
  • 4 edits in trunk/WebCore

2009-06-29 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

Change RenderLayer::updateLayerPositions() to use a bitmask instead of two
boolean arguments. FullUpdate is unused at present, but will be used soon.

  • page/FrameView.cpp: (WebCore::FrameView::layout):
  • rendering/RenderLayer.cpp: (WebCore::RenderLayer::updateLayerPositions): (WebCore::RenderLayer::scrollToOffset):
  • rendering/RenderLayer.h: (WebCore::RenderLayer::):
8:08 PM Changeset in webkit [45361] by weinig@apple.com
  • 2 edits in branches/nitro-extreme/JavaScriptCore

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Gavin Barraclough.

Various cleanups.

  • Use fpRegT* instead of X86::xmm*.
  • Use a switch statement in emitBinaryDoubleOp instead of a bunch of if/elses.
  • jit/JITArithmetic.cpp: (JSC::JIT::emitAdd32Constant): (JSC::JIT::emitBinaryDoubleOp): (JSC::JIT::emit_op_div):
5:09 PM Changeset in webkit [45360] by levin@chromium.org
  • 2 edits in trunk/JavaScriptCore

2009-06-29 David Levin <levin@chromium.org>

Reviewed by Oliver Hunt.

Still seeing occasional leaks from UString::sharedBuffer code
https://bugs.webkit.org/show_bug.cgi?id=26420

The problem is that the pointer to the memory allocation isn't visible
by "leaks" due to the lower bits being used as flags. The fix is to
make the pointer visible in memory (in debug only). The downside of
this fix that the memory allocated by sharedBuffer will still look like
a leak in non-debug builds when any flags are set.

  • wtf/PtrAndFlags.h: (WTF::PtrAndFlags::set):
4:44 PM Changeset in webkit [45359] by Nate Chapin
  • 2 edits in trunk/WebCore

2009-06-29 Nate Chapin <Nate Chapin>

Reviewed by Dimitri Glazkov.

Fix one more bad merge in V8Proxy.

https://bugs.webkit.org/show_bug.cgi?id=26819

4:21 PM Changeset in webkit [45358] by hyatt@apple.com
  • 2 edits in trunk/WebKit/win

2009-06-29 David Hyatt <hyatt@apple.com>

Fix Windows bustage. Missed two configurations for enabling DATAGRID.

  • WebKit.vcproj/WebKit.vcproj:
3:35 PM Changeset in webkit [45357] by weinig@apple.com
  • 6 edits
    2 deletes in trunk

JavaScriptCore:

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Mark Rowe.

Remove more unused scons support.

  • SConstruct: Removed.

WebCore:

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Mark Rowe.

Remove more unused scons support.

  • SConstruct: Removed.

WebKitTools:

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Mark Rowe.

Remove more unused scons support.

  • Scripts/build-jsc:
  • Scripts/build-webkit:
  • Scripts/webkitdirs.pm:
3:33 PM Changeset in webkit [45356] by oliver@apple.com
  • 5 edits in trunk

<rdar://problem/7016214> JSON.parse fails to parse valid JSON with most Unicode characters
<https://bugs.webkit.org/show_bug.cgi?id=26802>

Reviewed by Gavin Barraclough.

In the original JSON.parse patch unicode was handled correctly, however in some last
minute "clean up" I oversimplified isSafeStringCharacter. This patch corrects this bug.

2:38 PM Changeset in webkit [45355] by weinig@apple.com
  • 3 edits in trunk/WebCore

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Dave Hyatt.

Fix some incorrect create functions.

  • html/DataGridColumn.h: (WebCore::DataGridColumn::create):
  • html/DataGridColumnList.h: (WebCore::DataGridColumnList::create):
2:32 PM Changeset in webkit [45354] by Simon Hausmann
  • 2 edits in trunk/LayoutTests

2009-06-29 Antonio Gomes <antonio.gomes@openbossa.org>

Reviewed by Simon Hausmann.

Updated LayoutTests/platform/qt/fast/css/getComputedStyle/computed-style-expected.txt to some newly cross-platform CSS properties.

The file has not been updated for a while.

2:31 PM Changeset in webkit [45353] by weinig@apple.com
  • 15 edits
    2 adds in trunk

WebCore:

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Dave Hyatt.

Remove initialize method from DataGridDataSource and add
DOMDataGridDataSource.

  • GNUmakefile.am:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • WebCoreSources.bkl:
  • bindings/js/JSDataGridDataSource.cpp:
  • bindings/js/JSDataGridDataSource.h:
  • bindings/js/JSHTMLDataGridElementCustom.cpp: (WebCore::JSHTMLDataGridElement::setDataSource):
  • html/DOMDataGridDataSource.cpp: Added. (WebCore::DOMDataGridDataSource::DOMDataGridDataSource): (WebCore::DOMDataGridDataSource::~DOMDataGridDataSource):
  • html/DOMDataGridDataSource.h: Added. (WebCore::DOMDataGridDataSource::create): (WebCore::DOMDataGridDataSource::isDOMDataGridDataSource): (WebCore::asDOMDataGridDataSource):
  • html/DataGridDataSource.h: (WebCore::DataGridDataSource::isDOMDataGridDataSource): (WebCore::DataGridDataSource::isJSDataGridDataSource):
  • html/HTMLDataGridElement.cpp: (WebCore::HTMLDataGridElement::HTMLDataGridElement): (WebCore::HTMLDataGridElement::setDataSource): (WebCore::HTMLDataGridElement::dataSource):
  • html/HTMLDataGridElement.h:

LayoutTests:

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Dave Hyatt.

Update for the change in DataGridDataSource API.

  • fast/dom/HTMLDataGridElement/DataGridDataSource-basic-expected.txt:
  • fast/dom/HTMLDataGridElement/DataGridDataSource-basic.html:
1:58 PM Changeset in webkit [45352] by Nate Chapin
  • 3 edits in trunk/WebCore

2009-06-29 Nate Chapin <Nate Chapin>

Reviewed by Dimitri Glazkov.

Fix a couple of bad merge items from my previous V8Proxy patch.

https://bugs.webkit.org/show_bug.cgi?id=26813

1:42 PM Changeset in webkit [45351] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-26 Eric Seidel <eric@webkit.org>

Reviewed by David Levin.

Rename land-and-update to land-diff and make it awesome.
https://bugs.webkit.org/show_bug.cgi?id=26734

Renamed land-and-update to land-diff
Made the BUGID argument optional.
Added optional support for building and testing before landing.

land-diff [options] [BUGID] Lands the current working directory diff and updates the bug if provided.

Options:

-r REVIEWER, --reviewer=REVIEWER

Update ChangeLogs to say Reviewed by REVIEWER.

--no-close Leave bug open after landing.
--no-build Commit without building first, implies --no-test.
--no-test Commit without running run-webkit-tests.

  • Scripts/bugzilla-tool:
1:41 PM Changeset in webkit [45350] by cmarrin@apple.com
  • 5 edits in trunk

https://bugs.webkit.org/show_bug.cgi?id=26706

Fixed crash due to dereference of m_toStyle

1:36 PM Changeset in webkit [45349] by alice.liu@apple.com
  • 1 edit in trunk/WebCore/plugins/win/PluginMessageThrottlerWin.cpp

build fix. accidental omission of end paren

1:22 PM Changeset in webkit [45348] by eric.carlson@apple.com
  • 16 edits in trunk

2009-06-29 Eric Carlson <eric.carlson@apple.com>

Reviewed by Simon Fraser.

<rdar://problem/7014813> Ask media engine if a movie is streamed or downloaded.

  • WebCore.base.exp:

Export _wkQTMovieGetType

  • platform/graphics/MediaPlayer.cpp: (WebCore::MediaPlayer::hasSingleSecurityOrigin):

Move to keep with other non-callback functions.

(WebCore::MediaPlayer::movieLoadType):

New, returns the movie type.

  • platform/graphics/MediaPlayer.h:

Declare MovieLoadType enum and movieLoadType method.

  • platform/graphics/MediaPlayerPrivate.h: (WebCore::MediaPlayerPrivateInterface::movieLoadType):

Default implementation of movieLoadType

  • platform/graphics/mac/MediaPlayerPrivateQTKit.h:
  • platform/graphics/mac/MediaPlayerPrivateQTKit.mm: (WebCore::MediaPlayerPrivate::createQTMovie):

Don't base m_isStreaming on protocol, there are other types of streaming movies.

(WebCore::MediaPlayerPrivate::maxTimeBuffered):

Don't assume all streams are unbuffered.

(WebCore::MediaPlayerPrivate::updateStates):

Update m_isStreaming once we have metadata.

(WebCore::MediaPlayerPrivate::disableUnsupportedTracks):

Tracks that are disabled to begin with shouldn't be included in m_enabledTrackCount.

(WebCore::MediaPlayerPrivate::movieLoadType):

New, return movie type.

  • platform/mac/WebCoreSystemInterface.h:
  • platform/mac/WebCoreSystemInterface.mm:

Add wkQTMovieGetType.

2009-06-29 Eric Carlson <eric.carlson@apple.com>

Reviewed by Simon Fraser.

<rdar://problem/7014813> Ask media engine if a movie is streamed or downloaded.

  • WebCoreSupport/WebSystemInterface.m: (InitWebCoreSystemInterface):

Add QTMovieGetType.

2009-06-29 Eric Carlson <eric.carlson@apple.com>

Reviewed by Simon Fraser.

Update WebKitSystemInterface for <rdar://problem/7014813>

  • WebKitSystemInterface.h:
  • libWebKitSystemInterfaceLeopard.a:
  • libWebKitSystemInterfaceSnowLeopard.a:
  • libWebKitSystemInterfaceTiger.a:
1:15 PM Changeset in webkit [45347] by alice.liu@apple.com
  • 2 edits in trunk/WebCore

2009-06-29 Alice Liu <alice.liu@apple.com>

Fixed <rdar://problem/6930280> Reproducible crash at USA Today photo gallery

Reviewed by Anders Carlsson.

No test added because the crash requires a flash plugin

  • plugins/win/PluginMessageThrottlerWin.cpp: Rely on the hWnd of the plugin to tell us whether the PluginView has been deleted during execution of its wndProc. (WebCore::PluginMessageThrottlerWin::messageThrottleTimerFired):
1:02 PM Changeset in webkit [45346] by dimich@chromium.org
  • 3 edits in trunk/WebCore

2009-06-29 Dmitry Titov <dimich@chromium.org>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=26811

[Chromium] Remove a flag and functions used to enable workers in runtime.

  • bindings/v8/WorkerContextExecutionProxy.cpp:
  • bindings/v8/WorkerContextExecutionProxy.h:
1:00 PM Changeset in webkit [45345] by Simon Fraser
  • 5 edits in trunk/WebCore

2009-06-29 Simon Fraser <Simon Fraser>

Reviewed by Dave Hyatt.

<rdar://problem/6976712> Text antialiasing problems when rendering into compositing layers.

Improve the appearance of text in compositing layers by making use of
CA's layer geometry flipping, rather that doing it ourselves with a flip
transform. This allows CG to use font autohinting in the layer text.

  • platform/graphics/GraphicsLayer.h: (WebCore::GraphicsLayer::setGeometryOrientation): (WebCore::GraphicsLayer::geometryOrientation): New methods to set whether this layer uses flipped geometry.
  • platform/graphics/mac/GraphicsLayerCA.h:
  • platform/graphics/mac/GraphicsLayerCA.mm: (WebCore::GraphicsLayerCA::setGeometryOrientation): (WebCore::GraphicsLayerCA::geometryOrientation): Subclass in order to call into CA

(WebCore::GraphicsLayerCA::setContentsLayer):
Now that CA is doing the geometry flipping, we no longer need to flip the content
layers for image and video manually

  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::ensureRootPlatformLayer): Turn on flipping on the root layer.
12:52 PM Changeset in webkit [45344] by hyatt@apple.com
  • 3 edits in trunk/LayoutTests

2009-06-29 David Hyatt <hyatt@apple.com>

Reviewed by Mark Rowe.

Update layout tests for addition of HTMLDataGridCellElement constructor.

  • fast/dom/Window/window-properties-expected.txt:
  • fast/js/global-constructors-expected.txt:
12:36 PM Changeset in webkit [45343] by Nikolas Zimmermann
  • 1 edit
    4 moves in trunk/LayoutTests

Reviewed by Adam Treat.
Rename go-task-animation.* to ontimer-inline-event.* to reflect what it really tests.

12:11 PM Changeset in webkit [45342] by Nikolas Zimmermann
  • 9 edits
    7 adds in trunk

Reviewed by Adam Treat.

Fixes: https://bugs.webkit.org/show_bug.cgi?id=26246

Implement most WML specific <select> element features.
Add 'iname' / 'ivalue' support and support variable references.

Add two tests covering most select/variable related functionality.
Needs more tests when adding full 'iname' / 'ivalue' support (used in conjuction with onpick).

Tests: http/tests/wml/post-data-to-server.html

wml/select-element-variables.html

11:11 AM Changeset in webkit [45341] by weinig@apple.com
  • 3 edits in branches/nitro-extreme/JavaScriptCore

2009-06-29 Sam Weinig <sam@webkit.org>

Reviewed by Geoffrey Garen.

Add inline code dealing with doubles for op_jfalse and op_jtrue.

  • assembler/MacroAssemblerX86Common.h: (JSC::MacroAssemblerX86Common::): (JSC::MacroAssemblerX86Common::zeroDouble):
  • jit/JITOpcodes.cpp: (JSC::JIT::emit_op_jfalse): (JSC::JIT::emit_op_jtrue):
9:34 AM Changeset in webkit [45340] by jberlin@apple.com
  • 3 edits in trunk/WebKit/win

2009-06-29 Jessie Berlin <jberlin@apple.com>

Fix the windows build.

Reviewed by Adam Roben.

  • WebCoreSupport/WebContextMenuClient.cpp: (WebContextMenuClient::isSpeaking):
  • WebCoreSupport/WebContextMenuClient.h:
9:03 AM Changeset in webkit [45339] by hyatt@apple.com
  • 2 edits in trunk/WebKit/win

2009-06-29 David Hyatt <hyatt@apple.com>

Reviewed by Adam Roben.

Make sure to patch all configurations to have datagrid enabled.

  • WebKit.vcproj/WebKit.vcproj:
8:52 AM Changeset in webkit [45338] by hyatt@apple.com
  • 35 edits in trunk

WebCore:

2009-06-29 David Hyatt <hyatt@apple.com>

Reviewed by Adam Roben.

Put <datagrid> behind an ifdef.

  • Configurations/FeatureDefines.xcconfig:
  • bindings/js/JSDataGridColumnListCustom.cpp:
  • bindings/js/JSDataGridDataSource.cpp:
  • bindings/js/JSDataGridDataSource.h:
  • bindings/js/JSHTMLDataGridElementCustom.cpp:
  • html/DataGridColumn.cpp:
  • html/DataGridColumn.h:
  • html/DataGridColumn.idl:
  • html/DataGridColumnList.cpp:
  • html/DataGridColumnList.h:
  • html/DataGridColumnList.idl:
  • html/DataGridDataSource.h:
  • html/HTMLDataGridCellElement.cpp:
  • html/HTMLDataGridCellElement.h:
  • html/HTMLDataGridCellElement.idl:
  • html/HTMLDataGridColElement.cpp:
  • html/HTMLDataGridColElement.h:
  • html/HTMLDataGridColElement.idl:
  • html/HTMLDataGridElement.cpp:
  • html/HTMLDataGridElement.h:
  • html/HTMLDataGridElement.idl:
  • html/HTMLDataGridRowElement.cpp:
  • html/HTMLDataGridRowElement.h:
  • html/HTMLDataGridRowElement.idl:
  • html/HTMLTagNames.in:
  • page/DOMWindow.idl:
  • rendering/RenderDataGrid.cpp:
  • rendering/RenderDataGrid.h:

WebKit/mac:

2009-06-29 David Hyatt <hyatt@apple.com>

Reviewed by Adam Roben.

Put datagrid behind an #ifdef.

  • Configurations/FeatureDefines.xcconfig:

WebKit/win:

2009-06-29 David Hyatt <hyatt@apple.com>

Reviewed by Adam Roben.

Put <datagrid> behind an ifdef.

  • WebKit.vcproj/WebKit.vcproj:
6:57 AM Changeset in webkit [45337] by Simon Hausmann
  • 2 edits in trunk/WebCore

2009-06-29 Simon Hausmann <simon.hausmann@nokia.com>

Reviewed by Ariya Hidayat and Adam Roben.

Fix compilation with MINGW. Ported MSVC inline assembly to
GNU inline assembly. Also fixed casting errors where gcc
refused to cast a pointer-to-function to a pointer-to-object,
without an intermediate cast to a non-pointer type.

2:17 AM Changeset in webkit [45336] by Simon Hausmann
  • 3 edits in trunk/WebKit/qt

2009-06-29 Simon Hausmann <simon.hausmann@nokia.com>

Fix the Qt build, add missing isSpeaking() implementation to
ContextMenuClient.

Jun 28, 2009:

10:24 PM Changeset in webkit [45335] by xan@webkit.org
  • 3 edits in trunk/WebKit/gtk

2009-06-28 Xan Lopez <xlopez@igalia.com>

Fix the GTK+ build.

  • WebCoreSupport/ContextMenuClientGtk.cpp: (WebKit::ContextMenuClient::isSpeaking):
  • WebCoreSupport/ContextMenuClientGtk.h:
9:28 PM Changeset in webkit [45334] by ggaren@apple.com
  • 4 edits in branches/nitro-extreme/JavaScriptCore

2009-06-28 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Standardized op_get_by_id to put { tag, payload } in { regT1, regT0 }.


SunSpider and v8 report maybe 0.2%-0.4% regressions, but the optimization
this enables will win much more than that back.

  • jit/JIT.cpp: (JSC::JIT::privateCompileCTIMachineTrampolines):
  • jit/JIT.h:
  • jit/JITPropertyAccess.cpp: (JSC::JIT::emit_op_method_check): (JSC::JIT::emit_op_get_by_id): (JSC::JIT::compileGetByIdHotPath): (JSC::JIT::compileGetByIdSlowCase): (JSC::JIT::patchGetByIdSelf): (JSC::JIT::privateCompilePatchGetArrayLength): (JSC::JIT::privateCompileGetByIdProto): (JSC::JIT::privateCompileGetByIdSelfList): (JSC::JIT::privateCompileGetByIdProtoList): (JSC::JIT::privateCompileGetByIdChainList): (JSC::JIT::privateCompileGetByIdChain):
8:06 PM Changeset in webkit [45333] by sullivan@apple.com
  • 7 edits in trunk

WebCore:

2009-06-26 John Sullivan <sullivan@apple.com>

Added Speech submenu to context menu on Mac when there's a non-editable selection
(it was already present when there's an editable selection).
Also added support for disabling "Stop Speaking" when there is no speaking to stop.

Reviewed by Tim Hatcher.

  • loader/EmptyClients.h: (WebCore::EmptyContextMenuClient::isSpeaking): implemented this new virtual function to return false


  • page/ContextMenuClient.h: declared this new pure virtual function


  • platform/ContextMenu.cpp: (WebCore::ContextMenu::populate): insert Speech item (after a separator) on Mac when there's selected non-editable text (WebCore::ContextMenu::checkOrEnableIfNeeded): enable Stop Speaking item only if the context menu client returns true for isSpeaking()

WebKit/mac:

2009-06-26 John Sullivan <sullivan@apple.com>

Added support for disabling Stop Speaking when there is no speaking to stop.
Also fixed Stop Speaking so that it works (formerly it would throw an exception, and
selecting it from the menu would perform a web search instead (!)).

Reviewed by Tim Hatcher.

  • WebCoreSupport/WebContextMenuClient.h: declare isSpeaking()


  • WebCoreSupport/WebContextMenuClient.mm: (WebContextMenuClient::isSpeaking): implement by calling through to NSApplication (WebContextMenuClient::stopSpeaking): fixed implementation by correcting the signature of the NSApplication method
7:54 PM Changeset in webkit [45332] by mitz@apple.com
  • 5 edits in trunk

WebCore:

Reviewed by Simon Fraser.

Test: added a case to fast/dom/Element/scrollWidth.html

Ensure that scroll{Width, Height} is greater or equal to
client{Width, Height}.

  • rendering/RenderBox.cpp: (WebCore::RenderBox::scrollWidth): (WebCore::RenderBox::scrollHeight):

LayoutTests:

Reviewed by Simon Fraser.

  • fast/dom/Element/scrollWidth-expected.txt:
  • fast/dom/Element/scrollWidth.html:
3:06 PM Changeset in webkit [45331] by mrowe@apple.com
  • 4 edits in branches/WWDC-2009-branch

Versioning.

10:25 AM Changeset in webkit [45330] by Simon Fraser
  • 5 edits
    5 adds in trunk

2009-06-27 Simon Fraser <Simon Fraser>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26780

Do not make compositing layers for non-self-painting RenderLayers,
since these exist only to push a clip onto the clipping stack. If such
a layer gets compositied for some other reason, it should not paint.

Also ensure that we update composited layer positions correctly
inside overflow:scroll layers. We can't assume that the contents
are child layers, so we have to go up to the compositing ancestor,
and tell it to update all its child layer positions as we do
after layout.

Tests: compositing/layers-inside-overflow-scroll.html

compositing/self-painting-layers.html

  • rendering/RenderLayer.cpp: (WebCore::RenderLayer::scrollToOffset):
  • rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::paintIntoLayer):
  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::calculateCompositedBounds): (WebCore::RenderLayerCompositor::needsToBeComposited):
5:40 AM Changeset in webkit [45329] by jmalonzo@webkit.org
  • 2 edits in trunk/WebKit/qt

2009-06-28 Sriram Yadavalli <sriram.yadavalli@nokia.com>

Reviewed by Eric Seidel.

[Qt] Fix build break for Qt
https://bugs.webkit.org/show_bug.cgi?id=26779

  • Api/qwebpage.cpp: (QWebPage::swallowContextMenuEvent):
4:58 AM Changeset in webkit [45328] by jmalonzo@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-28 Jan Michael Alonzo <jmalonzo@webkit.org>

Gtk build fix - include stdarg.h for va_start/va_end.

  • DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp:
4:15 AM Changeset in webkit [45327] by eric@webkit.org
  • 2 edits in trunk/WebCore

2009-06-28 Luke Kenneth Casson Leighton <lkcl@lkcl.net>

Reviewed by Eric Seidel.

PurgeableBuffer #defines leave out functions on gtk MacOSX 10.4 build
https://bugs.webkit.org/show_bug.cgi?id=23057

Define these functions for Gtk as well.

  • platform/PurgeableBuffer.h:
4:14 AM Changeset in webkit [45326] by eric@webkit.org
  • 2 edits in trunk/WebCore

2009-06-28 Nate Chapin <Nate Chapin>

Reviewed by Dimitri Glazkov.

Update CodeGeneratorV8.pm to match the new api for V8Proxy.

https://bugs.webkit.org/show_bug.cgi?id=26765

  • bindings/scripts/CodeGeneratorV8.pm: Match the current version of V8Proxy.
4:13 AM Changeset in webkit [45325] by eric@webkit.org
  • 5 edits in trunk/WebCore

2009-06-28 Nicolas Sylvain <nsylvain@chromium.org>

Reviewed by Dimitri Glazkov.

If loading a font fails because of the sandbox, we ask the browser process to
try to load it by calling ensureFontLoaded. If it still fails after
ensureFontLoaded, we hit a ASSERT_NOT_REACHED.

This case happens once in a while during browser shutdown. The browser will
queue a message to the renderer to shutdown, and will then stop answering sync
messages from the renderer. If the renderer is still loading a page during this
time, it might try to call the browser process to ask to load a font. The
browser process will ignore the request, and the font will fail to load, even
after the second try.

This is unfortunate, but there is no real risk here, since the renderer will be
going away as soon as it processes another message.

This can't be layout tested as it depends on the sandbox.

https://bugs.webkit.org/show_bug.cgi?id=26743

  • platform/graphics/chromium/FontChromiumWin.cpp:
  • platform/graphics/chromium/FontPlatformDataChromiumWin.cpp:
  • platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp:
  • platform/graphics/chromium/SimpleFontDataChromiumWin.cpp:
3:31 AM Changeset in webkit [45324] by eric@webkit.org
  • 8 edits
    2 adds in trunk

2009-06-28 John Abd-El-Malek <jam@chromium.org>

https://bugs.webkit.org/show_bug.cgi?id=15457

Layout tests to ensure that "src" paramater is added when it's missing
but "data" is present.

  • plugins/netscape-plugin-map-data-to-src-expected.txt: Added.
  • plugins/netscape-plugin-map-data-to-src.html: Added.

2009-06-28 John Abd-El-Malek <jam@chromium.org>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=15457

Test: plugins/netscape-plugin-map-data-to-src.html

Fix problems with Real or WMP plugins not displaying because "data" was set
on the OBJECT tag instead of "src". This is based on what Firefox does, see
http://mxr.mozilla.org/mozilla-central/source/layout/generic/nsObjectFrame.cpp#3045

  • rendering/RenderPartObject.cpp: (WebCore::mapDataParamToSrc): (WebCore::RenderPartObject::updateWidget):

2009-06-28 John Abd-El-Malek <jam@chromium.org>

https://bugs.webkit.org/show_bug.cgi?id=15457

Modify NPAPI test plugin to verify that "src" paramater is added when
it's missing but "data" is present.

  • DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.cpp: (pluginLog):
  • DumpRenderTree/TestNetscapePlugIn.subproj/PluginObject.h:
  • DumpRenderTree/TestNetscapePlugIn.subproj/main.cpp: (NPP_New): (NPP_Destroy): (NPP_SetWindow): (handleEventCarbon): (handleEventCocoa):
  • DumpRenderTree/win/TestNetscapePlugin/main.cpp: (NPP_New):
3:19 AM Changeset in webkit [45323] by eric@webkit.org
  • 2 edits in trunk/LayoutTests

2009-06-28 Eric Seidel <eric@webkit.org>

No review. Just updating test results Kevin seems to have missed.

Test failure started with:
http://trac.webkit.org/changeset/45287
The new results definitely look better.

  • fast/profiler/profile-with-no-title-expected.txt:
2:36 AM Changeset in webkit [45322] by jmalonzo@webkit.org
  • 1 edit
    2 adds in trunk/WebKit/gtk/po

2009-06-28 Miloš Popović <gpopac@gmail.com>

Rubber-stamped by Jan Alonzo.

New Serbian translation.

Jun 27, 2009:

11:05 PM Changeset in webkit [45321] by Simon Fraser
  • 2 edits in trunk/WebCore

2009-06-27 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

https://bugs.webkit.org/show_bug.cgi?id=26780

Fix up previous change. When computeCompositingRequirements() determines
that the current layer is composited, it needs to inform its parent
by setting compositingState.m_subtreeIsCompositing() to true. That didn't
always happen after the previous patch. Clarified the logic here.

  • rendering/RenderLayerCompositor.cpp: (WebCore::CompositingState::CompositingState): (WebCore::RenderLayerCompositor::computeCompositingRequirements):
10:54 PM Changeset in webkit [45320] by jmalonzo@webkit.org
  • 2 edits in trunk/WebCore

2009-06-27 Laszlo Gombos <Laszlo Gombos>

Reviewed by Jan Alonzo.

[Qt] Build fix after r45290
https://bugs.webkit.org/show_bug.cgi?id=26769

  • WebCore.pro:
10:54 PM Changeset in webkit [45319] by jmalonzo@webkit.org
  • 4 edits in trunk

2009-06-27 Emilio Pozuelo Monfort <pochu27@gmail.com>

Reviewed by Jan Alonzo.

[GTK] Don't use deprecated GTK+ symbols.
https://bugs.webkit.org/show_bug.cgi?id=26583

  • plugins/gtk/gtk2xtbin.c: (gtk_xtbin_class_init): (gtk_xtbin_new): (gtk_xtbin_destroy):
  • GtkLauncher/main.c: (create_toolbar):
9:38 PM Changeset in webkit [45318] by Simon Fraser
  • 2 edits in trunk/WebCore

2009-06-27 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

https://bugs.webkit.org/show_bug.cgi?id=26780

First part: fix the RenderLayer::hasCompositingDescendant() flag to be set
correctly.

  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::computeCompositingRequirements): Do not unconditionally set compositingState.m_subtreeIsCompositing, because that can clobber the value from an earlier sibling. Add some more comments.

Remove a final use of Vector iterators.

(WebCore::RenderLayerCompositor::recursiveRepaintLayerRect):
Move the normalFlowList() processing outside the test for isStackingContext().

9:19 PM Changeset in webkit [45317] by mitz@apple.com
  • 10 edits in trunk/WebCore

Reviewed by Simon Fraser and Antti Koivisto.

  • make paintFillLayerExtended() non-virtual and remove its clipY and clipH parameters

These parameters were computed and passed along to
paintFillLayerExtended in order to vertically constrain the rect fill to
the damage rect, because Qt cannot paint tall rectangles (see
<http://websvn.kde.org/?view=rev&revision=42721>). Since the damage rect
is passed along in the PaintInfo, the extra parameters are redundant,
and the intersection can just take place in paintFillLayerExtended().

  • rendering/InlineFlowBox.cpp: (WebCore::InlineFlowBox::paintFillLayers): (WebCore::InlineFlowBox::paintFillLayer): (WebCore::InlineFlowBox::paintBoxDecorations): (WebCore::InlineFlowBox::paintMask):
  • rendering/InlineFlowBox.h:
  • rendering/RenderBox.cpp: (WebCore::RenderBox::paintRootBoxDecorations): (WebCore::RenderBox::paintBoxDecorations): (WebCore::RenderBox::paintMask): (WebCore::RenderBox::paintMaskImages): (WebCore::RenderBox::paintFillLayers): (WebCore::RenderBox::paintFillLayer):
  • rendering/RenderBox.h:
  • rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::paintFillLayerExtended):
  • rendering/RenderBoxModelObject.h:
  • rendering/RenderFieldset.cpp: (WebCore::RenderFieldset::paintBoxDecorations): (WebCore::RenderFieldset::paintMask):
  • rendering/RenderTable.cpp: (WebCore::RenderTable::paintBoxDecorations): (WebCore::RenderTable::paintMask):
  • rendering/RenderTableCell.cpp: (WebCore::RenderTableCell::paintBackgroundsBehindCell): (WebCore::RenderTableCell::paintMask):
8:13 PM Changeset in webkit [45316] by bfulgham@webkit.org
  • 6 edits
    22 adds in trunk

WebCore:

2009-06-27 Ryosuke Niwa <rniwa@google.com>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26762

Clean up for IndentOutdentCommand::indentRegion, and solved most of problems related to the bug 21712.
https://bugs.webkit.org/show_bug.cgi?id=21712

Added few utility functions to htmlediting.h/cpp

isVisibilyAdjacent checks whether the first position is visibly next to the second position.
i.e. there is no visible node between the first and second positions

canMergeLists checks whether two lists can be merged.
It checks the type of list, the editing boundary, and adjacency of the lists.

Tests: editing/execCommand/indent-nested-lists-1.html

editing/execCommand/indent-nested-lists-2.html
editing/execCommand/indent-nested-lists-3.html
editing/execCommand/indent-nested-lists-4.html
editing/execCommand/indent-nested-lists-5.html
editing/execCommand/indent-nested-lists-6.html
editing/execCommand/indent-nested-lists-7.html
editing/execCommand/outdent-nested-lists-1.html
editing/execCommand/outdent-nested-lists-2.html
editing/execCommand/outdent-nested-lists-3.html
editing/execCommand/outdent-nested-lists-4.html

  • editing/IndentOutdentCommand.cpp: (WebCore::IndentOutdentCommand::prepareBlockquoteLevelForInsertion): (WebCore::IndentOutdentCommand::tryIndentingAsListItem): (WebCore::IndentOutdentCommand::indentIntoBlockquote): (WebCore::IndentOutdentCommand::indentRegion):
  • editing/IndentOutdentCommand.h:
  • editing/htmlediting.cpp: (WebCore::enclosingListChild): (WebCore::canMergeLists): (WebCore::isVisibilyAdjacent):
  • editing/htmlediting.h:

LayoutTests:

2009-06-27 Ryosuke Niwa <set EMAIL_ADDRESS environment variable>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26762

Clean up for IndentOutdentCommand::indentRegion, and solved most of problems related to the bug 21712.
https://bugs.webkit.org/show_bug.cgi?id=21712


The following test cases are intended for 21712, but included here
since this patch already solved a lot of problems.

  • editing/execCommand/indent-nested-lists-1-expected.txt: Added.
  • editing/execCommand/indent-nested-lists-1.html: Added.
  • editing/execCommand/indent-nested-lists-2-expected.txt: Added.
  • editing/execCommand/indent-nested-lists-2.html: Added.
  • editing/execCommand/indent-nested-lists-3-expected.txt: Added.
  • editing/execCommand/indent-nested-lists-3.html: Added.
  • editing/execCommand/indent-nested-lists-4-expected.txt: Added.
  • editing/execCommand/indent-nested-lists-4.html: Added.
  • editing/execCommand/indent-nested-lists-5-expected.txt: Added.
  • editing/execCommand/indent-nested-lists-5.html: Added.
  • editing/execCommand/indent-nested-lists-6-expected.txt: Added.
  • editing/execCommand/indent-nested-lists-6.html: Added.
  • editing/execCommand/indent-nested-lists-7-expected.txt: Added.
  • editing/execCommand/indent-nested-lists-7.html: Added.
  • editing/execCommand/outdent-nested-lists-1-expected.txt: Added.
  • editing/execCommand/outdent-nested-lists-1.html: Added.
  • editing/execCommand/outdent-nested-lists-2-expected.txt: Added.
  • editing/execCommand/outdent-nested-lists-2.html: Added.
  • editing/execCommand/outdent-nested-lists-3-expected.txt: Added.
  • editing/execCommand/outdent-nested-lists-3.html: Added.
  • editing/execCommand/outdent-nested-lists-4-expected.txt: Added.
  • editing/execCommand/outdent-nested-lists-4.html: Added.
7:31 PM Changeset in webkit [45315] by bfulgham@webkit.org
  • 2 edits in trunk/WebCore

2009-06-27 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

WebInspector: Fix completion when iterating options using Tab.

https://bugs.webkit.org/show_bug.cgi?id=26722

  • inspector/front-end/TextPrompt.js: (WebInspector.TextPrompt.prototype._completionsReady):
5:32 PM Changeset in webkit [45314] by abarth@webkit.org
  • 1 edit
    33 adds in trunk/LayoutTests

2009-06-27 Daniel Bates <dbates@intudata.com>

Reviewed by Adam Barth.


https://bugs.webkit.org/show_bug.cgi?id=26776


More tests for the XSSAuditor.

  • http/tests/security/xssAuditor/anchor-url-dom-write-location-expected.txt: Added.
  • http/tests/security/xssAuditor/anchor-url-dom-write-location-inline-event-expected.txt: Added.
  • http/tests/security/xssAuditor/anchor-url-dom-write-location-inline-event.html: Added.
  • http/tests/security/xssAuditor/anchor-url-dom-write-location-javascript-URL-expected.txt: Added.
  • http/tests/security/xssAuditor/anchor-url-dom-write-location-javascript-URL.html: Added.
  • http/tests/security/xssAuditor/anchor-url-dom-write-location.html: Added.
  • http/tests/security/xssAuditor/dom-write-URL-expected.txt: Added.
  • http/tests/security/xssAuditor/dom-write-URL.html: Added.
  • http/tests/security/xssAuditor/dom-write-innerHTML-expected.txt: Added.
  • http/tests/security/xssAuditor/dom-write-innerHTML.html: Added.
  • http/tests/security/xssAuditor/dom-write-location-expected.txt: Added.
  • http/tests/security/xssAuditor/dom-write-location-inline-event-expected.txt: Added.
  • http/tests/security/xssAuditor/dom-write-location-inline-event.html: Added.
  • http/tests/security/xssAuditor/dom-write-location-javascript-URL-expected.txt: Added.
  • http/tests/security/xssAuditor/dom-write-location-javascript-URL.html: Added.
  • http/tests/security/xssAuditor/dom-write-location.html: Added.
  • http/tests/security/xssAuditor/faux-script1-expected.txt: Added.
  • http/tests/security/xssAuditor/faux-script1.html: Added.
  • http/tests/security/xssAuditor/faux-script2-expected.txt: Added.
  • http/tests/security/xssAuditor/faux-script2.html: Added.
  • http/tests/security/xssAuditor/faux-script3-expected.txt: Added.
  • http/tests/security/xssAuditor/faux-script3.html: Added.
  • http/tests/security/xssAuditor/get-from-iframe-expected.txt: Added.
  • http/tests/security/xssAuditor/get-from-iframe.html: Added.
  • http/tests/security/xssAuditor/malformed-HTML-expected.txt: Added.
  • http/tests/security/xssAuditor/malformed-HTML.html: Added.
  • http/tests/security/xssAuditor/post-from-iframe-expected.txt: Added.
  • http/tests/security/xssAuditor/post-from-iframe.html: Added.
  • http/tests/security/xssAuditor/resources/anchor-url-dom-write-location-click.html: Added.
  • http/tests/security/xssAuditor/resources/echo-dom-write-URL.html: Added.
  • http/tests/security/xssAuditor/resources/echo-dom-write-innerHTML.html: Added.
  • http/tests/security/xssAuditor/resources/echo-dom-write-location.html: Added.
  • http/tests/security/xssAuditor/resources/utilities.js: Added. (sendRequestFromIFrame):
2:38 PM Changeset in webkit [45313] by kov@webkit.org
  • 3 edits in trunk/WebCore

2009-06-27 Gustavo Noronha Silva <Gustavo Noronha Silva>

Reviewed by Holger Freyther.

https://bugs.webkit.org/show_bug.cgi?id=25889
[GTK] scrollbar policy for main frame is not implementable

Override visibleContentRect to handle GTK+'s case, in which
scrollbars or equivalent decoration are painted by the parent
widget.

  • platform/ScrollView.cpp:
  • platform/gtk/ScrollViewGtk.cpp: (WebCore::ScrollView::visibleContentRect):
12:36 PM Changeset in webkit [45312] by abarth@webkit.org
  • 7 edits
    9 adds in trunk

WebCore:

2009-06-27 Daniel Bates <dbates@intudata.com>

Reviewed by Adam Barth.

https://bugs.webkit.org/show_bug.cgi?id=26708


Fix addresses false negatives with respect to scheme relative paths, iFrame JavaScript URLs,
and UTF-7 encoded payloads.

Tests: http/tests/security/xssAuditor/http-equiv-utf-7-encoded.html

http/tests/security/xssAuditor/iframe-javascript-url.html
http/tests/security/xssAuditor/script-tag-utf-7-encoded.html
http/tests/security/xssAuditor/script-tag-with-source-relative-scheme.html

  • html/HTMLTokenizer.cpp: (WebCore::HTMLTokenizer::scriptHandler): Moved XSSAuditor check to HTMLTokenizer::parseTag. (WebCore::HTMLTokenizer::parseTag):
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::loadSubframe): Modified to inform XSSAuditor of parent frame so as to compare against iFrame javascript URL.
  • page/XSSAuditor.cpp: Removed method XSSAuditor::isControlCharacter. Instead, exposed method isControlCharacter in ResourceResponseBase.cpp. (WebCore::XSSAuditor::XSSAuditor): (WebCore::XSSAuditor::decodeURL): Modified to decode string using specified encoder. (WebCore::XSSAuditor::findInRequest): Generalized to arbitrary frame so as to prevent execution of iFrame javascript URL.
  • page/XSSAuditor.h: Added field m_parentFrame.
  • platform/network/ResourceResponseBase.cpp: (WebCore::isControlCharacter):
  • platform/network/ResourceResponseBase.h:

LayoutTests:

2009-06-27 Daniel Bates <dbates@intudata.com>

Reviewed by Adam Barth.

Tests for https://bugs.webkit.org/show_bug.cgi?id=26708

Tests prevention of injected scripts with scheme relative paths, iFrame JavaScript URLs,
and UTF-7 encoding.

  • http/tests/security/xssAuditor/http-equiv-utf-7-encoded-expected.txt: Added.
  • http/tests/security/xssAuditor/http-equiv-utf-7-encoded.html: Added.
  • http/tests/security/xssAuditor/iframe-javascript-url-expected.txt: Added.
  • http/tests/security/xssAuditor/iframe-javascript-url.html: Added.
  • http/tests/security/xssAuditor/resources/echo-intertag-default-encode.pl: Added.
  • http/tests/security/xssAuditor/script-tag-utf-7-encoded-expected.txt: Added.
  • http/tests/security/xssAuditor/script-tag-utf-7-encoded.html: Added.
  • http/tests/security/xssAuditor/script-tag-with-source-relative-scheme-expected.txt: Added.
  • http/tests/security/xssAuditor/script-tag-with-source-relative-scheme.html: Added.
1:34 AM Changeset in webkit [45311] by oliver@apple.com
  • 4 edits
    2 adds in trunk

Bug 26771: Canvas is incorrectly tainted when drawing from a video element that uses <source> elements

Reviewed by Maciej Stachowiak.

The drawImage(<video>) logic naively assumes that it just needs
to check the src attribute of the video element when in fact it
needs to look at the url that is being played instead. Failure
to do this means that video provided through source elements
taints the canvas.

Test: media/video-canvas-source.html

12:34 AM Changeset in webkit [45310] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

2009-06-27 Simon Hausmann <simon.hausmann@nokia.com>

Build fix for Qt under Windows.

  • Api/qwebhistory.h: Use consistent export linkage for the datastream operators.

Jun 26, 2009:

11:22 PM Changeset in webkit [45309] by Simon Fraser
  • 3 edits in trunk/WebCore

2009-06-26 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

<rdar://problem/7011924> Opacity transitions should not trigger hardware compositing mode

Don't go into compositing mode just for opacity transitions, but they will be
hardware accelerated if we're already compositing.

  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::requiresCompositingLayer): (WebCore::RenderLayerCompositor::requiresCompositingForTransform): (WebCore::RenderLayerCompositor::requiresCompositingForAnimation):
  • rendering/RenderLayerCompositor.h:
10:19 PM Changeset in webkit [45308] by ap@webkit.org
  • 2 edits in trunk/LayoutTests

Updating Tiger results for a recently modified test.

  • platform/mac-tiger/fast/encoding/idn-security-expected.txt:
10:15 PM Changeset in webkit [45307] by oliver@apple.com
  • 2 edits in trunk/JavaScriptCore

<rdar://problem/7009684> REGRESSION(r45039): Crashes inside JSEvent::put on PowerPC (26746)
<https://bugs.webkit.org/show_bug.cgi?id=26746>

Reviewed by Dan Bernstein

Fix for r45039 incorrectly uncached a get_by_id by converting it to put_by_id. Clearly this
is less than correct. This patch corrects that error.

7:49 PM Changeset in webkit [45306] by bweinstein@apple.com
  • 1 edit in trunk/WebCore/WebCore.base.exp

Mac build fix part 2 - add new mangled symbol

7:40 PM Changeset in webkit [45305] by bweinstein@apple.com
  • 1 edit in trunk/WebCore/WebCore.base.exp

First part of Mac Build Fix - find missing symbol

7:23 PM Changeset in webkit [45304] by bweinstein@apple.com
  • 12 edits in trunk

2009-06-26 Brian Weinstein <bweinstein@apple.com>

Reviewed by Simon Fraser.


Changed call of scrollbarUnderMouse to scrollbarUnderPoint to match new API.

  • Api/qwebpage.cpp: (QWebPage::swallowContextMenuEvent):

2009-06-26 Brian Weinstein <bweinstein@apple.com>

Reviewed by Simon Fraser.

https://bugs.webkit.org/show_bug.cgi?id=26695

Added hit testing on scrollbars, so if you start a gesture over a scrollbar,
it isn't counted, and lets the user drag the scrollbar itself instead of a
panning gesture. Also cleaned up code in gesture.

  • WebView.cpp: (WebView::gestureNotify): (WebView::gesture):

2009-06-26 Brian Weinstein <bweinstein@apple.com>

Reviewed by Simon Fraser.

https://bugs.webkit.org/show_bug.cgi?id=26695


Added the ability to do scrollbar hit testing in EventHandler, changed the
signature of a PlatformWheelEvent constructor, and changed scrollbarUnderMouse
to scrollbarUnderPoint, and updated all calls to that function.

  • page/EventHandler.cpp: (WebCore::EventHandler::hitTestResultAtPoint): (WebCore::EventHandler::handleMousePressEvent): (WebCore::EventHandler::handleMouseMoveEvent):
  • page/EventHandler.h: (WebCore::):
  • platform/PlatformWheelEvent.h:
  • platform/ScrollView.cpp: (WebCore::ScrollView::scrollbarUnderPoint):
  • platform/ScrollView.h:
  • platform/chromium/PopupMenuChromium.cpp: (WebCore::PopupListBox::handleMouseDownEvent): (WebCore::PopupListBox::handleMouseMoveEvent):
  • platform/win/WheelEventWin.cpp: (WebCore::PlatformWheelEvent::PlatformWheelEvent):
7:02 PM Changeset in webkit [45303] by ggaren@apple.com
  • 3 edits in branches/nitro-extreme/JavaScriptCore

2009-06-26 Geoffrey Garen <ggaren@apple.com>

Reviewed by Maciej Stachowiak.


Standardized op_call to put { tag, payload } in { regT1, regT0 }.


SunSpider and v8 report no change.

  • jit/JIT.cpp: (JSC::JIT::privateCompileCTIMachineTrampolines):
  • jit/JITCall.cpp: (JSC::JIT::compileOpCallInitializeCallFrame): (JSC::JIT::compileOpCallSetupArgs): (JSC::JIT::compileOpConstructSetupArgs): (JSC::JIT::compileOpCallVarargsSetupArgs): (JSC::JIT::compileOpCallVarargs): (JSC::JIT::compileOpCall): (JSC::JIT::compileOpCallSlowCase):
6:52 PM Changeset in webkit [45302] by abarth@webkit.org
  • 2 edits in trunk/WebKit/win

2009-06-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Adam Barth.

https://bugs.webkit.org/show_bug.cgi?id=26767

Fix a build break due to LocalStorage.h being included in WebKitDLL.cpp
despite it being deleted from the repo by the following patch/commit:
https://bugs.webkit.org/show_bug.cgi?id=26732
http://trac.webkit.org/changeset/45290

  • WebKitDLL.cpp:
6:49 PM Changeset in webkit [45301] by abarth@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-26 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

Make SVN work (again?).

  • Scripts/modules/scm.py:
5:58 PM Changeset in webkit [45300] by Simon Fraser
  • 2 edits in trunk/WebCore

2009-06-26 Simon Fraser <Simon Fraser>

Rubber-stamped by Dave Levin

Rename ioCompState to compositingState to better match WebCore coding style.

  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::computeCompositingRequirements): (WebCore::RenderLayerCompositor::rebuildCompositingLayerTree):
5:50 PM Changeset in webkit [45299] by mitz@apple.com
  • 2 edits in trunk/WebCore

Reviewed by Mark Rowe.

  • revert unintentional project changes from r45277
  • WebCore.xcodeproj/project.pbxproj:
5:44 PM Changeset in webkit [45298] by mrowe@apple.com
  • 2 edits in trunk/WebCore

Fix the Windows build.

5:37 PM Changeset in webkit [45297] by Simon Fraser
  • 3 edits in trunk/WebCore

2009-06-26 Simon Fraser <Simon Fraser>

Reviewed by Dan Bernstein.

https://bugs.webkit.org/show_bug.cgi?id=26766

Change to use array indexing rather than Vector enumerators; the former
are preferred style.

  • rendering/RenderLayerBacking.cpp: (WebCore::RenderLayerBacking::hasNonCompositingContent):
  • rendering/RenderLayerCompositor.cpp: (WebCore::RenderLayerCompositor::calculateCompositedBounds): (WebCore::RenderLayerCompositor::computeCompositingRequirements): (WebCore::RenderLayerCompositor::rebuildCompositingLayerTree): (WebCore::RenderLayerCompositor::updateCompositingChildrenGeometry): (WebCore::RenderLayerCompositor::recursiveRepaintLayerRect): (WebCore::RenderLayerCompositor::layerHas3DContent):
5:17 PM Changeset in webkit [45296] by mitz@apple.com
  • 3 edits
    2 adds in trunk

WebCore:

Reviewed by Oliver Hunt.

  • fix <rdar://problem/6961476> REGRESSION (r42043): scrollWidth reported as 1 px

Test: fast/dom/Element/scrollWidth.html

Changed scrollWidth and scrollHeight to use the same logic for
visible overflow boxes that is used for clipped overflow boxes. In
particular, borders are not included and
{leftmost,rightmost,lowest}Position() are used. This logic matches IE8.

  • rendering/RenderBox.cpp: (WebCore::RenderBox::scrollWidth): (WebCore::RenderBox::scrollHeight):

LayoutTests:

Reviewed by Oliver Hunt.

  • fast/dom/Element/scrollWidth-expected.txt: Added.
  • fast/dom/Element/scrollWidth.html: Added.
5:07 PM Changeset in webkit [45295] by Chris Fleizach
  • 10 edits
    6 adds in trunk

Bug 26725: aria-hidden, aria-disabled, aria-readonly need to be implemented
https://bugs.webkit.org/show_bug.cgi?id=26725

5:02 PM Changeset in webkit [45294] by beidson@apple.com
  • 1 edit
    1 move
    4 adds in trunk/LayoutTests

2009-06-26 Brady Eidson <beidson@apple.com>

OMG.

  • platform/mac-tiger/fast/loader/file-url-mimetypes-expected.txt: Removed.
  • platform/mac-tiger/platform: Added.
  • platform/mac-tiger/platform/mac: Added.
  • platform/mac-tiger/platform/mac/fast: Added.
  • platform/mac-tiger/platform/mac/fast/loader: Added.
  • platform/mac-tiger/platform/mac/fast/loader/file-url-mimetypes-expected.txt: Copied from platform/mac-tiger/fast/loader/file-url-mimetypes-expected.txt.
4:09 PM Changeset in webkit [45293] by brettw@chromium.org
  • 3 edits in trunk/WebCore

2009-06-26 Brett Wilson <brettw@chromium.org>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=26759

GIFImageDecoder is broken.

Make the GIFImageDecoder.repetitionCount function const to match the
base class. The mismatched definitions were causing the function to not
get called.

  • platform/image-decoders/gif/GIFImageDecoder.cpp: (WebCore::GIFImageDecoder::repetitionCount):
  • platform/image-decoders/gif/GIFImageDecoder.h:
3:58 PM Changeset in webkit [45292] by cmarrin@apple.com
  • 4 edits in trunk

Additional fix for https://bugs.webkit.org/show_bug.cgi?id=26651

The flag should always default to true to avoid it getting set
to false in a build with accelerated compositing turned off
and then disabling accelerated compositing when subsequently
running a build with it turned on.

3:53 PM Changeset in webkit [45291] by beidson@apple.com
  • 3 edits in trunk/WebCore

2009-06-26 Brady Eidson <beidson@apple.com>

Reviewed by Sam Weinig.

Followup for the fix for <rdar://problem/6961578> REGRESSION (r43511): Opening .fdf files from Acrobat Professional fails

Now that other MIME type correction stuff is in our swizzled method, Tiger needs it too!

  • platform/network/mac/ResourceHandleMac.mm: (-[WebCoreResourceHandleAsDelegate connection:didReceiveResponse:]):
  • platform/network/mac/WebCoreURLResponse.h:
3:49 PM Changeset in webkit [45290] by Dimitri Glazkov
  • 17 edits
    1 move
    1 add
    3 deletes in trunk/WebCore

2009-06-26 Jeremy Orlow <jorlow@chromium.org>

Reviewed by Darin Fisher.

https://bugs.webkit.org/show_bug.cgi?id=26732

For the final step of https://bugs.webkit.org/show_bug.cgi?id=25376,
combine LocalStorage and SessionStorage into StorageNamespace. The
synching code (for LocalStorage) has already been removed, so these
classes are now very similar. All they do is essentially contain a
logical grouping of origins that are attached to specific contexts
(be it PageGroups for LocalStorage and Page for SessionStorage).

  • GNUmakefile.am:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • WebCoreSources.bkl:
  • page/Chrome.cpp: (WebCore::Chrome::createWindow):
  • page/DOMWindow.cpp: (WebCore::DOMWindow::localStorage):
  • page/DOMWindow.h:
  • page/Page.cpp: (WebCore::Page::sessionStorage): (WebCore::Page::setSessionStorage):
  • page/Page.h:
  • page/PageGroup.cpp: (WebCore::PageGroup::localStorage):
  • page/PageGroup.h:
  • storage/LocalStorage.cpp: Removed.
  • storage/LocalStorage.h: Removed.
  • storage/LocalStorageTask.cpp:
  • storage/LocalStorageThread.cpp:
  • storage/SessionStorage.cpp: Removed.
  • storage/SessionStorage.h: Removed.
  • storage/StorageArea.cpp: (WebCore::StorageArea::create): (WebCore::StorageArea::StorageArea): (WebCore::StorageArea::copy): (WebCore::StorageArea::length): (WebCore::StorageArea::key): (WebCore::StorageArea::getItem): (WebCore::StorageArea::setItem): (WebCore::StorageArea::removeItem): (WebCore::StorageArea::clear): (WebCore::StorageArea::contains): (WebCore::StorageArea::importItem): (WebCore::StorageArea::close): (WebCore::StorageArea::dispatchStorageEvent):
  • storage/StorageArea.h: (WebCore::):
  • storage/StorageAreaSync.cpp: (WebCore::StorageAreaSync::scheduleFinalSync):
  • storage/StorageNamespace.cpp: Copied from WebCore/storage/LocalStorage.cpp. (WebCore::localStorageNamespaceMap): (WebCore::StorageNamespace::localStorageNamespace): (WebCore::StorageNamespace::sessionStorageNamespace): (WebCore::StorageNamespace::StorageNamespace): (WebCore::StorageNamespace::~StorageNamespace): (WebCore::StorageNamespace::copy): (WebCore::StorageNamespace::storageArea): (WebCore::StorageNamespace::close):
  • storage/StorageNamespace.h: Copied from WebCore/storage/LocalStorage.h.
3:48 PM Changeset in webkit [45289] by beidson@apple.com
  • 1 edit
    2 adds in trunk/LayoutTests

2009-06-26 Brady Eidson <beidson@apple.com>

Fix Tiger results for the new mime type layout test.

  • platform/mac-tiger/fast/loader: Added.
  • platform/mac-tiger/fast/loader/file-url-mimetypes-expected.txt: Added.
3:22 PM Changeset in webkit [45288] by Nate Chapin
  • 83 edits
    1 add in trunk/WebCore

2009-06-26 Nate Chapin <Nate Chapin>

Reviewed by David Levin.

Upstream V8Proxy. This involved updating a lot of function and variable names to match WebKit style, hence the large size.

https://bugs.webkit.org/show_bug.cgi?id=26623

3:08 PM Changeset in webkit [45287] by kmccullough@apple.com
  • 4 edits in trunk/WebCore

2009-06-26 Kevin McCullough <kmccullough@apple.com>

Reviewed by Tim Hatcher.

<rdar://problem/7011047> Profiler shows the record button 'on' even
though it's finished

I consolidated the creation of the user initiated profile name into
its own function and then called it from console::profile instead of
calling startUserInitiatedProfiling(). This way we don't call
toggleRecordButton() which turns on the record button.

  • inspector/InspectorController.cpp: (WebCore::InspectorController::didCommitLoad): (WebCore::InspectorController::getCurrentUserInitiatedProfileName): (WebCore::InspectorController::startUserInitiatedProfiling): (WebCore::InspectorController::stopUserInitiatedProfiling):
  • inspector/InspectorController.h:
  • page/Console.cpp: (WebCore::Console::profile): (WebCore::Console::profileEnd):
3:06 PM Changeset in webkit [45286] by jberlin@apple.com
  • 2 edits in trunk/LayoutTests

2009-06-26 Jessie Berlin <jberlin@apple.com>

Reviewed by Mark Rowe.


Fix the build bots.

  • editing/selection/drag-start-event-client-x-y-expected.txt:
2:53 PM Changeset in webkit [45285] by jeremy@chromium.org
  • 19 edits
    1 add
    3 deletes in trunk/WebCore

Move focusRingColor to RenderTheme

2:51 PM Changeset in webkit [45284] by dimich@chromium.org
  • 2 edits in trunk/WebCore

2009-06-26 Dmitry Titov <dimich@chromium.org>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=26761
[Chromium] Enable Dedicated Workers in Chromium.

  • bindings/v8/custom/V8WorkerCustom.cpp: (WebCore::CALLBACK_FUNC_DECL): Remove the check that prevented workers from being created w/o a command-line switch. The flag itself and methods will be removed in a subsequent patch, after corresponding change in Chromium.
2:46 PM Changeset in webkit [45283] by beidson@apple.com
  • 1 edit
    3 adds in trunk/LayoutTests

2009-06-26 Brady Eidson <beidson@apple.com>

Step 2 (new Mac results)

  • platform/mac/fast/images/favicon-as-image-expected.checksum: Added.
  • platform/mac/fast/images/favicon-as-image-expected.png: Added.
  • platform/mac/fast/images/favicon-as-image-expected.txt: Added.
2:44 PM Changeset in webkit [45282] by beidson@apple.com
  • 1 edit
    3 moves
    1 add
    6 deletes in trunk/LayoutTests

2009-06-26 Brady Eidson <beidson@apple.com>

1st step of fixing the layout test I broke on Mac platforms.

  • platform/mac-leopard/fast/images/favicon-as-image-expected.checksum: Removed.
  • platform/mac-leopard/fast/images/favicon-as-image-expected.png: Removed.
  • platform/mac-leopard/fast/images/favicon-as-image-expected.txt: Removed.
  • platform/mac-tiger/fast/images/favicon-as-image-expected.checksum: Removed.
  • platform/mac-tiger/fast/images/favicon-as-image-expected.png: Removed.
  • platform/mac-tiger/fast/images/favicon-as-image-expected.txt: Removed.
  • platform/mac/fast/images/favicon-as-image-expected.checksum: Removed.
  • platform/mac/fast/images/favicon-as-image-expected.png: Removed.
  • platform/mac/fast/images/favicon-as-image-expected.txt: Removed.
  • platform/win/fast/images: Added.
  • platform/win/fast/images/favicon-as-image-expected.checksum: Copied from platform/mac/fast/images/favicon-as-image-expected.checksum.
  • platform/win/fast/images/favicon-as-image-expected.png: Copied from platform/mac/fast/images/favicon-as-image-expected.png.
  • platform/win/fast/images/favicon-as-image-expected.txt: Copied from platform/mac/fast/images/favicon-as-image-expected.txt.
2:01 PM Moving to Git edited by treat@kde.org
(diff)
1:51 PM Changeset in webkit [45281] by weinig@apple.com
  • 3 edits in branches/nitro-extreme/JavaScriptCore

2009-06-26 Sam Weinig <sam@webkit.org>

Reviewed by Geoffrey Garen.

Handle multiplying by zero a little better by
inlining the case that both operands are non-negative
into the slowpath.

  • assembler/MacroAssemblerX86Common.h: (JSC::MacroAssemblerX86Common::branchOr32):
  • jit/JITArithmetic.cpp: (JSC::JIT::emit_op_mul): (JSC::JIT::emitSlow_op_mul):
1:49 PM Changeset in webkit [45280] by beidson@apple.com
  • 2 edits in trunk/WebKit/mac

2009-06-26 Brady Eidson <beidson@apple.com>

Fix SnowLeopard build.

  • Plugins/Hosted/HostedNetscapePluginStream.mm: (WebKit::HostedNetscapePluginStream::didReceiveResponse):
1:40 PM Changeset in webkit [45279] by mrowe@apple.com
  • 2 edits in trunk/LayoutTests

Land updated results after the test change.

  • editing/selection/user-drag-element-and-user-select-none-expected.txt:
1:29 PM Changeset in webkit [45278] by jberlin@apple.com
  • 4 edits
    2 adds in trunk

2009-06-26 Jessie Berlin <jberlin@apple.com>

Fix: https://bugs.webkit.org/show_bug.cgi?id=26723
Where the m_mouseDown event was never being set on windows, so the
client X and Y coordinates were always being reported as zero in a
dragstart handler.


Reviewed by Mark Rowe.

Test: editing/selection/drag-start-event-client-x-y.html

  • page/EventHandler.cpp: (WebCore::EventHandler::handleMousePressEvent): Set the m_mouseDown event when the mouse press is handled.
  • page/mac/EventHandlerMac.mm: (WebCore::EventHandler::mouseDown): Removed now redundant setting of m_mouseDown.


Layout test for making sure the client X Y coordinates of the event
in a dragstart handler are correct.


https://bugs.webkit.org/show_bug.cgi?id=26723

  • editing/selection/drag-start-event-client-x-y-expected.txt: Added.
  • editing/selection/drag-start-event-client-x-y.html: Added.
1:13 PM Changeset in webkit [45277] by beidson@apple.com
  • 3 edits in trunk/WebCore

2009-06-26 Brady Eidson <beidson@apple.com>

Tiger build fix

  • WebCore.xcodeproj/project.pbxproj:
  • platform/network/mac/WebCoreURLResponse.mm: (swizzleMIMETypeMethodIfNecessary):
12:43 PM Changeset in webkit [45276] by mrowe@apple.com
  • 2 edits in trunk/LayoutTests

Fix user-drag-element-and-user-select-none.html to not rely on a bug in Mac DRT.

Reviewed by Sam Weinig.

  • editing/selection/user-drag-element-and-user-select-none.html:
12:38 PM Changeset in webkit [45275] by ap@webkit.org
  • 3 edits in trunk/WebCore

Reviewed by Sam Weinig.

https://bugs.webkit.org/show_bug.cgi?id=26681
Problem updating applicationCache when server returns 304


Improve the fix, make the test pass on Tiger.

  • loader/appcache/ApplicationCacheGroup.cpp: (WebCore::ApplicationCacheGroup::didReceiveResponse): Fix another code path to remove the current item from list.
  • platform/network/mac/ResourceHandleMac.mm: (WebCore::ResourceHandle::start): On Tiger, conditional requests that cannot be cached by network layer cause errors with default cache policy.
12:23 PM Changeset in webkit [45274] by beidson@apple.com
  • 17 edits
    269 adds in trunk

WebCore:

2009-06-26 Brady Eidson <beidson@apple.com>

Reviewed by Sam Weinig

<rdar://problem/6961578> REGRESSION (r43511): Opening .fdf files from Acrobat Professional fails

When we disabled content sniffing for file urls we lost knowledge of many file extensions that we
didn't intend to lose. Turns out the CoreTypes UTI database doesn't know about every extension Gatekeeper
knew about.

By comparing CoreTypes' database to Gatekeepers, this patch adds a hardcoded list of file extension to MIME
type mappings that are missing in CoreType's database.

Test: platform/mac/fast/loader/file-url-mimetypes.html

  • platform/network/mac/ResourceHandleMac.mm: (-[WebCoreResourceHandleAsDelegate connection:didReceiveResponse:]): Move the MIME Type swizzling code to WebCoreURLResponse.
  • platform/network/mac/ResourceResponseMac.mm: (WebCore::ResourceResponse::platformLazyInit): _webcore_MIMEType -> MIMEType, as we now have only one place where we do all MIMEType correction.
  • platform/network/mac/WebCoreURLResponse.h: Remove _webcore_MIMEType, as it is now folded into the swizzled implementation of MIMEType.
  • platform/network/mac/WebCoreURLResponse.mm: (createBinaryExtensionsSet): (createExtensionToMIMETypeMap): (swizzleMIMETypeMethodIfNecessary): (webNSURLResponseMIMEType): If it's a file URL and there's no MIME type, see if the extension exists in the extension -> MIME type map before turning to the default MIME type. Also roll in what was previously implemented in _webcore_MIMEType.
  • svg/graphics/SVGImage.cpp: (WebCore::SVGImage::~SVGImage): Tweak this ASSERT - SVGImages might get destroyed without ever having a client.

WebKit/mac:

2009-06-26 Brady Eidson <beidson@apple.com>

Reviewed by Sam Weinig

<rdar://problem/6961578> REGRESSION (r43511): Opening .fdf files from Acrobat Professional fails

Replace all usage of the now obsolete [NSURLResponse _webcore_MIMEType].

  • Plugins/WebBaseNetscapePluginStream.mm: (WebNetscapePluginStream::didReceiveResponse):
  • Plugins/WebNetscapePluginView.mm: (-[WebNetscapePluginView pluginView:receivedData:]):
  • Plugins/WebPluginController.mm: (-[WebPluginController pluginView:receivedResponse:]):
  • WebView/WebDataSource.mm: (-[WebDataSource _responseMIMEType]):
  • WebView/WebResource.mm: (-[WebResource _initWithData:URL:response:]):

WebKitTools:

2009-06-26 Brady Eidson <beidson@apple.com>

Reviewed by Sam Weinig

<rdar://problem/6961578> REGRESSION (r43511): Opening .fdf files from Acrobat Professional fails

Add a dumpResourceResponseMIMETypes() mode so the ResourceLoadDelegate will dump the mime type from
the NSURLResponse. Needed for the test for this bug fix.

  • DumpRenderTree/LayoutTestController.cpp: (LayoutTestController::LayoutTestController): (dumpResourceResponseMIMETypesCallback): (LayoutTestController::staticFunctions):
  • DumpRenderTree/LayoutTestController.h: (LayoutTestController::dumpResourceResponseMIMETypes): (LayoutTestController::setDumpResourceResponseMIMETypes):
  • DumpRenderTree/mac/ResourceLoadDelegate.mm: (-[ResourceLoadDelegate webView:resource:didReceiveResponse:fromDataSource:]):

LayoutTests:

2009-06-25 Brady Eidson <beidson@apple.com>

Reviewed by Sam Weinig

<rdar://problem/6961578> REGRESSION (r43511): Opening .fdf files from Acrobat Professional fails

Add a test file for each of file extensions we think WebKit on Mac should know the MIME type for.

  • platform/mac/fast/loader/file-url-mimetypes-expected.txt: Added.
  • platform/mac/fast/loader/file-url-mimetypes.html: Added.
  • platform/mac/fast/loader/resources: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-3g2.3g2: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-3gp.3gp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-3gp2.3gp2: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-3gpp.3gpp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-Z.Z: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ac3.ac3: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ai.ai: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-aif.aif: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-aifc.aifc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-aiff.aiff: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-asc.asc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-asf.asf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-asx.asx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-au.au: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-avi.avi: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-bcpio.bcpio: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-bin.bin: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-bmp.bmp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-bz.bz: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-bz2.bz2: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-cdf.cdf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-class.class: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-cpgz.cpgz: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-cpio.cpio: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-cpt.cpt: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-crw.crw: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-csh.csh: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-css.css: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dcr.dcr: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dif.dif: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dir.dir: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dll.dll: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dls.dls: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dmg.dmg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dms.dms: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-doc.doc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-docm.docm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-docx.docx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dotm.dotm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dotx.dotx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dv.dv: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dvi.dvi: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-dxr.dxr: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-efx.efx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-eps.eps: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-etx.etx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-exe.exe: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ez.ez: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fdf.fdf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fla.fla: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fp.fp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fp2.fp2: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fp3.fp3: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fp4.fp4: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fp5.fp5: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fp6.fp6: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-fpx.fpx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-gif.gif: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-gtar.gtar: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-gz.gz: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-gzip.gzip: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-hdf.hdf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-hqx.hqx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-htm.htm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-html.html: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ice.ice: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ico.ico: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ics.ics: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ief.ief: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-iges.iges: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-igs.igs: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-iso.iso: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-j2k.j2k: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jar.jar: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-javascript.javascript: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jhtml.jhtml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jnlp.jnlp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jp2.jp2: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jpe.jpe: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jpeg.jpeg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jpf.jpf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jpg.jpg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jpx.jpx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-js.js: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-jscript.jscript: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-kar.kar: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-latex.latex: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-lha.lha: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-lzh.lzh: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-m15.m15: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-m2v.m2v: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-m3u.m3u: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-m4p.m4p: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-m75.m75: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mac.mac: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-man.man: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-me.me: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mesh.mesh: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mid.mid: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-midi.midi: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mif.mif: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mov.mov: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-movie.movie: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mp2.mp2: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mp3.mp3: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mp4.mp4: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mpe.mpe: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mpeg.mpeg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mpg.mpg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mpga.mpga: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ms.ms: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-msh.msh: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-mxu.mxu: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-nc.nc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-oda.oda: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-odc.odc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-odf.odf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-odg.odg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-odi.odi: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-odm.odm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-odp.odp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ods.ods: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-odt.odt: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-otc.otc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-otf.otf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-otg.otg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-oth.oth: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-oti.oti: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-otp.otp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ots.ots: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ott.ott: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pbm.pbm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pct.pct: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pcx.pcx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pdb.pdb: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pdf.pdf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pgm.pgm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pgn.pgn: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ph3.ph3: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ph4.ph4: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-php.php: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-php3.php3: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-php4.php4: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-phtml.phtml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pic.pic: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pict.pict: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pl.pl: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pls.pls: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pm.pm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-png.png: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pnm.pnm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pnt.pnt: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pntg.pntg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-potm.potm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-potx.potx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ppm.ppm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ppsm.ppsm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ppsx.ppsx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ppt.ppt: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pptm.pptm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-pptx.pptx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ps.ps: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-psd.psd: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-py.py: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-qif.qif: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-qt.qt: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-qti.qti: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-qtif.qtif: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-qtz.qtz: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ra.ra: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ram.ram: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ras.ras: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-rb.rb: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-rbw.rbw: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-rgb.rgb: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-rm.rm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-roff.roff: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-rpm.rpm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-rtf.rtf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-rtx.rtx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sgi.sgi: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sgm.sgm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sgml.sgml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sh.sh: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-shar.shar: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-shtm.shtm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-shtml.shtml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-silo.silo: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sit.sit: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sitx.sitx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-skd.skd: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-skm.skm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-skp.skp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-skt.skt: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-smf.smf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-smi.smi: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-smil.smil: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-snd.snd: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-so.so: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-spl.spl: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-src.src: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sv4cpio.sv4cpio: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-sv4crc.sv4crc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-svg.svg: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-svgz.svgz: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-swf.swf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-t.t: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tar.tar: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-targa.targa: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tcl.tcl: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tex.tex: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-texi.texi: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-texinfo.texinfo: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-text.text: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tga.tga: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tgz.tgz: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tif.tif: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tiff.tiff: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-torrent.torrent: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tr.tr: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-tsv.tsv: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-txt.txt: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-ustar.ustar: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-vcard.vcard: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-vcd.vcd: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-vcf.vcf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-vfw.vfw: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-vrml.vrml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wav.wav: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wave.wave: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wax.wax: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wbmp.wbmp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wbxml.wbxml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-webarchive.webarchive: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wm.wm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wma.wma: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wmd.wmd: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wml.wml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wmlc.wmlc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wmls.wmls: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wmlsc.wmlsc: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wmp.wmp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wmv.wmv: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wmx.wmx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wrl.wrl: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-wvx.wvx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xbm.xbm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xdp.xdp: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xfd.xfd: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xfdf.xfdf: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xht.xht: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xhtm.xhtm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xhtml.xhtml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xls.xls: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xlsb.xlsb: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xlsm.xlsm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xlsx.xlsx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xltm.xltm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xltx.xltx: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xml.xml: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xpm.xpm: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xsl.xsl: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xwd.xwd: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-xyz.xyz: Added.
  • platform/mac/fast/loader/resources/mimeTypeExamples/example-zip.zip: Added.
11:28 AM Changeset in webkit [45273] by Simon Fraser
  • 8 edits in trunk/WebCore

2009-06-25 Pierre d'Herbemont <pdherbemont@apple.com>

Reviewed by Simon Fraser.

Show the fullscreen button only if the backend has support for it.

https://bugs.webkit.org/show_bug.cgi?id=26661

No test since this is not reachable via the DOM.

  • html/HTMLMediaElement.h: (WebCore::HTMLMediaElement::supportsFullscreen): new
  • html/HTMLVideoElement.h: (WebCore::HTMLVideoElement::supportsFullscreen): new
  • platform/graphics/MediaPlayer.cpp: (WebCore::NullMediaPlayerPrivate::supportsFullscreen): new (WebCore::MediaPlayer::supportsFullscreen): new
  • platform/graphics/MediaPlayer.h: new
  • platform/graphics/MediaPlayerPrivate.h: new (WebCore::MediaPlayerPrivateInterface::supportsFullscreen): new
  • rendering/MediaControlElements.cpp: (WebCore::MediaControlFullscreenButtonElement::rendererIsNeeded): new
  • rendering/MediaControlElements.h:
11:02 AM Changeset in webkit [45272] by Simon Fraser
  • 2 edits in trunk/WebCore

2009-06-25 Pierre d'Herbemont <pdherbemont@apple.com>

Reviewed by Simon Fraser.

<rdar://problem/7007776> Controller doesn't automatically update counters when file
is playing ( http://www.jazzguitar.be/mp3/Michael%20Lewis%20-%20SSSJ.mp3 )

Update the time display when the movie time changes.

  • rendering/RenderMedia.cpp: (WebCore::RenderMedia::updateControls):
11:00 AM Changeset in webkit [45271] by Simon Fraser
  • 10 edits in trunk

2009-06-25 Pierre d'Herbemont <pdherbemont@apple.com>

Reviewed by Simon Fraser.

https://bugs.webkit.org/show_bug.cgi?id=26659

Support hidding a control bar element from the Media element controller.

Update layout tests since the fullscreen button no longer has a renderer.

  • rendering/MediaControlElements.cpp: (WebCore::MediaTextDisplayElement::update): call updateStyle() so everything is updated properly. (WebCore::MediaControlInputElement::MediaControlInputElement): (WebCore::MediaControlInputElement::update): call updateStyle() (WebCore::MediaControlInputElement::updateStyle): create the renderer properly or not depending on what rendererIsNeeded() return.
  • rendering/MediaControlElements.h:
10:48 AM Changeset in webkit [45270] by kmccullough@apple.com
  • 2 edits in trunk/WebCore

2009-06-26 Kevin McCullough <kmccullough@apple.com>

Reviewed by Oliver Hunt.

<rdar://problem/6968137> Profiler title numbers increment even after a
reload.

  • Now the numbers are reset when the profiles are.
  • inspector/InspectorController.cpp: (WebCore::InspectorController::didCommitLoad):
10:36 AM Changeset in webkit [45269] by eric@webkit.org
  • 8 edits in trunk/JavaScriptCore

2009-06-26 Eric Seidel <eric@webkit.org>

No review, only rolling out r45259.

Roll out r45259 after crash appeared on the bots:
plugins/undefined-property-crash.html
ASSERTION FAILED: s <= HeapConstants<heapType>::cellSize
(leopard-intel-debug-tests/build/JavaScriptCore/runtime/Collector.cpp:278
void* JSC::Heap::heapAllocate(size_t) [with JSC::HeapType heapType = PrimaryHeap])

  • runtime/DateInstance.cpp:
  • runtime/Identifier.cpp:
  • runtime/Lookup.h:
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpObject.h:
  • runtime/ScopeChain.h:
  • runtime/UString.h:
10:17 AM Changeset in webkit [45268] by ddkilzer@apple.com
  • 2 edits in trunk/WebKitTools

Update build-dumprendertree to use buildXCodeProject()

Reviewed by Adam Roben.

  • Scripts/build-dumprendertree: Updated to use buildXCodeProject() when building for isAppleMacWebKit(). This provides additional command-line switch parsing for free. Also added --clean and --help switches. Updated copyright.
10:07 AM Changeset in webkit [45267] by cmarrin@apple.com
  • 1 edit in trunk/WebCore/page/Settings.cpp

got rid of cruft accidentally left in from my last commit

9:53 AM Changeset in webkit [45266] by adele@apple.com
  • 4 edits
    4 adds in trunk

WebCore:

2009-06-26 Adele Peterson <adele@apple.com>

Reviewed by Darin Adler.

Fix for <rdar://problem/7000796>
REGRESSION(34681): Breaking up quoted text makes new, unquoted text blue after certain steps; repros with some messages

Test: editing/inserting/break-blockquote-after-delete.html

Keep track of whether the typing style should be preserved after the TypingCommand is applied. When adding onto an open
typing command, keep that flag up to date.

In this case, an InsertParagraphSeparatorInQuotedContent command, which should not preserve typing style,
was following an open Delete command, which does preserve the typing style. So we were applying the original
typing style (from before the delete, so blue text) to the cursor in the unquoted area after breaking up the blockquote.

  • editing/TypingCommand.cpp: (WebCore::TypingCommand::TypingCommand): (WebCore::TypingCommand::typingAddedToOpenCommand): (WebCore::TypingCommand::insertTextRunWithoutNewlines): (WebCore::TypingCommand::insertLineBreak): (WebCore::TypingCommand::insertParagraphSeparator): (WebCore::TypingCommand::insertParagraphSeparatorInQuotedContent): (WebCore::TypingCommand::deleteKeyPressed): (WebCore::TypingCommand::forwardDeleteKeyPressed): (WebCore::TypingCommand::deleteSelection): (WebCore::TypingCommand::updatePreservesTypingStyle):
  • editing/TypingCommand.h: (WebCore::TypingCommand::preservesTypingStyle):

LayoutTests:

2009-06-26 Adele Peterson <adele@apple.com>

Reviewed by Darin Adler.

Test for <rdar://problem/7000796>
REGRESSION(34681): Breaking up quoted text makes new, unquoted text blue after certain steps; repros with some messages

  • editing/inserting/break-blockquote-after-delete.html: Added.
  • platform/mac/editing/inserting/break-blockquote-after-delete-expected.checksum: Added.
  • platform/mac/editing/inserting/break-blockquote-after-delete-expected.png: Added.
  • platform/mac/editing/inserting/break-blockquote-after-delete-expected.txt: Added.
9:30 AM Changeset in webkit [45265] by Simon Hausmann
  • 8 edits
    1 add in trunk

2009-06-26 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

Add support for saving and loading of QWebHistory to and from a QByteArray.

This includes streaming operators for QWebHistory. for convenience.

New autotests that test QWebHistory and QWebHistoryItem serialization.

9:29 AM Changeset in webkit [45264] by Simon Hausmann
  • 3 edits in trunk/WebKit/qt

2009-06-26 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

Fix the behaviour of QWebHistory::itemAt to interpret the specified index as absolute index.

Returns an invalid QWebHistoryItem if the index is out of range.

9:29 AM Changeset in webkit [45263] by Simon Hausmann
  • 2 edits
    11 adds in trunk/WebKit/qt

2009-06-26 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

Added a few autotest to QWebHistory.

9:29 AM Changeset in webkit [45262] by Simon Hausmann
  • 6 edits in trunk

JavaScriptCore:

2009-06-26 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

Add support for QDataStream operators to Vector.

WebCore:

2009-06-26 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

Add support for QDataStream operators to String and IntPoint.

9:27 AM Changeset in webkit [45261] by darin@chromium.org
  • 2 edits in trunk/WebCore

2009-06-26 Ben Murdoch <benm@google.com>

Reviewed by Darin Fisher.

Add #if ENABLE(DOM_STORAGE) to the V8 custom bindings for local/session storage.
https://bugs.webkit.org/show_bug.cgi?id=26757

  • bindings/v8/custom/V8StorageCustom.cpp
9:27 AM Changeset in webkit [45260] by Simon Hausmann
  • 2 edits in trunk/WebKit/qt

2009-06-26 Jedrzej Nowacki <jedrzej.nowacki@nokia.com>

Reviewed by Simon Hausmann.

Fix support for documenting functions prefixed with QWEBKIT_EXPORT

Add QWEBKIT_EXPORT to the list of macros to ignore by qdoc.

3:27 AM Changeset in webkit [45259] by eric@webkit.org
  • 8 edits in trunk/JavaScriptCore

2009-06-26 Zoltan Horvath <hzoltan@inf.u-szeged.hu>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26750

Allow custom memory allocation control for JavaScriptCore/runtime
directory's classes which instantiated by new:

class IdentifierTable
struct RegExpObjectData
class HashEntry
struct DataInstance::Cache
class UString
struct RegExpConstructorPrivate
class ScopeChain

  • runtime/DateInstance.cpp:
  • runtime/Identifier.cpp:
  • runtime/Lookup.h:
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpObject.h:
  • runtime/ScopeChain.h:
  • runtime/UString.h:
3:07 AM Changeset in webkit [45258] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

2009-06-26 Eric Seidel <eric@webkit.org>

Reviewed by Tor Arne Vestbø.

Remove non-sense --update option to land-patches
and make land-patches update before every patch application.
This makes it slightly less likely that multi-patch landings will fail.

Also updated git diff command to include staged modifications.

  • Scripts/bugzilla-tool:
  • Scripts/modules/scm.py:
3:06 AM Changeset in webkit [45257] by eric@webkit.org
  • 9 edits
    2 adds in trunk

2009-06-26 Yongjun Zhang <yongjun.zhang@nokia.com>

Reviewed by Eric Seidel.

Bug 20303: [Qt] Key events are not working in frames.

Add a layout test to test the event is sent to the right sub-frame.

  • platform/qt/fast/events/event-sender-keydown-frame-expected.txt: Added.
  • platform/qt/fast/events/event-sender-keydown-frame.html: Added.

2009-06-26 Yongjun Zhang <yongjun.zhang@nokia.com>

Reviewed by Eric Seidel.

Test: platform/qt/fast/events/event-sender-keydown-frame.html

Bug 20303: [Qt] Key events are not working in frames.

Merge scrolling handling code in qt and win port, move it to
EventHandler.

  • page/EventHandler.cpp: (WebCore::EventHandler::scrollRecursively):
  • page/EventHandler.h:

2009-06-26 Yongjun Zhang <yongjun.zhang@nokia.com>

Reviewed by Eric Seidel.

Bug 20303: [Qt] Key events are not working in frames.

Send scrolling events to current focused frame, bubble the event
up to parent frame if it is not handled. Use EventHandler's new
shared scrolling code.

  • Api/qwebpage.cpp: (QWebPagePrivate::keyPressEvent): (QWebPagePrivate::handleScrolling):
  • Api/qwebpage_p.h:

2009-06-26 Yongjun Zhang <yongjun.zhang@nokia.com>

Reviewed by Eric Seidel.

Bug 20303: [Qt] Key events are not working in frames.

Move the scroll handling code to EventHandler so that other
ports can share the functionality.

  • WebView.cpp: (WebView::keyDown): (EnumTextMatches::QueryInterface):
2:42 AM Changeset in webkit [45256] by rwlbuis@webkit.org
  • 3 edits
    4 adds in trunk

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=26682
Bug 26682: It should be possible to add image to SVG DOM programmatically (using JavaScript)

Make sure the xlink:href animated property setting syncs the corresponding attribute with the right namespace.

Test: svg/custom/createImageElement.svg

2:36 AM Changeset in webkit [45255] by eric@webkit.org
  • 5 edits
    3 adds in trunk

2009-06-26 Takeshi Yoshino <tyoshino@google.com>

Reviewed by Timothy Hatcher.

Bug 26156: In view-source mode, always render the contents using HTMLViewSourceDocument
https://bugs.webkit.org/show_bug.cgi?id=26156

When in view-source mode, render the contents using HTMLViewSourceDocument
regardless it's applicable for any plugin or not.

Chromium tells WebCore to render the contents of specified URL when
view-source: prefix is added to the URL. But currently, DOMImplementation
ignores inViewSourceMode() when the MIME type is indicating that the contents
are neither texts nor HTML family documents.

For example, we can check the contents of asf file without launching media
player. Rendering contents for view-source:-specified input is not what user
expects.

http://code.google.com/p/chromium/issues/detail?id=10545

I want to fix this issue by this patch. IMHO, regardless of this Chromium
specific issue, I think we should force use of HTMLViewSourceDocument when
inViewSourceMode() is specified.

  • fast/frames/resources/viewsource-fake-image-file.png: Added.
  • fast/frames/viewsource-on-image-file.html: Added.
  • platform/mac/fast/frames/viewsource-on-image-file-expected.txt: Added.

2009-06-26 Takeshi Yoshino <tyoshino@google.com>

Reviewed by Timothy Hatcher.

Bug 26156: In view-source mode, always render the contents using HTMLViewSourceDocument
https://bugs.webkit.org/show_bug.cgi?id=26156

When in view-source mode, render the contents using HTMLViewSourceDocument
regardless it's applicable for any plugin or not.

Chromium tells WebCore to render the contents of specified URL when
view-source: prefix is added to the URL. But currently, DOMImplementation
ignores inViewSourceMode() when the MIME type is indicating that the contents
are neither texts nor HTML family documents.

For example, we can check the contents of asf file without launching media
player. Rendering contents for view-source:-specified input is not what user
expects.

http://code.google.com/p/chromium/issues/detail?id=10545

I want to fix this issue by this patch. IMHO, regardless of this Chromium
specific issue, I think we should force use of HTMLViewSourceDocument when
inViewSourceMode() is specified.

Test: fast/frames/viewsource-on-image-file.html

  • dom/DOMImplementation.cpp: (WebCore::DOMImplementation::createDocument):
  • html/HTMLViewSourceDocument.cpp: (WebCore::HTMLViewSourceDocument::createTokenizer):
  • html/HTMLViewSourceDocument.h:
2:25 AM Changeset in webkit [45254] by ap@webkit.org
  • 5 edits in trunk

Reviewed by Sam Weinig.

<rdar://problem/6651201> Update lookalike character list.

  • Misc/WebNSURLExtras.mm: (isLookalikeCharacter): Added more characters to the list.
2:20 AM Changeset in webkit [45253] by eric@webkit.org
  • 2 edits
    7 adds in trunk/LayoutTests

2009-06-26 Jungshik Shin <jshin@chromium.org>

Reviewed by Eric Seidel.

Add an additional test for bug 23786 (mistreatment of CR/LF
as zero-width characters in Chromium port). Tests using Bidi text were
added when the fix was checked in. Without the patch, Chromium used
to fail the same way with LTR complex scripts as well. (that is,
CR and LF were treated as zero-width space). To prevent a potential
regression in the future, a new test with Hindi (a LTR complex script)
is added.

The expected results for Mac and Windows are added while this test
is added to Skipped file for gtk. I guess this test just needs
a new test result generated on gtk.

https://bugs.webkit.org/show_bug.cgi?id=25698

  • fast/text/international/hindi-whitespace.html: Added.
  • platform/gtk/Skipped:
  • platform/mac/fast/text/international/hindi-whitespace-expected.checksum: Added.
  • platform/mac/fast/text/international/hindi-whitespace-expected.png: Added.
  • platform/mac/fast/text/international/hindi-whitespace-expected.txt: Added.
  • platform/win/fast/text/international/hindi-whitespace-expected.checksum: Added.
  • platform/win/fast/text/international/hindi-whitespace-expected.png: Added.
  • platform/win/fast/text/international/hindi-whitespace-expected.txt: Added.
2:12 AM Changeset in webkit [45252] by xan@webkit.org
  • 2 edits in trunk/WebCore

2009-06-26 Xan Lopez <xlopez@igalia.com>

Reviewed by Jan Alonzo.

https://bugs.webkit.org/show_bug.cgi?id=25529
[Gtk] Expected states not exposed to assistive technologies

Add support for VISIBLE, EDITABLE and SENSITIVE states.

  • accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (setAtkStateSetFromCoreObject):
1:40 AM Changeset in webkit [45251] by eric@webkit.org
  • 4 edits in trunk/WebCore

2009-06-26 Laszlo Gombos <Laszlo Gombos>

Reviewed by Darin Adler.

"Pointer to incomplete class type is not allowed" error with RVCT
https://bugs.webkit.org/show_bug.cgi?id=26721

Based on Norbert Leser's work.

  • dom/Document.cpp: (WebCore::Document::setFocusedNode):
  • dom/Node.cpp: (WebCore::Node::dispatchMouseEvent):
  • dom/Node.h: Remove the default value for PassRefPtr<Event> args, to eliminate dependency on the Event class definition
1:32 AM Changeset in webkit [45250] by eric@webkit.org
  • 2 edits in trunk/WebKitTools

2009-06-25 Eric Seidel <eric@webkit.org>

Reviewed by Jan Alonzo.

Fix obsolete_attachment to work when passed a comment.
https://bugs.webkit.org/show_bug.cgi?id=26745

  • Scripts/modules/bugzilla.py:
1:28 AM Changeset in webkit [45249] by eric@webkit.org
  • 3 edits in trunk/WebKitTools

2009-06-25 Jan Michael Alonzo <jmalonzo@webkit.org>

Reviewed by Mark Rowe.

bugzilla-tool apply-patch throws exception in Linux
https://bugs.webkit.org/show_bug.cgi?id=26738

HEAD is case-sensitive in Linux. Convert uses of head to HEAD in
the scm module.

  • Scripts/modules/scm.py:
12:58 AM Changeset in webkit [45248] by eric@webkit.org
  • 2 edits in trunk/WebCore

2009-06-26 Laszlo Gombos <Laszlo Gombos>

Reviewed by Maciej Stachowiak.

[Qt] Build fix after r45183
https://bugs.webkit.org/show_bug.cgi?id=26748

  • WebCore.pro:
Note: See TracTimeline for information about the timeline view.