Timeline



Dec 21, 2010:

11:16 PM Changeset in webkit [74465] by Darin Adler
  • 2 edits in trunk/WebCore

Unreviewed correction to unreviewed build fix for r74447.

Inappropriate code was left behind in sourceURI function for non-Dashboard platforms.

  • html/HTMLImageLoader.cpp:

(WebCore::HTMLImageLoader::sourceURI): Change the logic so all the bug-workaround
logic is inside the #ifdef.

10:20 PM Changeset in webkit [74464] by tonyg@chromium.org
  • 2 edits in trunk/JavaScriptCore

2010-12-21 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r74462.
http://trac.webkit.org/changeset/74462
https://bugs.webkit.org/show_bug.cgi?id=51449

broke chromium win (Requested by tonyg-cr on #webkit).

9:58 PM Changeset in webkit [74463] by Simon Fraser
  • 8 edits in trunk/WebCore

2010-12-21 Simon Fraser <Simon Fraser>

Reviewed by Darin Adler.

Include the shadow color space as part of the GraphicsContext state
https://bugs.webkit.org/show_bug.cgi?id=51420

Include the ColorSpace for the shadow color as part of the graphics
state. This will be used later for a shadow implementation that
does not rely on platform shadow code.

  • platform/graphics/GraphicsContext.cpp: (WebCore::GraphicsContext::setShadow): (WebCore::GraphicsContext::clearShadow): (WebCore::GraphicsContext::getShadow):
  • platform/graphics/GraphicsContext.h: (WebCore::GraphicsContextState::GraphicsContextState):
  • platform/graphics/chromium/FontChromiumWin.cpp: (WebCore::TransparencyAwareFontPainter::TransparencyAwareGlyphPainter::drawGlyphs): (WebCore::Font::drawComplexText):
  • platform/graphics/mac/FontMac.mm: (WebCore::Font::drawGlyphs):
  • platform/graphics/skia/SkiaFontWin.cpp: (WebCore::windowsCanHandleDrawTextShadow):
  • platform/graphics/win/FontCGWin.cpp: (WebCore::drawGDIGlyphs): (WebCore::Font::drawGlyphs):
  • platform/graphics/wince/GraphicsContextWinCE.cpp: (WebCore::GraphicsContext::fillRoundedRect): (WebCore::GraphicsContext::drawText):
9:56 PM Changeset in webkit [74462] by tonyg@chromium.org
  • 2 edits in trunk/JavaScriptCore

2010-12-21 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

[chromium] Build fix after r74431
https://bugs.webkit.org/show_bug.cgi?id=51447

9:55 PM Changeset in webkit [74461] by barraclough@apple.com
  • 3 edits in trunk/LayoutTests

Bug 26276 - Need a mechanism to determine stack extent

Reviewed by Oliver Hunt.

Correctly measuring available stack increases the size of expression we can handle!

  • fast/js/large-expressions-expected.txt:
  • fast/js/script-tests/large-expressions.js:
9:40 PM Changeset in webkit [74460] by Laszlo Gombos
  • 2 edits in trunk/WebKit2

2010-12-21 Siddharth Mathur <siddharth.mathur@nokia.com>

Reviewed by Laszlo Gombos.

[Qt] [WK2] Guard gcc-specific syntax

  • WebKit2.pro: Non-gcc based compliers choke on the "-include" syntax for preinclude, make sure it has guard around it.
9:09 PM Changeset in webkit [74459] by tonyg@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-21 Dan Bernstein <mitz@apple.com>

Reviewed by Sam Weinig.

<rdar://problem/8668230> REGRESSION (r71884): Returning alternate requests from willSendRequest can prevent other requests from ever being sent
https://bugs.webkit.org/show_bug.cgi?id=51413

  • platform/mac/security/block-test-expected.txt: Reverted r71884.
9:09 PM Changeset in webkit [74458] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix.

8:54 PM Changeset in webkit [74457] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix.

8:39 PM Changeset in webkit [74456] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Speculative build fix.

  • jit/ExecutableAllocator.cpp:

(JSC::ExecutableAllocator::underMemoryPressure):

8:29 PM Changeset in webkit [74455] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Bug 26276 - Need a mechanism to determine stack extent

Reviewed by Oliver Hunt.

This patch adds accurate stack size calculation for:

DARWIN, QNX, UNIX

We still need to fix:

WINDOWS, SOLARIS, OPENBSD, SYMBIAN, HAIKU, WINCE

  • wtf/StackBounds.cpp:

(WTF::StackBounds::initialize):

8:18 PM Changeset in webkit [74454] by barraclough@apple.com
  • 12 edits in trunk/JavaScriptCore

Reviewed by Geoff Garen.


<rdar://problem/8765333> CRASH running out of executable memory, loading io9.com
https://bugs.webkit.org/show_bug.cgi?id=51443

The problem here is that each page uses a reasonable amount of memory, (~4Mb),
and that when miultiple pages are open we keep all JIT code for all functions
in all pages alive.

Add a check to detect high memory pressure situations in the executable allocator
(>50% of available memory allocated), and upon a top level entry into JSC (no code
running on the stack) in this situation throw away all JIT code.

(JSC::Debugger::recompileAllJSFunctions): stop passing exec to recompile.

  • jit/ExecutableAllocator.h:
  • jit/ExecutableAllocatorFixedVMPool.cpp:

(JSC::ExecutablePool::systemAlloc): Count allocations.
(JSC::ExecutablePool::systemRelease): Count deallocations.
(JSC::ExecutablePool::underMemoryPressure): Check memory pressure.

  • jit/ExecutableAllocatorPosix.cpp:

(JSC::ExecutablePool::underMemoryPressure): Stub out; only meaningful with FixedVMPool.

  • jit/ExecutableAllocatorWin.cpp:

(JSC::ExecutablePool::underMemoryPressure): Stub out; only meaningful with FixedVMPool.

  • runtime/Executable.cpp:

(JSC::FunctionExecutable::recompile): Remove ExecState argument to recompile.

  • runtime/Executable.h:
  • runtime/JSGlobalData.cpp:

(JSC::JSGlobalData::recompileAllJSFunctions): throws away all JIT code.

  • runtime/JSGlobalData.h:
  • runtime/JSGlobalObject.h:

(JSC::DynamicGlobalObjectScope::DynamicGlobalObjectScope): add check / call to throw away.

8:10 PM Changeset in webkit [74453] by mitz@apple.com
  • 7 edits in trunk

2010-12-21 Dan Bernstein <mitz@apple.com>

Reviewed by Sam Weinig.

<rdar://problem/8668230> REGRESSION (r71884): Returning alternate requests from willSendRequest can prevent other requests from ever being sent
https://bugs.webkit.org/show_bug.cgi?id=51413

71884 was wrong in moving willSendRequest to ResourceLoader::start(). It’s wrong to do all the
scheduling, which is host-dependent, before calling willSendRequest, because the latter can
change the host.

  • loader/NetscapePlugInStreamLoader.cpp: (WebCore::NetscapePlugInStreamLoader::create): Check the return value from ResourceLoader::init() and return 0 if it is false.
  • loader/ResourceLoader.cpp: (WebCore::ResourceLoader::init): Made this function return a boolean. Moved the call to willSendRequest() from start() into here. Return false if willSendRequest() canceled the request. (WebCore::ResourceLoader::start): Moved the call to willSendRequest() from here to init().
  • loader/ResourceLoader.h:
  • loader/SubresourceLoader.cpp: (WebCore::SubresourceLoader::create): Check the return value from ResourceLoader::init() and return 0 if it is false.

2010-12-21 Dan Bernstein <mitz@apple.com>

Reviewed by Sam Weinig.

<rdar://problem/8668230> REGRESSION (r71884): Returning alternate requests from willSendRequest can prevent other requests from ever being sent
https://bugs.webkit.org/show_bug.cgi?id=51413

  • platform/mac/security/block-test-expected.txt: Reverted r71884.
7:44 PM Changeset in webkit [74452] by commit-queue@webkit.org
  • 5 edits
    2 adds in trunk

2010-12-21 Benjamin Kalman <kalman@chromium.org>

Reviewed by Darin Adler.

Shift-End does not select to the end of the line
https://bugs.webkit.org/show_bug.cgi?id=50610

Add regression test that shift-end selects to the end of the line for both LTR and RTL text.
Rebaseline a test which assumed incorrect behaviour of shift-end not selecting to the end of
the line, but rather moving cursor to the start of the line above.

  • editing/selection/extend-selection-home-end-expected.txt: New baseline.
  • editing/selection/extend-to-line-boundary-expected.txt: Added.
  • editing/selection/extend-to-line-boundary.html: Added.
  • platform/win/editing/selection/extend-selection-home-end-expected.txt: New baseline.

2010-12-21 Benjamin Kalman <kalman@chromium.org>

Reviewed by Darin Adler.

Shift-End does not select to the end of the line
https://bugs.webkit.org/show_bug.cgi?id=50610

Let the VisiblePosition affinity for end of line selection to be set by
visibleEnd/visibleStart rather than using end/start and always using UPSTREAM.

Test: editing/selection/extend-to-line-boundary.html

  • editing/SelectionController.cpp: (WebCore::SelectionController::positionForPlatform): Use visibleStart/visibleEnd rather than start/end. (WebCore::SelectionController::modifyExtendingForward): Don't explicitly use UPSTREAM affinity.
7:42 PM Changeset in webkit [74451] by ariya@webkit.org
  • 3 edits
    4 adds in trunk

2010-12-21 Jan Erik Hanssen <jhanssen@sencha.com>

Reviewed by Simon Fraser.

matrix3d() must take the zoom factor into account
https://bugs.webkit.org/show_bug.cgi?id=51408

  • transforms/3d/general/matrix-with-zoom-3d-expected.checksum: Added.
  • transforms/3d/general/matrix-with-zoom-3d-expected.png: Added.
  • transforms/3d/general/matrix-with-zoom-3d-expected.txt: Added.
  • transforms/3d/general/matrix-with-zoom-3d.html: Added.

2010-12-21 Jan Erik Hanssen <jhanssen@sencha.com>

Reviewed by Simon Fraser.

matrix3d() must take the zoom factor into account
https://bugs.webkit.org/show_bug.cgi?id=51408

Test: transforms/3d/general/matrix-with-zoom-3d.html

  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::createTransformOperations):
7:25 PM Changeset in webkit [74450] by aestes@apple.com
  • 4 edits in trunk/Tools

2010-12-21 Andy Estes <aestes@apple.com>

Reviewed by Mark Rowe.

Do not build non-Intel architectures for WebKit2-related projects.
https://bugs.webkit.org/show_bug.cgi?id=51440

  • MiniBrowser/Configurations/Base.xcconfig: Only build for i386 and x86_64.
  • TestWebKitAPI/Configurations/Base.xcconfig: Ditto.
  • WebKitTestRunner/Configurations/Base.xcconfig: Ditto.
7:10 PM Changeset in webkit [74449] by abarth@webkit.org
  • 12 edits in trunk/WebCore

2010-12-21 Adam Barth <abarth@webkit.org>

Reviewed by Darin Adler.

Move V8 to common implementation of window.open
https://bugs.webkit.org/show_bug.cgi?id=51385

I also changed some function names to match WebKit style. There's a
bunch of code we can remove in the generic bindings now. I'll do that
in the next patch.

  • bindings/generic/BindingDOMWindow.h: (WebCore::::open):
  • bindings/generic/BindingFrame.h: (WebCore::::navigateIfAllowed):
  • bindings/generic/BindingSecurity.h: (WebCore::::canAccessWindow): (WebCore::::allowPopUp): (WebCore::::shouldAllowNavigation):
  • bindings/generic/GenericBinding.h: (WebCore::completeURL):
  • bindings/js/JSDOMBinding.cpp: (WebCore::toLexicalFrame): (WebCore::toDynamicFrame):
  • bindings/js/specialization/JSBindingState.cpp: (WebCore::::activeFrame): (WebCore::::firstFrame):
  • bindings/js/specialization/JSBindingState.h:
  • bindings/v8/V8Utilities.cpp: (WebCore::callingOrEnteredFrame):
  • bindings/v8/custom/V8DOMWindowCustom.cpp: (WebCore::V8DOMWindow::locationAccessorSetter): (WebCore::V8DOMWindow::openCallback):
  • bindings/v8/specialization/V8BindingState.cpp: (WebCore::::activeWindow): (WebCore::::firstWindow): (WebCore::::activeFrame): (WebCore::::firstFrame):
  • bindings/v8/specialization/V8BindingState.h:
6:40 PM Changeset in webkit [74448] by rniwa@webkit.org
  • 2 edits in trunk/WebCore

2010-12-21 Ryosuke Niwa <rniwa@webkit.org>

Unreviewed build fix for r74447.

Call usesDashboardBackwardCompatibilityMode() only if DASHBOARD_SUPPORT is enabled.

  • html/HTMLImageLoader.cpp: (WebCore::HTMLImageLoader::sourceURI):
6:19 PM Changeset in webkit [74447] by mitz@apple.com
  • 3 edits
    4 adds in trunk

WebCore: <rdar://problem/8725702> REGRESSION (r68854): Broken image icon seen in the Address Book Dashboard widget

Reviewed by John Sullivan.

Test: platform/mac/fast/dom/HTMLImageElement/dashboard-src-quirk.html

The Address Book widget sets the src attribute of an img element to a string that looks like a CSS
URL value. This used to work prior to r68854, because some DOM attribute parsing functions were using
the wrong function to parse URL attributes (last named deprecatedParseURL).

  • html/HTMLImageLoader.cpp:

(WebCore::HTMLImageLoader::sourceURI): In Dashboard, check if the src attribute begins with 'url("'
and ends with '")', and if so, strip those away.

LayoutTests: <rdar://problem/8725702> REGRESSION(r68854): Broken image icon seen in the Address Book Dashboard widget

Reviewed by John Sullivan.

  • platform/mac/fast/dom/HTMLImageElement/dashboard-src-quirk-expected.txt: Added.
  • platform/mac/fast/dom/HTMLImageElement/dashboard-src-quirk.html: Added.
  • platform/mac/fast/dom/HTMLImageElement/resources: Added.
  • platform/mac/fast/dom/HTMLImageElement/resources/blue_rect.jpg: Added.
6:16 PM Changeset in webkit [74446] by cwzwarich@webkit.org
  • 2 edits in trunk/WebKit/mac

Reviewed by Darin Adler.

-[WebBasePluginPackage isNativeLibraryData:] integer underflows on zero-sized data
https://bugs.webkit.org/show_bug.cgi?id=51431
<rdar://problem/8791757>

  • Plugins/WebBasePluginPackage.mm:

(-[WebBasePluginPackage isNativeLibraryData:]): Change an arithmetic expression so
it doesn't underflow.

6:01 PM Changeset in webkit [74445] by andersca@apple.com
  • 4 edits in trunk/WebKit2

2010-12-21 Anders Carlsson <andersca@apple.com>

Reviewed by Darin Adler.

Can't stop QT music on santastreefarm.com
https://bugs.webkit.org/show_bug.cgi?id=51438
<rdar://problem/8741152>

Implement NPN_ConvertPoint.

  • WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp: (WebKit::NPN_ConvertPoint): Call NetscapePlugin::convertPoint.

(WebKit::initializeBrowserFuncs):
Only initialize NPN_ConvertPoint and NPN_PopUpContextMenu on Mac.

  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm: (WebKit::NetscapePlugin::convertPoint): Implement conversion routines.

(WebKit::NetscapePlugin::windowAndViewFramesChanged):
Keep track of the window and view frames, they are needed to do coordinate conversion.

5:59 PM Changeset in webkit [74444] by rniwa@webkit.org
  • 3 edits in trunk/WebCore

2010-12-21 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Darin Adler.

CharacterData needs cleanup
https://bugs.webkit.org/show_bug.cgi?id=51426

Extracted CharacterData::setDataAndNotify and CharacterData::updateRenderer.

  • dom/CharacterData.cpp: (WebCore::CharacterData::setData): Calls setDataAndUpdate. (WebCore::CharacterData::parserAppendData): Ditto. (WebCore::CharacterData::appendData): Ditto. (WebCore::CharacterData::insertData): Ditto. (WebCore::CharacterData::deleteData): Ditto. (WebCore::CharacterData::replaceData): Ditto. (WebCore::CharacterData::setDataAndUpdate): Added. (WebCore::CharacterData::updateRenderer): Added. (WebCore::CharacterData::dispatchModifiedEvent): Renamed prevValue to oldData.
  • dom/CharacterData.h:
5:41 PM Changeset in webkit [74443] by tonyg@chromium.org
  • 8 edits in trunk/WebCore

2010-12-21 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r74420.
http://trac.webkit.org/changeset/74420
https://bugs.webkit.org/show_bug.cgi?id=51436

causes editing/pasteboard/paste-noscript-xhtml.xhtml to crash
(Requested by tonyg-cr on #webkit).

  • dom/DocumentParser.cpp:
  • dom/DocumentParser.h:
  • html/parser/HTMLDocumentParser.cpp:
  • html/parser/HTMLDocumentParser.h:
  • html/parser/HTMLParserScheduler.cpp: (WebCore::HTMLParserScheduler::HTMLParserScheduler):
  • html/parser/HTMLParserScheduler.h: (WebCore::HTMLParserScheduler::isScheduledForResume):
  • page/PageGroupLoadDeferrer.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
5:34 PM Changeset in webkit [74442] by kbr@google.com
  • 4 edits in trunk/WebCore

2010-12-21 Kenneth Russell <kbr@google.com>

Reviewed by Darin Fisher.

Enable extensions used in accelerated 2D canvas implementation
https://bugs.webkit.org/show_bug.cgi?id=51433

Call Extensions3D::ensureEnabled() for all supported extensions
the accelerated 2D Canvas implementation uses. Tested with a few
layout tests previously failing when run in Chromium due to OpenGL
INVALID_ENUM and other errors.

  • platform/graphics/gpu/DrawingBuffer.cpp: (WebCore::DrawingBuffer::create):
  • platform/graphics/gpu/SharedGraphicsContext3D.cpp: (WebCore::SharedGraphicsContext3D::SharedGraphicsContext3D): (WebCore::SharedGraphicsContext3D::supportsBGRA):
  • platform/graphics/gpu/SharedGraphicsContext3D.h:
5:30 PM Changeset in webkit [74441] by barraclough@apple.com
  • 4 edits in trunk/JavaScriptCore

<rdar://problem/8241425> JIT executable memory excessive usage due to regex caching
https://bugs.webkit.org/show_bug.cgi?id=51434

Reviewed by Geoff Garen.

Reduce the amount of memory the RegExpCache can hold on to on iOS.
Currently the RegExpCache can hold 256 RegExp objects. If each falls into a separate
ExecutablePool, with a common size of 16Kb, this means we end up holding onto 4Mb of
memory. Firstly, we can reduce this by simply reducing the size of the cache to 32
entries. Secondly, we can use a separate set of ExecutablePools for JIT code generated
from RegExp objects. This helps in two ways (1) it increases the probability that
RegExps in the cache share the same pool, and (2) it means that a RegExp can't end
up holding on to a large ExecutablePool containing a translation of JS code.
(A RegExp could end up keeping a larger RegExp alive that happened to be sharing the
same pool, but large RegExp patterns are less common).

  • runtime/JSGlobalData.h:
  • runtime/RegExpCache.h:
  • yarr/RegexJIT.cpp:

(JSC::Yarr::RegexGenerator::compile):

5:08 PM Changeset in webkit [74440] by zmo@google.com
  • 18 edits
    2 adds in trunk

2010-12-21 Zhenyao Mo <zmo@google.com>

Reviewed by Kenneth Russell.

WebGLRenderingContext needs to zero textures and renderbuffers
https://bugs.webkit.org/show_bug.cgi?id=49355

  • src/WebGraphicsContext3DDefaultImpl.cpp: (WebKit::WebGraphicsContext3DDefaultImpl::texImage2D): Generate an INVALID_VALUE if pixels==null is passed in.

2010-12-21 Zhenyao Mo <zmo@google.com>

Reviewed by Kenneth Russell.

WebGLRenderingContext needs to zero textures and renderbuffers
https://bugs.webkit.org/show_bug.cgi?id=49355

Test: fast/canvas/webgl/uninitialized-test.html

  • html/canvas/WebGLFramebuffer.cpp: (WebCore::WebGLFramebuffer::onAccess): Use a parameter to decide if renderbuffer initialization is needed. (WebCore::WebGLFramebuffer::initializeRenderbuffers): Don't return false if color buffer doesn't exist.
  • html/canvas/WebGLFramebuffer.h: Modify onAccess with an added parameter.
  • html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::clear): Call onAccess with an added parameter. (WebCore::WebGLRenderingContext::copyTexImage2D): Ditto. (WebCore::WebGLRenderingContext::copyTexSubImage2D): Ditto. (WebCore::WebGLRenderingContext::drawArrays): Ditto. (WebCore::WebGLRenderingContext::drawElements): Ditto. (WebCore::WebGLRenderingContext::readPixels): Ditto. (WebCore::WebGLRenderingContext::texImage2DBase): Create buffer data of 0s if input is null to initialize textures.
  • platform/graphics/GraphicsContext3D.cpp: (WebCore::GraphicsContext3D::texImage2DResourceSafe): Helper function that initialize all pixels to 0.
  • platform/graphics/GraphicsContext3D.h:
  • platform/graphics/chromium/Canvas2DLayerChromium.cpp: (WebCore::Canvas2DLayerChromium::updateContentsIfDirty): Use texImage2DResourceSafe.
  • platform/graphics/chromium/DrawingBufferChromium.cpp: (WebCore::generateColorTexture): Ditto.
  • platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::prepareToDrawLayers): Ditto.
  • platform/graphics/chromium/TextureManager.cpp: (WebCore::TextureManager::requestTexture): Ditto.
  • platform/graphics/chromium/VideoLayerChromium.cpp: (WebCore::VideoLayerChromium::allocateTexture): Ditto.
  • platform/graphics/gpu/DrawingBuffer.cpp: (WebCore::DrawingBuffer::reset): Use texImage2DResourceSafe; also, only initialize depth/stencil buffer.
  • platform/graphics/gpu/SharedGraphicsContext3D.cpp: (WebCore::SharedGraphicsContext3D::texImage2D): Use texImage2DResourceSafe.
  • platform/graphics/gpu/Texture.cpp: (WebCore::Texture::create): Ditto.
  • platform/graphics/opengl/GraphicsContext3DOpenGL.cpp: (WebCore::GraphicsContext3D::texImage2D): Generate an INVALID_VALUE if pixels==null is passed in.

2010-12-21 Zhenyao Mo <zmo@google.com>

Reviewed by Kenneth Russell.

WebGLRenderingContext needs to zero textures and renderbuffers
https://bugs.webkit.org/show_bug.cgi?id=49355

  • fast/canvas/webgl/uninitialized-test-expected.txt: Added.
  • fast/canvas/webgl/uninitialized-test.html: Added.
5:06 PM Changeset in webkit [74439] by crogers@google.com
  • 1 edit
    2 adds in trunk/WebCore

2010-12-21 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

Add AudioBusChromium for decoding audio file data
https://bugs.webkit.org/show_bug.cgi?id=51430

No new tests since audio API is not yet implemented.

  • platform/audio/chromium: Added.
  • platform/audio/chromium/AudioBusChromium.cpp: Added. (WebCore::createBusFromInMemoryAudioFile):
4:45 PM Changeset in webkit [74438] by kbr@google.com
  • 2 edits in trunk/LayoutTests

2010-12-21 Kenneth Russell <kbr@google.com>

Unreviewed test expectations update. Remove the following five
expected text differences from the chromium-gpu test expectations
file, because these tests are now passing in DumpRenderTree (and
Chromium with --in-process-webgl --disable-accelerated-compositing):

canvas/philip/tests/2d.shadow.transform.2.html
canvas/philip/tests/2d.imageData.get.source.outside.html
fast/canvas/canvas-scale-fillRect-shadow.html
fast/canvas/canvas-scale-fillPath-shadow.html
fast/canvas/canvas-scale-strokePath-shadow.html

  • platform/chromium-gpu/test_expectations.txt:
4:43 PM Changeset in webkit [74437] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Windows build fix.

4:37 PM Changeset in webkit [74436] by weinig@apple.com
  • 4 edits in trunk/WebKit2

Implement encoding/decoding of ResourceRequest and
ResourceResponse for Windows/CFNetwork.

Reviewed by Anders Carlsson.

  • Shared/win/WebCoreArgumentCodersWin.cpp:

(CoreIPC::encodeResourceRequest):
(CoreIPC::decodeResourceRequest):
(CoreIPC::encodeResourceResponse):
(CoreIPC::decodeResourceResponse):

  • win/WebKit2.vcproj:
  • win/WebKit2Common.vsprops:
4:11 PM Changeset in webkit [74435] by aestes@apple.com
  • 2 edits in trunk/LayoutTests

Rebaseline test for r74427.

  • http/tests/local/formdata/send-form-data-with-sliced-file-expected.txt: Updated.
4:04 PM Changeset in webkit [74434] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Eeeep! build fix!

  • wtf/OSAllocator.h:

(WTF::OSAllocator::decommitAndRelease):

4:01 PM Changeset in webkit [74433] by crogers@google.com
  • 3 edits
    241 adds in trunk/WebCore

2010-12-21 Chris Rogers <crogers@google.com>

Reviewed by Kenneth Russell.

Add web audio spatialization resource files
https://bugs.webkit.org/show_bug.cgi?id=50998

No new tests since audio API is not yet implemented.

  • platform/audio/HRTFElevation.cpp: (WebCore::HRTFElevation::calculateKernelsForAzimuthElevation):
  • platform/audio/mac/AudioBusMac.mm: (WebCore::AudioBus::loadPlatformResource):
  • platform/audio/resources: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T000_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T015_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T030_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T045_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T060_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T075_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T090_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T105_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T120_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T135_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T150_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T165_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T180_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T195_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T210_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T225_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T240_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T255_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T270_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T285_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T300_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T315_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T330_P345.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P000.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P015.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P030.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P045.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P060.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P075.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P090.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P315.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P330.wav: Added.
  • platform/audio/resources/IRC_Composite_C_R0195_T345_P345.wav: Added.
3:56 PM Changeset in webkit [74432] by barraclough@apple.com
  • 2 edits in trunk/JavaScriptCore

Ooops, fixed typo in comment.

  • wtf/OSAllocator.h:
3:53 PM Changeset in webkit [74431] by barraclough@apple.com
  • 24 edits
    4 adds
    1 delete in trunk

JavaScriptCore: Added PageAllocationAligned, a cross-platform abstraction for memory allocations with arbitrary alignment requirements
https://bugs.webkit.org/show_bug.cgi?id=51359

Patch by Geoffrey Garen <ggaren@apple.com> on 2010-12-21
Reviewed by Gavin Barraclough & Oliver Hunt.

I think this patch fixes <rdar://problem/8107952> [5.0.1] WER crash in
Heap::allocateBlock (1902752929), and some other leaks and crashes as well.

  • runtime/AlignedMemoryAllocator.h: Removed. Supplanted by

PageAllocationAligned.

  • runtime/Collector.cpp:

(JSC::Heap::destroy):
(JSC::Heap::allocateBlock):
(JSC::Heap::freeBlock):
(JSC::Heap::addWeakGCHandle):

  • runtime/Collector.h: Switched from AlignedMemoryAllocator to

PageAllocationAligned.

  • runtime/GCHandle.cpp:
  • runtime/GCHandle.h: Ditto.
  • wtf/PageAllocation.h:

(WTF::PageAllocation::PageAllocation): Removed aligned memory allocation
functions. Supplanted by PageAllocationAligned.

  • wtf/PageAllocationAligned.cpp: Added.

(WTF::PageAllocationAligned::allocate):
(WTF::PageAllocationAligned::deallocate):

  • wtf/PageAllocationAligned.h: Added.

(WTF::PageAllocationAligned::PageAllocationAligned): New cross-platform
class for doing aligned memory allocation. This class properly matches
allocation and deallocation library calls, fixing a long-standing bug
in PageAllocation.

  • wtf/Platform.h: Removed some defunction VM platform defines.
  • wtf/wtf.pri: Updated build files.

JavaScriptGlue: Added PageAllocationAligned, a cross-platform abstraction for memory allocations with arbitrary alignment requirements
https://bugs.webkit.org/show_bug.cgi?id=51359

Patch by Geoffrey Garen <ggaren@apple.com> on 2010-12-21
Reviewed by Gavin Barraclough & Oliver Hunt.

  • ForwardingHeaders/wtf/PageAllocationAligned.h: Added.

WebCore: Added PageAllocationAligned, a cross-platform abstraction for memory allocations with arbitrary alignment requirements
https://bugs.webkit.org/show_bug.cgi?id=51359

Patch by Geoffrey Garen <ggaren@apple.com> on 2010-12-21
Reviewed by Gavin Barraclough & Oliver Hunt.

  • ForwardingHeaders/wtf/PageAllocationAligned.h: Added.
3:26 PM Changeset in webkit [74430] by ariya@webkit.org
  • 3 edits
    4 adds in trunk

2010-12-21 Ariya Hidayat <ariya@sencha.com>

Reviewed by Simon Fraser.

https://bugs.webkit.org/show_bug.cgi?id=49774
Need to scale translation values in matrix() by the zoom factor.

  • fast/transforms/matrix-with-zoom-expected.checksum: Added.
  • fast/transforms/matrix-with-zoom-expected.png: Added.
  • fast/transforms/matrix-with-zoom-expected.txt: Added.
  • fast/transforms/matrix-with-zoom.html: Added.

2010-12-21 Ariya Hidayat <ariya@sencha.com>

Reviewed by Simon Fraser.

https://bugs.webkit.org/show_bug.cgi?id=49774
Need to scale translation values in matrix() by the zoom factor.

Test: fast/transforms/matrix-with-zoom.html

  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::createTransformOperations):
3:19 PM Changeset in webkit [74429] by weinig@apple.com
  • 3 edits in trunk/WebKitLibraries

Add serialization for CFURLRequestRef and CFURLResponseRef.

Reviewed by Anders Carlsson.

  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
  • win/lib/WebKitSystemInterface.lib:
2:54 PM Changeset in webkit [74428] by oliver@apple.com
  • 7 edits in trunk

2010-12-21 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

ASSERTION FAILED: base->index() == m_codeBlock->argumentsRegister() while loading taobao.com
https://bugs.webkit.org/show_bug.cgi?id=49006

This problem was caused by having a parameter named 'arguments'.
The fix is to treat parameters named 'arguments' as shadowing
the actual arguments property, and so logically turn the function
into one that doesn't "use" arguments.

This required a bit of fiddling in the parser to ensure we correctly
propagate the 'feature' of shadowing is set correctly.

  • bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::createArgumentsIfNecessary): Change assertion to an early return as we may now reference a property named 'arguments' without being in a function that has the ArgumentsFeature
  • parser/JSParser.cpp: (JSC::JSParser::Scope::Scope): (JSC::JSParser::Scope::declareParameter): (JSC::JSParser::Scope::shadowsArguments): (JSC::JSParser::parseProgram): (JSC::JSParser::parseFormalParameters): (JSC::JSParser::parseFunctionInfo):
  • parser/Nodes.h: (JSC::ScopeNode::usesArguments):

2010-12-21 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

ASSERTION FAILED: base->index() == m_codeBlock->argumentsRegister() while loading taobao.com
https://bugs.webkit.org/show_bug.cgi?id=49006

Add new tests to cover the cases of a parameter named arguments being used.
Also correct a couple of existing (incorrect) tests.

  • fast/js/arguments-expected.txt:
  • fast/js/script-tests/arguments.js: (argumentsVarUndefined): (argumentsConstUndefined): (shadowedArgumentsLength): (shadowedArgumentsCallee): (shadowedArgumentsIndex):
2:36 PM Changeset in webkit [74427] by aestes@apple.com
  • 3 edits
    3 adds in trunk

2010-12-21 Jian Li <jianli@chromium.org>

Reviewed by Darin Adler.

Fix bug 51366: REGRESSION (r66452): Form data no longer contains
'Content-Type' header for files with unrecognized extensions
https://bugs.webkit.org/show_bug.cgi?id=51366

Test: http/tests/local/formdata/form-data-with-unknown-file-extension.html

  • platform/network/FormData.cpp: (WebCore::FormData::appendKeyValuePairItems):

2010-12-21 Jian Li <jianli@chromium.org>

Reviewed by Darin Adler.

Fix bug 51366: REGRESSION (r66452): Form data no longer contains
'Content-Type' header for files with unrecognized extensions
https://bugs.webkit.org/show_bug.cgi?id=51366

  • http/tests/local/formdata/form-data-with-unknown-file-extension-expected.txt: Added.
  • http/tests/local/formdata/form-data-with-unknown-file-extension.html: Added.
  • http/tests/local/resources/file.invalid: Added.
2:24 PM Changeset in webkit [74426] by Darin Adler
  • 5 edits in trunk

2010-12-21 Darin Adler <Darin Adler>

Reviewed by Sam Weinig.

Mac WebKit delivers an extra didCommit when loading web archives
https://bugs.webkit.org/show_bug.cgi?id=51419

Could not find a simple way to test this in WebKit1, but in WebKit2
it leads to an immediate failure when loading a web archive. Tested
that making the Mac share the same code path with other platforms
works fine in WebKit1.

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::finishedLoadingDocument): Removed special case for the Mac platform. Also removed the call to isArchiveMimeType since we get a 0 from ArchiveFactory::create in that case.
  • loader/archive/ArchiveFactory.cpp: (WebCore::ArchiveFactory::isArchiveMimeType): Hardened slightly by adding a special case for null and empty strings, since hash tables can't handle null strings. (WebCore::ArchiveFactory::create): Ditto.

2010-12-21 Darin Adler <Darin Adler>

Reviewed by Sam Weinig.

Mac WebKit delivers an extra didCommit when loading web archives
https://bugs.webkit.org/show_bug.cgi?id=51419

  • UIProcess/WebFrameProxy.cpp: (WebKit::WebFrameProxy::didStartProvisionalLoad): Added assertions so we catch inconsistencies here instead of at the application level. Later, we will have to decide what to do in cases these assertions fail. The right policy is probably to consider it a web process failure and do whatever we do for those. (WebKit::WebFrameProxy::didReceiveServerRedirectForProvisionalLoad): Ditto. (WebKit::WebFrameProxy::didFailProvisionalLoad): Ditto. (WebKit::WebFrameProxy::didCommitLoad): Ditto. (WebKit::WebFrameProxy::didFinishLoad): Ditto. (WebKit::WebFrameProxy::didFailLoad): Ditto.
1:28 PM Changeset in webkit [74425] by andersca@apple.com
  • 2 edits in trunk/WebKit2

Fix Snow Leopard build.

  • WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:

(WebKit::NPN_GetValue):

1:22 PM Changeset in webkit [74424] by dbates@webkit.org
  • 4 edits
    1 add in trunk

2010-12-21 Daniel Bates <dbates@rim.com>

Reviewed by Eric Seidel and Darin Adler.

Deallocate GregorianDateTime.timeZone (if allocated) when copying so that we don't leak memory.
https://bugs.webkit.org/show_bug.cgi?id=51367

Inspired by a patch by George Staikos.

  • wtf/DateMath.cpp: (JSC::msToGregorianDateTime): Modified to set timeZone to nullptr since timeZone is now of type OwnPtrArray<char>.
  • wtf/DateMath.h: Change timeZone to type OwnArrayPtr<char>; Removed destructor since it is no longer needed. (JSC::GregorianDateTime::GregorianDateTime): Modified to use OwnPtrArray semantics for timeZone. (JSC::GregorianDateTime::operator tm): Ditto. (JSC::GregorianDateTime::copyFrom): Ditto.

2010-12-21 Daniel Bates <dbates@rim.com>

Reviewed by Eric Seidel and Darin Adler.

Deallocate GregorianDateTime.timeZone (if allocated) when copying so that we don't leak memory.
https://bugs.webkit.org/show_bug.cgi?id=51367

Add forwarding header for PassOwnArrayPtr.h.

  • ForwardingHeaders/wtf/PassOwnArrayPtr.h: Added.
1:18 PM Changeset in webkit [74423] by andersca@apple.com
  • 3 edits in trunk/WebKit2

Fix crash when a Carbon plug-in fails to initialize correctly
https://bugs.webkit.org/show_bug.cgi?id=51415

Reviewed by Dan Bernstein.

  • WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:

(WebKit::NPN_GetValue):
Don't claim to support the QuickDraw event model.

  • WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:

(WebKit::NetscapePlugin::platformDestroy):
Only try to remove the window from the map if it's not null.

12:59 PM Changeset in webkit [74422] by andersca@apple.com
  • 3 edits in trunk/WebKit2

2010-12-21 Anders Carlsson <andersca@apple.com>

Reviewed by Darin Adler.

Add ArgumentCoder support for CFDataRef
https://bugs.webkit.org/show_bug.cgi?id=51412

  • Shared/cf/ArgumentCodersCF.cpp: (CoreIPC::typeFromCFTypeRef): (CoreIPC::encode): (CoreIPC::decode):
  • Shared/cf/ArgumentCodersCF.h:
12:15 PM Changeset in webkit [74421] by mihaip@chromium.org
  • 3 edits
    4 moves in trunk/Tools

2010-12-21 Mihai Parparita <mihaip@chromium.org>

Reviewed by Darin Fisher.

[Chromium] Rename WebThemeEngine/ControlDRT to WebThemeEngine/ControlDRTWin
https://bugs.webkit.org/show_bug.cgi?id=51406

Rename WebThemeControlDRT to WebThemeControlDRTWin and WebThemeEngineDRT
to WebThemeEngineDRTWin and update references everywhere.

  • DumpRenderTree/DumpRenderTree.gypi:
  • DumpRenderTree/chromium/TestShellWin.cpp:
  • DumpRenderTree/chromium/WebThemeControlDRTWin.cpp: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRT.cpp.
  • DumpRenderTree/chromium/WebThemeControlDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeControlDRT.h.
  • DumpRenderTree/chromium/WebThemeEngineDRTWin.cpp: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRT.cpp.
  • DumpRenderTree/chromium/WebThemeEngineDRTWin.h: Renamed from Tools/DumpRenderTree/chromium/WebThemeEngineDRT.h.
11:24 AM Changeset in webkit [74420] by commit-queue@webkit.org
  • 8 edits in trunk/WebCore

2010-12-21 Yong Li <yoli@rim.com>

Reviewed by Adam Barth.

Suspend HTMLParserScheduler when page load is deferred to
avoid potential JS re-entrancy. Otherwise, when JS execution is triggered
from an external script or by events, and is blocked by a modal dialog,
WebKit can parse more HTML source and also start another JS execution.

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

Test case: WebCore/manual-tests/bugzilla-48077.html.

  • dom/DocumentParser.cpp: (WebCore::DocumentParser::suspendParsing): (WebCore::DocumentParser::resumeParsing):
  • dom/DocumentParser.h:
  • html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::suspendParsing): (WebCore::HTMLDocumentParser::resumeParsing):
  • html/parser/HTMLParserScheduler.cpp: (WebCore::HTMLParserScheduler::HTMLParserScheduler): (WebCore::HTMLParserScheduler::suspend): (WebCore::HTMLParserScheduler::resume):
  • html/parser/HTMLParserScheduler.h: (WebCore::HTMLParserScheduler::isScheduledForResume):
  • page/PageGroupLoadDeferrer.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
11:20 AM Changeset in webkit [74419] by tonyg@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-21 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

[chromium] Marking fast/canvas/shadow-offset-*.html flaky on mac debug
https://bugs.webkit.org/show_bug.cgi?id=51409

  • platform/chromium/test_expectations.txt:
10:29 AM Changeset in webkit [74418] by andersca@apple.com
  • 17 edits in trunk

2010-12-21 Anders Carlsson <andersca@apple.com>

Reviewed by John Sullivan.

Clicking missing plug-in text does not show a sheet
https://bugs.webkit.org/show_bug.cgi?id=51403

  • WebCore.exp.in: Export symbols needed by WebKit2.
  • WebCore.xcodeproj/project.pbxproj: Make HTMLPlugInImageElement.h a private header.
  • html/HTMLPlugInImageElement.h: (WebCore::HTMLPlugInImageElement::serviceType): (WebCore::HTMLPlugInImageElement::url): Make these member functions public.

2010-12-21 Anders Carlsson <andersca@apple.com>

Reviewed by John Sullivan.

Clicking missing plug-in text does not show a sheet
https://bugs.webkit.org/show_bug.cgi?id=51403

Update for changes to the WebPageUIClient.

  • MiniBrowser/mac/BrowserWindowController.m: (-[BrowserWindowController awakeFromNib]):
  • WebKitTestRunner/TestController.cpp: (WTR::createOtherPage): (WTR::TestController::initialize):

2010-12-21 Anders Carlsson <andersca@apple.com>

Reviewed by John Sullivan.

Clicking missing plug-in text does not show a sheet
https://bugs.webkit.org/show_bug.cgi?id=51403

  • UIProcess/API/C/WKPage.h: Add missingPluginButtonClicked to WKPageUIClient.
  • UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::missingPluginButtonClicked): Call the WebUIClient member function.
  • UIProcess/WebPageProxy.messages.in: Add MissingPluginButtonClicked message.
  • UIProcess/WebUIClient.cpp: (WebKit::WebUIClient::missingPluginButtonClicked): Call the WKPageUIClient callback.
  • UIProcess/WebUIClient.h:
  • WebProcess/WebCoreSupport/WebChromeClient.cpp: (WebKit::WebChromeClient::shouldMissingPluginMessageBeButton): Always return true for now.

(WebKit::WebChromeClient::missingPluginButtonClicked):
Send a MissingPluginButtonClicked message.

9:56 AM Changeset in webkit [74417] by tonyg@chromium.org
  • 3 edits in trunk/LayoutTests

2010-12-21 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

Rebaseline fast/js/large-expressions.html
https://bugs.webkit.org/show_bug.cgi?id=51404

  • platform/chromium-mac/fast/js/large-expressions-expected.txt:
  • platform/chromium-win/fast/js/large-expressions-expected.txt:
9:41 AM Changeset in webkit [74416] by abecsi@webkit.org
  • 2 edits in trunk/WebCore

2010-12-21 Andras Becsi <abecsi@webkit.org>

Unreviewed build fix.

[Qt] Fix the build with USE_GSTREAMER=1

No new tests needed.

  • WebCore.pro: remove nonexisting DataSourceGStreamer sources.
8:56 AM Changeset in webkit [74415] by commit-queue@webkit.org
  • 5 edits in trunk

2010-12-21 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r74402.
http://trac.webkit.org/changeset/74402
https://bugs.webkit.org/show_bug.cgi?id=51402

This patch broke the Windows 7 Release Layout Tests (Requested
by jessieberlin on #webkit).

  • wtf/StackBounds.cpp: (WTF::estimateStackBound): (WTF::StackBounds::initialize):

2010-12-21 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r74402.
http://trac.webkit.org/changeset/74402
https://bugs.webkit.org/show_bug.cgi?id=51402

This patch broke the Windows 7 Release Layout Tests (Requested
by jessieberlin on #webkit).

  • fast/js/large-expressions-expected.txt:
  • fast/js/script-tests/large-expressions.js:
8:33 AM EFLWebKit edited by demarchi@webkit.org
(diff)
7:52 AM Changeset in webkit [74414] by andreip@google.com
  • 2 edits in trunk/LayoutTests

2010-12-21 Andrei Popescu <andreip@google.com>

Unreviewed build fix.

Update the test expectations to mark these tests as timing out.
[Chromium] inspector/console-dir-global.html and inspector/debugger-expand-scope.html are timing out on OSX
https://bugs.webkit.org/show_bug.cgi?id=51398

  • platform/chromium/test_expectations.txt:
6:59 AM Changeset in webkit [74413] by andreip@google.com
  • 4 edits in trunk/LayoutTests

2010-12-21 Andrei Popescu <andreip@google.com>

Unreviewed build fix.

Rebaseline fast/js/large-expressions.html
[v8] trunk/LayoutTests/fast/js/large-expressions.html fails since r74402
https://bugs.webkit.org/show_bug.cgi?id=51391

  • platform/chromium-mac/fast/js/large-expressions-expected.txt:
  • platform/chromium-win/fast/js/large-expressions-expected.txt:
  • platform/chromium/test_expectations.txt:
6:42 AM Changeset in webkit [74412] by Csaba Osztrogonác
  • 2 edits in trunk/JavaScriptCore

Unify the name of parentheses in YARR: rename parenthesis to
parentheses.

Patch by Peter Varga <pvarga@inf.u-szeged.hu> on 2010-12-21
Reviewed by Csaba Osztrogonác.

  • yarr/RegexCompiler.cpp:

(JSC::Yarr::RegexPatternConstructor::atomParenthesesEnd):

6:28 AM Changeset in webkit [74411] by andreip@google.com
  • 2 edits in trunk/LayoutTests

2010-12-21 Andrei Popescu <andreip@google.com>

Unreviewed build fix.

[v8] trunk/LayoutTests/fast/js/large-expressions-expected.txt fails since r74402
https://bugs.webkit.org/show_bug.cgi?id=51391

Udpate Chromium layout test expectations temporarily while
we look for a fix for the above test.

  • platform/chromium/test_expectations.txt:
5:29 AM Changeset in webkit [74410] by andreip@google.com
  • 5 edits
    4 adds in trunk/LayoutTests

2010-12-21 Andrei Popescu <andreip@google.com>

Unreviewed build fix.

[Chromium] media/audio-controls-rendering.html and fast/gradients/gradient-after-transparent-border.html need rebaselining
https://bugs.webkit.org/show_bug.cgi?id=51388

  • platform/chromium-linux/fast/gradients/gradient-after-transparent-border-expected.checksum: Added.
  • platform/chromium-linux/fast/gradients/gradient-after-transparent-border-expected.png: Added.
  • platform/chromium-linux/media/audio-controls-rendering-expected.checksum:
  • platform/chromium-linux/media/audio-controls-rendering-expected.png:
  • platform/chromium-mac/fast/gradients/gradient-after-transparent-border-expected.checksum: Added.
  • platform/chromium-mac/fast/gradients/gradient-after-transparent-border-expected.png: Added.
  • platform/chromium-win/media/audio-controls-rendering-expected.checksum:
  • platform/chromium-win/media/audio-controls-rendering-expected.png:
5:11 AM Changeset in webkit [74409] by commit-queue@webkit.org
  • 2 edits in trunk/WebCore

2010-12-21 Mahesh Kulkarni <mahesh.kulkarni@nokia.com>

Reviewed by Andreas Kling.

[Qt] QtWebKit doesn't build in debug on Windows
https://bugs.webkit.org/show_bug.cgi?id=41930

Disable incremental linking in windows 32bit debug version as webkit is so
big it fails to link incremental.

Build fix. No new test cases added.

  • WebCore.pro:
4:55 AM Changeset in webkit [74408] by eric@webkit.org
  • 3 edits in trunk/Tools

2010-12-21 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

commit-queue will report constant failures as flaky if other tests flake
https://bugs.webkit.org/show_bug.cgi?id=51272

This patch just removes functionality and adds testing.
Previously we attempted to report flaky tests when we had
two different tests fail in a row. However, since we stop
running the tests at the first failure, our code was wrong in
trying to determine flakiness from the incomplete runs.

Originally I posted an alternate patch:
https://bug-51272-attachments.webkit.org/attachment.cgi?id=77078
which fixed our flaky logic in this case, however it was decided
that that patch would be too difficult to maintain, so now
I'm just removing the broken logic.

This will dramatically cut-down on our flaky-test false positives
at the (small) cost of the queues being unable to report
any flakiness if the tree is very flaky. (With at least one test
flaking on every run, we'll never report failures anymore.) I think
this is a tradeoff worth making.

  • Scripts/webkitpy/tool/bot/commitqueuetask.py:
  • Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
4:39 AM Changeset in webkit [74407] by Laszlo Gombos
  • 4 edits in trunk

2010-12-21 Laszlo Gombos <Laszlo Gombos>

Reviewed by Andreas Kling.

[Qt] Set BUILDING_QT consistently
https://bugs.webkit.org/show_bug.cgi?id=51341

  • JavaScriptCore.pri: Remove the definition of BUILDING_QT as it is already defined in WebKit.pri.

2010-12-21 Laszlo Gombos <Laszlo Gombos>

Reviewed by Andreas Kling.

[Qt] Set BUILDING_QT consistently
https://bugs.webkit.org/show_bug.cgi?id=51341

  • WebKit2.pro: Remove the definition of BUILDING_QT as it is already defined in WebKit.pri.
1:55 AM Changeset in webkit [74406] by commit-queue@webkit.org
  • 12 edits in trunk/WebCore

2010-12-21 Dominic Cooney <dominicc@google.com>

Reviewed by Adam Barth.

Rename Node::isShadowNode to isShadowRoot
https://bugs.webkit.org/show_bug.cgi?id=51060

The method gets whether the node is the root of a shadow tree;
renamed to reflect intent.

A simple rename--no new tests needed.

  • css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::initForStyleResolve): (WebCore::CSSStyleSelector::SelectorChecker::checkSelector):
  • dom/Node.cpp: (WebCore::Node::shadowTreeRootNode): (WebCore::Node::isInShadowTree): (WebCore::eventTargetRespectingSVGTargetRules): (WebCore::Node::getEventAncestors):
  • dom/Node.h: (WebCore::Node::isShadowRoot):
  • dom/Range.cpp: (WebCore::Range::checkNodeBA):
  • page/DragController.cpp: (WebCore::asFileInput):
  • page/EventHandler.cpp: (WebCore::EventHandler::handleMousePressEvent): (WebCore::EventHandler::dispatchMouseEvent):
  • rendering/RenderBlock.cpp: (WebCore::RenderBlock::hasLineIfEmpty):
  • rendering/TextControlInnerElements.cpp: (WebCore::TextControlInnerElement::attachInnerElement):
  • svg/SVGStyledElement.cpp: (WebCore::SVGStyledElement::title):
  • svg/SVGUseElement.cpp: (WebCore::ShadowTreeUpdateBlocker::while):
  • svg/animation/SVGSMILElement.cpp: (WebCore::SVGSMILElement::insertedIntoDocument):
12:34 AM Changeset in webkit [74405] by eric@webkit.org
  • 1 edit in trunk/WebKit/wx/ChangeLog

2010-12-20 Eric Seidel <eric@webkit.org>

Unreviewed.

Removed a non-utf8 character from this file.
Looks like it was accidentally added in:
http://trac.webkit.org/changeset/72669
Which caused troubles for the contributor working on bug 51382.

Dec 20, 2010:

11:50 PM Changeset in webkit [74404] by commit-queue@webkit.org
  • 2 edits in trunk/WebCore

2010-12-20 Mahesh Kulkarni <mahesh.kulkarni@nokia.com>

Reviewed by Andreas Kling.

Qt port of geolocation, geoposition objects timestamp was in seconds
instead of miliseconds as per HTML5 Geolocation standards.
Ref: http://dev.w3.org/geo/api/spec-source.html#position_interface
http://www.w3.org/TR/DOM-Level-3-Core/core.html#Core-DOMTimeStamp

Implemented by Asheesh Srivastava.

[QT] QtWebkit geolocation's position.timestamp is not in miliseconds
https://bugs.webkit.org/show_bug.cgi?id=51100

Porting code not covered in layout testing. No new tests added.

  • platform/qt/GeolocationServiceQt.cpp: (WebCore::GeolocationServiceQt::positionUpdated):
11:48 PM Changeset in webkit [74403] by eric@webkit.org
  • 4 edits in trunk/Tools

2010-12-20 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

commit-queue wrongly rejects patches when it can't update itself
https://bugs.webkit.org/show_bug.cgi?id=46636

  • Scripts/webkitpy/tool/bot/commitqueuetask.py:
  • Scripts/webkitpy/tool/bot/commitqueuetask_unittest.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
11:36 PM Changeset in webkit [74402] by barraclough@apple.com
  • 5 edits in trunk

Bug 26276 - Need a mechanism to determine stack extent

Reviewed by Oliver Hunt.

JavaScriptCore:

This patch adds accurate stack size calculation for:

DARWIN, WINDOWS, QNX, UNIX

We still need to fix:

SOLARIS, OPENBSD, SYMBIAN, HAIKU, WINCE

  • wtf/StackBounds.cpp:

(WTF::StackBounds::initialize):

LayoutTests:

Correctly measuring available stack increases the size of expression we can handle!

  • fast/js/large-expressions-expected.txt:
  • fast/js/script-tests/large-expressions.js:
11:30 PM Changeset in webkit [74401] by yuzo@google.com
  • 4 edits
    2 adds in trunk

2010-12-20 Yuzo Fujishima <yuzo@google.com>

Reviewed by Eric Seidel.

Fix for Bug 26183 - [@font-face] font-family descriptor with multiple names should be discarded
https://bugs.webkit.org/show_bug.cgi?id=26183

  • fast/css/font-face-font-family-descriptor-expected.txt: Added.
  • fast/css/font-face-font-family-descriptor.html: Added.
  • platform/win/css2.1/resources/Mac-compatible-font-fallback.css: (@font-face): Rewrote @font-face rules that specify multiple font families.

2010-12-20 Yuzo Fujishima <yuzo@google.com>

Reviewed by Eric Seidel.

Fix for Bug 26183 - [@font-face] font-family descriptor with multiple names should be discarded
https://bugs.webkit.org/show_bug.cgi?id=26183

Test: fast/css/font-face-font-family-descriptor.html

  • css/CSSParser.cpp: (WebCore::CSSParser::createFontFaceRule): Consider @font-face rule invalid if its font-family descriptor has multiple (or zero) families.
11:26 PM Changeset in webkit [74400] by yutak@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Yuta Kitamura <yutak@chromium.org>

Unreviewed.

Update Chromium test expectation for http/tests/inspector/console-websocket-error.html.

  • platform/chromium/test_expectations.txt:
11:25 PM Changeset in webkit [74399] by pfeldman@chromium.org
  • 2 edits in trunk/WebCore

2010-12-20 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: fall back to object formatting in case dom is not yet loaded.
https://bugs.webkit.org/show_bug.cgi?id=44273

Sometimes DOM is loaded after the inline message is being formatted, so we get
no nodeId for it. Let us fall back to object formatting in such cases.

11:18 PM Changeset in webkit [74398] by abarth@webkit.org
  • 2 edits in trunk/Websites/bugs.webkit.org

2010-12-20 Adam Barth <abarth@webkit.org>

One more tweak caused by moving the web sites around. I had this
change in my patch originally, but I missed it because I had to use
server-side svn move commands to move the bulk of the web site files.

  • PrettyPatch/PrettyPatch.rb:
11:11 PM Changeset in webkit [74397] by pfeldman@chromium.org
  • 2 edits in trunk/WebCore

2010-12-20 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Joseph Pecoraro.

Web Inspector: cycle through tag name / attributes / new attribute on Tab.

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

  • inspector/front-end/ElementsTreeOutline.js: (WebInspector.ElementsTreeElement.prototype._tagNameEditingCommitted.moveToNextAttributeIfNeeded):
11:07 PM Changeset in webkit [74396] by abarth@webkit.org
  • 9 edits in trunk

Move web sites to Websites directory
https://bugs.webkit.org/show_bug.cgi?id=51323

This patch was never officially reviewed (because it was too large to
upload to bugs.webkit.org), but it was discussed on webkit-dev and Mark
Rowe gave me the green light.

  • BugsSite: Removed.
  • BugsSite/.cvsignore: Removed.
  • BugsSite/.htaccess: Removed.
  • BugsSite/Bugzilla: Removed.
  • BugsSite/Bugzilla.pm: Removed.
  • BugsSite/Bugzilla/.cvsignore: Removed.
  • BugsSite/Bugzilla/.htaccess: Removed.
  • BugsSite/Bugzilla/Attachment: Removed.
  • BugsSite/Bugzilla/Attachment.pm: Removed.
  • BugsSite/Bugzilla/Attachment/PatchReader.pm: Removed.
  • BugsSite/Bugzilla/Auth: Removed.
  • BugsSite/Bugzilla/Auth.pm: Removed.
  • BugsSite/Bugzilla/Auth/Login: Removed.
  • BugsSite/Bugzilla/Auth/Login.pm: Removed.
  • BugsSite/Bugzilla/Auth/Login/CGI.pm: Removed.
  • BugsSite/Bugzilla/Auth/Login/Cookie.pm: Removed.
  • BugsSite/Bugzilla/Auth/Login/Env.pm: Removed.
  • BugsSite/Bugzilla/Auth/Login/Stack.pm: Removed.
  • BugsSite/Bugzilla/Auth/Login/WWW: Removed.
  • BugsSite/Bugzilla/Auth/Login/WWW/CGI: Removed.
  • BugsSite/Bugzilla/Auth/Persist: Removed.
  • BugsSite/Bugzilla/Auth/Persist/Cookie.pm: Removed.
  • BugsSite/Bugzilla/Auth/Verify: Removed.
  • BugsSite/Bugzilla/Auth/Verify.pm: Removed.
  • BugsSite/Bugzilla/Auth/Verify/DB.pm: Removed.
  • BugsSite/Bugzilla/Auth/Verify/LDAP.pm: Removed.
  • BugsSite/Bugzilla/Auth/Verify/RADIUS.pm: Removed.
  • BugsSite/Bugzilla/Auth/Verify/Stack.pm: Removed.
  • BugsSite/Bugzilla/Bug.pm: Removed.
  • BugsSite/Bugzilla/BugMail.pm: Removed.
  • BugsSite/Bugzilla/CGI.pm: Removed.
  • BugsSite/Bugzilla/Chart.pm: Removed.
  • BugsSite/Bugzilla/Classification.pm: Removed.
  • BugsSite/Bugzilla/Component.pm: Removed.
  • BugsSite/Bugzilla/Config: Removed.
  • BugsSite/Bugzilla/Config.pm: Removed.
  • BugsSite/Bugzilla/Config/Admin.pm: Removed.
  • BugsSite/Bugzilla/Config/Attachment.pm: Removed.
  • BugsSite/Bugzilla/Config/Auth.pm: Removed.
  • BugsSite/Bugzilla/Config/BugChange.pm: Removed.
  • BugsSite/Bugzilla/Config/BugFields.pm: Removed.
  • BugsSite/Bugzilla/Config/BugMove.pm: Removed.
  • BugsSite/Bugzilla/Config/Common.pm: Removed.
  • BugsSite/Bugzilla/Config/Core.pm: Removed.
  • BugsSite/Bugzilla/Config/DependencyGraph.pm: Removed.
  • BugsSite/Bugzilla/Config/GroupSecurity.pm: Removed.
  • BugsSite/Bugzilla/Config/LDAP.pm: Removed.
  • BugsSite/Bugzilla/Config/MTA.pm: Removed.
  • BugsSite/Bugzilla/Config/PatchViewer.pm: Removed.
  • BugsSite/Bugzilla/Config/Query.pm: Removed.
  • BugsSite/Bugzilla/Config/RADIUS.pm: Removed.
  • BugsSite/Bugzilla/Config/ShadowDB.pm: Removed.
  • BugsSite/Bugzilla/Config/UserMatch.pm: Removed.
  • BugsSite/Bugzilla/Constants.pm: Removed.
  • BugsSite/Bugzilla/DB: Removed.
  • BugsSite/Bugzilla/DB.pm: Removed.
  • BugsSite/Bugzilla/DB/Mysql.pm: Removed.
  • BugsSite/Bugzilla/DB/Oracle.pm: Removed.
  • BugsSite/Bugzilla/DB/Pg.pm: Removed.
  • BugsSite/Bugzilla/DB/Schema: Removed.
  • BugsSite/Bugzilla/DB/Schema.pm: Removed.
  • BugsSite/Bugzilla/DB/Schema/Mysql.pm: Removed.
  • BugsSite/Bugzilla/DB/Schema/Oracle.pm: Removed.
  • BugsSite/Bugzilla/DB/Schema/Pg.pm: Removed.
  • BugsSite/Bugzilla/Error.pm: Removed.
  • BugsSite/Bugzilla/Field.pm: Removed.
  • BugsSite/Bugzilla/Flag.pm: Removed.
  • BugsSite/Bugzilla/FlagType.pm: Removed.
  • BugsSite/Bugzilla/Group.pm: Removed.
  • BugsSite/Bugzilla/Hook.pm: Removed.
  • BugsSite/Bugzilla/Install: Removed.
  • BugsSite/Bugzilla/Install.pm: Removed.
  • BugsSite/Bugzilla/Install/CPAN.pm: Removed.
  • BugsSite/Bugzilla/Install/DB.pm: Removed.
  • BugsSite/Bugzilla/Install/Filesystem.pm: Removed.
  • BugsSite/Bugzilla/Install/Localconfig.pm: Removed.
  • BugsSite/Bugzilla/Install/Requirements.pm: Removed.
  • BugsSite/Bugzilla/Install/Util.pm: Removed.
  • BugsSite/Bugzilla/Keyword.pm: Removed.
  • BugsSite/Bugzilla/Mailer.pm: Removed.
  • BugsSite/Bugzilla/Milestone.pm: Removed.
  • BugsSite/Bugzilla/Object.pm: Removed.
  • BugsSite/Bugzilla/Product.pm: Removed.
  • BugsSite/Bugzilla/Search: Removed.
  • BugsSite/Bugzilla/Search.pm: Removed.
  • BugsSite/Bugzilla/Search/Quicksearch.pm: Removed.
  • BugsSite/Bugzilla/Search/Saved.pm: Removed.
  • BugsSite/Bugzilla/Series.pm: Removed.
  • BugsSite/Bugzilla/Status.pm: Removed.
  • BugsSite/Bugzilla/Template: Removed.
  • BugsSite/Bugzilla/Template.pm: Removed.
  • BugsSite/Bugzilla/Template/Parser.pm: Removed.
  • BugsSite/Bugzilla/Template/Plugin: Removed.
  • BugsSite/Bugzilla/Template/Plugin/Bugzilla.pm: Removed.
  • BugsSite/Bugzilla/Template/Plugin/Hook.pm: Removed.
  • BugsSite/Bugzilla/Template/Plugin/User.pm: Removed.
  • BugsSite/Bugzilla/Token.pm: Removed.
  • BugsSite/Bugzilla/Update.pm: Removed.
  • BugsSite/Bugzilla/User: Removed.
  • BugsSite/Bugzilla/User.pm: Removed.
  • BugsSite/Bugzilla/User/Setting: Removed.
  • BugsSite/Bugzilla/User/Setting.pm: Removed.
  • BugsSite/Bugzilla/User/Setting/Lang.pm: Removed.
  • BugsSite/Bugzilla/User/Setting/Skin.pm: Removed.
  • BugsSite/Bugzilla/Util.pm: Removed.
  • BugsSite/Bugzilla/Version.pm: Removed.
  • BugsSite/Bugzilla/WebService: Removed.
  • BugsSite/Bugzilla/WebService.pm: Removed.
  • BugsSite/Bugzilla/WebService/Bug.pm: Removed.
  • BugsSite/Bugzilla/WebService/Bugzilla.pm: Removed.
  • BugsSite/Bugzilla/WebService/Constants.pm: Removed.
  • BugsSite/Bugzilla/WebService/Product.pm: Removed.
  • BugsSite/Bugzilla/WebService/User.pm: Removed.
  • BugsSite/PrettyPatch: Removed.
  • BugsSite/PrettyPatch/PrettyPatch.rb: Removed.
  • BugsSite/PrettyPatch/diff.rb: Removed.
  • BugsSite/PrettyPatch/prettify.rb: Removed.
  • BugsSite/QUICKSTART: Removed.
  • BugsSite/README: Removed.
  • BugsSite/UPGRADING: Removed.
  • BugsSite/UPGRADING-pre-2.8: Removed.
  • BugsSite/admin.cgi: Removed.
  • BugsSite/attachment.cgi: Removed.
  • BugsSite/buglist.cgi: Removed.
  • BugsSite/bugzilla.dtd: Removed.
  • BugsSite/chart.cgi: Removed.
  • BugsSite/checksetup.pl: Removed.
  • BugsSite/code-review.js: Removed.
  • BugsSite/colchange.cgi: Removed.
  • BugsSite/collectstats.pl: Removed.
  • BugsSite/committers-autocomplete.js: Removed.
  • BugsSite/config.cgi: Removed.
  • BugsSite/contrib: Removed.
  • BugsSite/contrib/README: Removed.
  • BugsSite/contrib/bugzilla-submit: Removed.
  • BugsSite/contrib/bugzilla-submit/README: Removed.
  • BugsSite/contrib/bugzilla-submit/bugdata.txt: Removed.
  • BugsSite/contrib/bugzilla-submit/bugzilla-submit: Removed.
  • BugsSite/contrib/bugzilla-submit/bugzilla-submit.xml: Removed.
  • BugsSite/contrib/bugzilla_ldapsync.rb: Removed.
  • BugsSite/contrib/bz_webservice_demo.pl: Removed.
  • BugsSite/contrib/bzdbcopy.pl: Removed.
  • BugsSite/contrib/cmdline: Removed.
  • BugsSite/contrib/cmdline/bugcount: Removed.
  • BugsSite/contrib/cmdline/bugids: Removed.
  • BugsSite/contrib/cmdline/buglist: Removed.
  • BugsSite/contrib/cmdline/bugs: Removed.
  • BugsSite/contrib/cmdline/bugslink: Removed.
  • BugsSite/contrib/cmdline/makequery: Removed.
  • BugsSite/contrib/cmdline/query.conf: Removed.
  • BugsSite/contrib/cvs-update.pl: Removed.
  • BugsSite/contrib/gnats2bz.pl: Removed.
  • BugsSite/contrib/gnatsparse: Removed.
  • BugsSite/contrib/gnatsparse/README: Removed.
  • BugsSite/contrib/gnatsparse/gnatsparse.py: Removed.
  • BugsSite/contrib/gnatsparse/magic.py: Removed.
  • BugsSite/contrib/gnatsparse/specialuu.py: Removed.
  • BugsSite/contrib/jb2bz.py: Removed.
  • BugsSite/contrib/merge-users.pl: Removed.
  • BugsSite/contrib/mysqld-watcher.pl: Removed.
  • BugsSite/contrib/recode-overrides.txt: Removed.
  • BugsSite/contrib/recode.pl: Removed.
  • BugsSite/contrib/sendbugmail.pl: Removed.
  • BugsSite/contrib/sendunsentbugmail.pl: Removed.
  • BugsSite/contrib/syncLDAP.pl: Removed.
  • BugsSite/contrib/yp_nomail.sh: Removed.
  • BugsSite/createaccount.cgi: Removed.
  • BugsSite/data: Removed.
  • BugsSite/data/.htaccess: Removed.
  • BugsSite/data/attachments: Removed.
  • BugsSite/data/attachments/.htaccess: Removed.
  • BugsSite/data/duplicates: Removed.
  • BugsSite/data/mail: Removed.
  • BugsSite/data/mimedump-tmp: Removed.
  • BugsSite/data/mining: Removed.
  • BugsSite/data/params: Removed.
  • BugsSite/data/template: Removed.
  • BugsSite/data/webdot: Removed.
  • BugsSite/data/webdot/.htaccess: Removed.
  • BugsSite/describecomponents.cgi: Removed.
  • BugsSite/describekeywords.cgi: Removed.
  • BugsSite/docs: Removed.
  • BugsSite/docs/en: Removed.
  • BugsSite/docs/en/.cvsignore: Removed.
  • BugsSite/docs/en/README.docs: Removed.
  • BugsSite/docs/en/images: Removed.
  • BugsSite/docs/en/images/bzLifecycle.png: Removed.
  • BugsSite/docs/en/images/bzLifecycle.xml: Removed.
  • BugsSite/docs/en/images/callouts: Removed.
  • BugsSite/docs/en/images/callouts/1.gif: Removed.
  • BugsSite/docs/en/images/callouts/2.gif: Removed.
  • BugsSite/docs/en/images/callouts/3.gif: Removed.
  • BugsSite/docs/en/images/caution.gif: Removed.
  • BugsSite/docs/en/images/note.gif: Removed.
  • BugsSite/docs/en/images/tip.gif: Removed.
  • BugsSite/docs/en/images/warning.gif: Removed.
  • BugsSite/docs/en/rel_notes.txt: Removed.
  • BugsSite/docs/en/xml: Removed.
  • BugsSite/docs/en/xml/.cvsignore: Removed.
  • BugsSite/docs/en/xml/Bugzilla-Guide.xml: Removed.
  • BugsSite/docs/en/xml/about.xml: Removed.
  • BugsSite/docs/en/xml/administration.xml: Removed.
  • BugsSite/docs/en/xml/conventions.xml: Removed.
  • BugsSite/docs/en/xml/customization.xml: Removed.
  • BugsSite/docs/en/xml/gfdl.xml: Removed.
  • BugsSite/docs/en/xml/glossary.xml: Removed.
  • BugsSite/docs/en/xml/index.xml: Removed.
  • BugsSite/docs/en/xml/installation.xml: Removed.
  • BugsSite/docs/en/xml/integration.xml: Removed.
  • BugsSite/docs/en/xml/introduction.xml: Removed.
  • BugsSite/docs/en/xml/modules.xml: Removed.
  • BugsSite/docs/en/xml/patches.xml: Removed.
  • BugsSite/docs/en/xml/requiredsoftware.xml: Removed.
  • BugsSite/docs/en/xml/security.xml: Removed.
  • BugsSite/docs/en/xml/troubleshooting.xml: Removed.
  • BugsSite/docs/en/xml/using.xml: Removed.
  • BugsSite/docs/html: Removed.
  • BugsSite/docs/html/api: Removed.
  • BugsSite/docs/images: Removed.
  • BugsSite/docs/images/callouts: Removed.
  • BugsSite/docs/lib: Removed.
  • BugsSite/docs/lib/Pod: Removed.
  • BugsSite/docs/lib/Pod/Simple: Removed.
  • BugsSite/docs/lib/Pod/Simple/HTML: Removed.
  • BugsSite/docs/lib/Pod/Simple/HTML/Bugzilla.pm: Removed.
  • BugsSite/docs/lib/Pod/Simple/HTMLBatch: Removed.
  • BugsSite/docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm: Removed.
  • BugsSite/docs/makedocs.pl: Removed.
  • BugsSite/docs/pdf: Removed.
  • BugsSite/docs/style.css: Removed.
  • BugsSite/docs/txt: Removed.
  • BugsSite/docs/xml: Removed.
  • BugsSite/duplicates.cgi: Removed.
  • BugsSite/editclassifications.cgi: Removed.
  • BugsSite/editcomponents.cgi: Removed.
  • BugsSite/editfields.cgi: Removed.
  • BugsSite/editflagtypes.cgi: Removed.
  • BugsSite/editgroups.cgi: Removed.
  • BugsSite/editkeywords.cgi: Removed.
  • BugsSite/editmilestones.cgi: Removed.
  • BugsSite/editparams.cgi: Removed.
  • BugsSite/editproducts.cgi: Removed.
  • BugsSite/editsettings.cgi: Removed.
  • BugsSite/editusers.cgi: Removed.
  • BugsSite/editvalues.cgi: Removed.
  • BugsSite/editversions.cgi: Removed.
  • BugsSite/editwhines.cgi: Removed.
  • BugsSite/editworkflow.cgi: Removed.
  • BugsSite/email_in.pl: Removed.
  • BugsSite/enter_bug.cgi: Removed.
  • BugsSite/extensions: Removed.
  • BugsSite/extensions/example: Removed.
  • BugsSite/extensions/example/code: Removed.
  • BugsSite/extensions/example/code/bug-end_of_update.pl: Removed.
  • BugsSite/extensions/example/code/buglist-columns.pl: Removed.
  • BugsSite/extensions/example/code/colchange-columns.pl: Removed.
  • BugsSite/extensions/example/code/config.pl: Removed.
  • BugsSite/extensions/example/code/flag-end_of_update.pl: Removed.
  • BugsSite/extensions/example/code/install-before_final_checks.pl: Removed.
  • BugsSite/extensions/example/code/product-confirm_delete.pl: Removed.
  • BugsSite/extensions/example/code/webservice-error_codes.pl: Removed.
  • BugsSite/extensions/example/code/webservice.pl: Removed.
  • BugsSite/extensions/example/disabled: Removed.
  • BugsSite/extensions/example/info.pl: Removed.
  • BugsSite/extensions/example/lib: Removed.
  • BugsSite/extensions/example/lib/ConfigExample.pm: Removed.
  • BugsSite/extensions/example/lib/WSExample.pm: Removed.
  • BugsSite/extensions/example/template: Removed.
  • BugsSite/extensions/example/template/en: Removed.
  • BugsSite/extensions/example/template/en/default: Removed.
  • BugsSite/extensions/example/template/en/default/admin: Removed.
  • BugsSite/extensions/example/template/en/default/admin/params: Removed.
  • BugsSite/extensions/example/template/en/default/admin/params/example.html.tmpl: Removed.
  • BugsSite/extensions/example/template/en/global: Removed.
  • BugsSite/extensions/example/template/en/global/user-error-errors.html.tmpl: Removed.
  • BugsSite/graphs: Removed.
  • BugsSite/images: Removed.
  • BugsSite/images/favicon.ico: Removed.
  • BugsSite/images/padlock.png: Removed.
  • BugsSite/importxml.pl: Removed.
  • BugsSite/index.cgi: Removed.
  • BugsSite/install-module.pl: Removed.
  • BugsSite/js: Removed.
  • BugsSite/js/TUI.js: Removed.
  • BugsSite/js/attachment.js: Removed.
  • BugsSite/js/expanding-tree.js: Removed.
  • BugsSite/js/field.js: Removed.
  • BugsSite/js/help.js: Removed.
  • BugsSite/js/params.js: Removed.
  • BugsSite/js/productform.js: Removed.
  • BugsSite/js/util.js: Removed.
  • BugsSite/js/yui: Removed.
  • BugsSite/js/yui/calendar.js: Removed.
  • BugsSite/js/yui/yahoo-dom-event.js: Removed.
  • BugsSite/lib: Removed.
  • BugsSite/lib/.htaccess: Removed.
  • BugsSite/lib/README: Removed.
  • BugsSite/long_list.cgi: Removed.
  • BugsSite/mod_perl.pl: Removed.
  • BugsSite/page.cgi: Removed.
  • BugsSite/post_bug.cgi: Removed.
  • BugsSite/process_bug.cgi: Removed.
  • BugsSite/query.cgi: Removed.
  • BugsSite/quips.cgi: Removed.
  • BugsSite/relogin.cgi: Removed.
  • BugsSite/report.cgi: Removed.
  • BugsSite/reports.cgi: Removed.
  • BugsSite/request.cgi: Removed.
  • BugsSite/robots.txt: Removed.
  • BugsSite/runtests.pl: Removed.
  • BugsSite/sanitycheck.cgi: Removed.
  • BugsSite/sanitycheck.pl: Removed.
  • BugsSite/search_plugin.cgi: Removed.
  • BugsSite/show_activity.cgi: Removed.
  • BugsSite/show_bug.cgi: Removed.
  • BugsSite/showattachment.cgi: Removed.
  • BugsSite/showdependencygraph.cgi: Removed.
  • BugsSite/showdependencytree.cgi: Removed.
  • BugsSite/sidebar.cgi: Removed.
  • BugsSite/skins: Removed.
  • BugsSite/skins/.cvsignore: Removed.
  • BugsSite/skins/contrib: Removed.
  • BugsSite/skins/contrib/Dusk: Removed.
  • BugsSite/skins/contrib/Dusk/.cvsignore: Removed.
  • BugsSite/skins/contrib/Dusk/IE-fixes.css: Removed.
  • BugsSite/skins/contrib/Dusk/admin.css: Removed.
  • BugsSite/skins/contrib/Dusk/buglist.css: Removed.
  • BugsSite/skins/contrib/Dusk/create_attachment.css: Removed.
  • BugsSite/skins/contrib/Dusk/dependency-tree.css: Removed.
  • BugsSite/skins/contrib/Dusk/duplicates.css: Removed.
  • BugsSite/skins/contrib/Dusk/editusers.css: Removed.
  • BugsSite/skins/contrib/Dusk/global.css: Removed.
  • BugsSite/skins/contrib/Dusk/help.css: Removed.
  • BugsSite/skins/contrib/Dusk/index.css: Removed.
  • BugsSite/skins/contrib/Dusk/panel.css: Removed.
  • BugsSite/skins/contrib/Dusk/params.css: Removed.
  • BugsSite/skins/contrib/Dusk/release-notes.css: Removed.
  • BugsSite/skins/contrib/Dusk/show_bug.css: Removed.
  • BugsSite/skins/contrib/Dusk/show_multiple.css: Removed.
  • BugsSite/skins/contrib/Dusk/summarize-time.css: Removed.
  • BugsSite/skins/contrib/Dusk/voting.css: Removed.
  • BugsSite/skins/contrib/Dusk/yui: Removed.
  • BugsSite/skins/contrib/Dusk/yui/calendar.css: Removed.
  • BugsSite/skins/custom: Removed.
  • BugsSite/skins/custom/IE-fixes.css: Removed.
  • BugsSite/skins/custom/admin.css: Removed.
  • BugsSite/skins/custom/buglist.css: Removed.
  • BugsSite/skins/custom/create_attachment.css: Removed.
  • BugsSite/skins/custom/dependency-tree.css: Removed.
  • BugsSite/skins/custom/duplicates.css: Removed.
  • BugsSite/skins/custom/editusers.css: Removed.
  • BugsSite/skins/custom/global.css: Removed.
  • BugsSite/skins/custom/help.css: Removed.
  • BugsSite/skins/custom/index.css: Removed.
  • BugsSite/skins/custom/opendarwin.gif: Removed.
  • BugsSite/skins/custom/panel.css: Removed.
  • BugsSite/skins/custom/params.css: Removed.
  • BugsSite/skins/custom/release-notes.css: Removed.
  • BugsSite/skins/custom/show_bug.css: Removed.
  • BugsSite/skins/custom/show_multiple.css: Removed.
  • BugsSite/skins/custom/summarize-time.css: Removed.
  • BugsSite/skins/custom/voting.css: Removed.
  • BugsSite/skins/custom/yui: Removed.
  • BugsSite/skins/custom/yui/calendar.css: Removed.
  • BugsSite/skins/standard: Removed.
  • BugsSite/skins/standard/IE-fixes.css: Removed.
  • BugsSite/skins/standard/admin.css: Removed.
  • BugsSite/skins/standard/buglist.css: Removed.
  • BugsSite/skins/standard/create_attachment.css: Removed.
  • BugsSite/skins/standard/dependency-tree: Removed.
  • BugsSite/skins/standard/dependency-tree.css: Removed.
  • BugsSite/skins/standard/dependency-tree/bug-item.png: Removed.
  • BugsSite/skins/standard/dependency-tree/tree-closed.png: Removed.
  • BugsSite/skins/standard/dependency-tree/tree-open.png: Removed.
  • BugsSite/skins/standard/dependency-tree/tree.png: Removed.
  • BugsSite/skins/standard/duplicates.css: Removed.
  • BugsSite/skins/standard/editusers.css: Removed.
  • BugsSite/skins/standard/global: Removed.
  • BugsSite/skins/standard/global.css: Removed.
  • BugsSite/skins/standard/global/body-back.gif: Removed.
  • BugsSite/skins/standard/global/calendar.png: Removed.
  • BugsSite/skins/standard/global/header.png: Removed.
  • BugsSite/skins/standard/help.css: Removed.
  • BugsSite/skins/standard/index: Removed.
  • BugsSite/skins/standard/index.css: Removed.
  • BugsSite/skins/standard/index/front.png: Removed.
  • BugsSite/skins/standard/panel.css: Removed.
  • BugsSite/skins/standard/params.css: Removed.
  • BugsSite/skins/standard/release-notes.css: Removed.
  • BugsSite/skins/standard/show_bug.css: Removed.
  • BugsSite/skins/standard/show_multiple.css: Removed.
  • BugsSite/skins/standard/summarize-time.css: Removed.
  • BugsSite/skins/standard/voting.css: Removed.
  • BugsSite/skins/standard/yui: Removed.
  • BugsSite/skins/standard/yui/calendar.css: Removed.
  • BugsSite/skins/standard/yui/sprite.png: Removed.
  • BugsSite/summarize_time.cgi: Removed.
  • BugsSite/t: Removed.
  • BugsSite/t/001compile.t: Removed.
  • BugsSite/t/002goodperl.t: Removed.
  • BugsSite/t/003safesys.t: Removed.
  • BugsSite/t/004template.t: Removed.
  • BugsSite/t/005no_tabs.t: Removed.
  • BugsSite/t/006spellcheck.t: Removed.
  • BugsSite/t/007util.t: Removed.
  • BugsSite/t/008filter.t: Removed.
  • BugsSite/t/009bugwords.t: Removed.
  • BugsSite/t/010dependencies.t: Removed.
  • BugsSite/t/011pod.t: Removed.
  • BugsSite/t/012throwables.t: Removed.
  • BugsSite/t/Support: Removed.
  • BugsSite/t/Support/Files.pm: Removed.
  • BugsSite/t/Support/Systemexec.pm: Removed.
  • BugsSite/t/Support/Templates.pm: Removed.
  • BugsSite/template: Removed.
  • BugsSite/template/.cvsignore: Removed.
  • BugsSite/template/.htaccess: Removed.
  • BugsSite/template/en: Removed.
  • BugsSite/template/en/.cvsignore: Removed.
  • BugsSite/template/en/custom: Removed.
  • BugsSite/template/en/custom/account: Removed.
  • BugsSite/template/en/custom/account/auth: Removed.
  • BugsSite/template/en/custom/account/email: Removed.
  • BugsSite/template/en/custom/account/password: Removed.
  • BugsSite/template/en/custom/account/prefs: Removed.
  • BugsSite/template/en/custom/admin: Removed.
  • BugsSite/template/en/custom/admin/classifications: Removed.
  • BugsSite/template/en/custom/admin/components: Removed.
  • BugsSite/template/en/custom/admin/fieldvalues: Removed.
  • BugsSite/template/en/custom/admin/flag-type: Removed.
  • BugsSite/template/en/custom/admin/groups: Removed.
  • BugsSite/template/en/custom/admin/keywords: Removed.
  • BugsSite/template/en/custom/admin/milestones: Removed.
  • BugsSite/template/en/custom/admin/products: Removed.
  • BugsSite/template/en/custom/admin/products/groupcontrol: Removed.
  • BugsSite/template/en/custom/admin/settings: Removed.
  • BugsSite/template/en/custom/admin/users: Removed.
  • BugsSite/template/en/custom/admin/versions: Removed.
  • BugsSite/template/en/custom/attachment: Removed.
  • BugsSite/template/en/custom/attachment/content-types.html.tmpl: Removed.
  • BugsSite/template/en/custom/attachment/create.html.tmpl: Removed.
  • BugsSite/template/en/custom/attachment/created.html.tmpl: Removed.
  • BugsSite/template/en/custom/attachment/edit.html.tmpl: Removed.
  • BugsSite/template/en/custom/attachment/list.html.tmpl: Removed.
  • BugsSite/template/en/custom/attachment/review.html.tmpl: Removed.
  • BugsSite/template/en/custom/attachment/reviewform.html.tmpl: Removed.
  • BugsSite/template/en/custom/attachment/rietveldreview.html.tmpl: Removed.
  • BugsSite/template/en/custom/bug: Removed.
  • BugsSite/template/en/custom/bug/activity: Removed.
  • BugsSite/template/en/custom/bug/create: Removed.
  • BugsSite/template/en/custom/bug/edit.html.tmpl: Removed.
  • BugsSite/template/en/custom/bug/navigate.html.tmpl: Removed.
  • BugsSite/template/en/custom/bug/process: Removed.
  • BugsSite/template/en/custom/bug/votes: Removed.
  • BugsSite/template/en/custom/flag: Removed.
  • BugsSite/template/en/custom/flag/list.html.tmpl: Removed.
  • BugsSite/template/en/custom/global: Removed.
  • BugsSite/template/en/custom/global/choose-product.html.tmpl: Removed.
  • BugsSite/template/en/custom/global/header.html.tmpl: Removed.
  • BugsSite/template/en/custom/list: Removed.
  • BugsSite/template/en/custom/list/list.html.tmpl: Removed.
  • BugsSite/template/en/custom/pages: Removed.
  • BugsSite/template/en/custom/reports: Removed.
  • BugsSite/template/en/custom/request: Removed.
  • BugsSite/template/en/custom/request/email.txt.tmpl: Removed.
  • BugsSite/template/en/custom/request/queue.html.tmpl: Removed.
  • BugsSite/template/en/custom/search: Removed.
  • BugsSite/template/en/custom/whine: Removed.
  • BugsSite/template/en/default: Removed.
  • BugsSite/template/en/default/account: Removed.
  • BugsSite/template/en/default/account/auth: Removed.
  • BugsSite/template/en/default/account/auth/login-small.html.tmpl: Removed.
  • BugsSite/template/en/default/account/auth/login.html.tmpl: Removed.
  • BugsSite/template/en/default/account/cancel-token.txt.tmpl: Removed.
  • BugsSite/template/en/default/account/create.html.tmpl: Removed.
  • BugsSite/template/en/default/account/created.html.tmpl: Removed.
  • BugsSite/template/en/default/account/email: Removed.
  • BugsSite/template/en/default/account/email/change-new.txt.tmpl: Removed.
  • BugsSite/template/en/default/account/email/change-old.txt.tmpl: Removed.
  • BugsSite/template/en/default/account/email/confirm-new.html.tmpl: Removed.
  • BugsSite/template/en/default/account/email/confirm.html.tmpl: Removed.
  • BugsSite/template/en/default/account/email/request-new.txt.tmpl: Removed.
  • BugsSite/template/en/default/account/password: Removed.
  • BugsSite/template/en/default/account/password/forgotten-password.txt.tmpl: Removed.
  • BugsSite/template/en/default/account/password/set-forgotten-password.html.tmpl: Removed.
  • BugsSite/template/en/default/account/prefs: Removed.
  • BugsSite/template/en/default/account/prefs/account.html.tmpl: Removed.
  • BugsSite/template/en/default/account/prefs/email.html.tmpl: Removed.
  • BugsSite/template/en/default/account/prefs/permissions.html.tmpl: Removed.
  • BugsSite/template/en/default/account/prefs/prefs.html.tmpl: Removed.
  • BugsSite/template/en/default/account/prefs/saved-searches.html.tmpl: Removed.
  • BugsSite/template/en/default/account/prefs/settings.html.tmpl: Removed.
  • BugsSite/template/en/default/account/profile-activity.html.tmpl: Removed.
  • BugsSite/template/en/default/admin: Removed.
  • BugsSite/template/en/default/admin/admin.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/classifications: Removed.
  • BugsSite/template/en/default/admin/classifications/add.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/classifications/del.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/classifications/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/classifications/reclassify.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/classifications/select.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/components: Removed.
  • BugsSite/template/en/default/admin/components/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/components/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/components/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/components/footer.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/components/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/components/select-product.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/confirm-action.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/custom_fields: Removed.
  • BugsSite/template/en/default/admin/custom_fields/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/custom_fields/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/custom_fields/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/custom_fields/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/fieldvalues: Removed.
  • BugsSite/template/en/default/admin/fieldvalues/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/fieldvalues/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/fieldvalues/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/fieldvalues/footer.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/fieldvalues/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/fieldvalues/select-field.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/flag-type: Removed.
  • BugsSite/template/en/default/admin/flag-type/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/flag-type/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/flag-type/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/groups: Removed.
  • BugsSite/template/en/default/admin/groups/confirm-remove.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/groups/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/groups/delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/groups/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/groups/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/keywords: Removed.
  • BugsSite/template/en/default/admin/keywords/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/keywords/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/keywords/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/keywords/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/milestones: Removed.
  • BugsSite/template/en/default/admin/milestones/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/milestones/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/milestones/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/milestones/footer.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/milestones/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/milestones/select-product.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params: Removed.
  • BugsSite/template/en/default/admin/params/admin.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/attachment.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/auth.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/bugchange.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/bugfields.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/bugmove.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/common.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/core.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/dependencygraph.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/editparams.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/groupsecurity.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/index.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/ldap.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/mta.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/patchviewer.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/query.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/radius.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/shadowdb.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/params/usermatch.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products: Removed.
  • BugsSite/template/en/default/admin/products/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/edit-common.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/footer.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/groupcontrol: Removed.
  • BugsSite/template/en/default/admin/products/groupcontrol/confirm-edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/groupcontrol/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/groupcontrol/updated.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/list-classifications.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/products/updated.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/sanitycheck: Removed.
  • BugsSite/template/en/default/admin/sanitycheck/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/sanitycheck/messages.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/settings: Removed.
  • BugsSite/template/en/default/admin/settings/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/sudo.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/table.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users: Removed.
  • BugsSite/template/en/default/admin/users/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users/listselectvars.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users/responsibilities.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users/search.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/users/userdata.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/versions: Removed.
  • BugsSite/template/en/default/admin/versions/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/versions/create.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/versions/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/versions/footer.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/versions/list.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/versions/select-product.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/workflow: Removed.
  • BugsSite/template/en/default/admin/workflow/comment.html.tmpl: Removed.
  • BugsSite/template/en/default/admin/workflow/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment: Removed.
  • BugsSite/template/en/default/attachment/cancel-create-dupe.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/choose.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/confirm-delete.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/content-types.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/create.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/created.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/createformcontents.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/delete_reason.txt.tmpl: Removed.
  • BugsSite/template/en/default/attachment/diff-file.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/diff-footer.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/diff-header.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/list.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/midair.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/show-multiple.html.tmpl: Removed.
  • BugsSite/template/en/default/attachment/updated.html.tmpl: Removed.
  • BugsSite/template/en/default/bug: Removed.
  • BugsSite/template/en/default/bug/activity: Removed.
  • BugsSite/template/en/default/bug/activity/show.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/activity/table.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/choose.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/comments.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/create: Removed.
  • BugsSite/template/en/default/bug/create/comment-guided.txt.tmpl: Removed.
  • BugsSite/template/en/default/bug/create/comment.txt.tmpl: Removed.
  • BugsSite/template/en/default/bug/create/confirm-create-dupe.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/create/create-guided.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/create/create.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/create/created.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/create/make-template.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/create/user-message.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/dependency-graph.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/dependency-tree.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/edit.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/field.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/knob.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/navigate.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/process: Removed.
  • BugsSite/template/en/default/bug/process/bugmail.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/process/confirm-duplicate.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/process/header.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/process/midair.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/process/results.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/process/verify-new-product.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/show-multiple.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/show.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/show.xml.tmpl: Removed.
  • BugsSite/template/en/default/bug/summarize-time.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/time.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/votes: Removed.
  • BugsSite/template/en/default/bug/votes/delete-all.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/votes/list-for-bug.html.tmpl: Removed.
  • BugsSite/template/en/default/bug/votes/list-for-user.html.tmpl: Removed.
  • BugsSite/template/en/default/config.js.tmpl: Removed.
  • BugsSite/template/en/default/config.rdf.tmpl: Removed.
  • BugsSite/template/en/default/email: Removed.
  • BugsSite/template/en/default/email/newchangedmail.txt.tmpl: Removed.
  • BugsSite/template/en/default/email/sanitycheck.txt.tmpl: Removed.
  • BugsSite/template/en/default/email/sudo.txt.tmpl: Removed.
  • BugsSite/template/en/default/email/votes-removed.txt.tmpl: Removed.
  • BugsSite/template/en/default/email/whine.txt.tmpl: Removed.
  • BugsSite/template/en/default/filterexceptions.pl: Removed.
  • BugsSite/template/en/default/flag: Removed.
  • BugsSite/template/en/default/flag/list.html.tmpl: Removed.
  • BugsSite/template/en/default/global: Removed.
  • BugsSite/template/en/default/global/banner.html.tmpl: Removed.
  • BugsSite/template/en/default/global/choose-classification.html.tmpl: Removed.
  • BugsSite/template/en/default/global/choose-product.html.tmpl: Removed.
  • BugsSite/template/en/default/global/code-error.html.tmpl: Removed.
  • BugsSite/template/en/default/global/common-links.html.tmpl: Removed.
  • BugsSite/template/en/default/global/confirm-action.html.tmpl: Removed.
  • BugsSite/template/en/default/global/confirm-user-match.html.tmpl: Removed.
  • BugsSite/template/en/default/global/docslinks.html.tmpl: Removed.
  • BugsSite/template/en/default/global/field-descs.none.tmpl: Removed.
  • BugsSite/template/en/default/global/footer.html.tmpl: Removed.
  • BugsSite/template/en/default/global/header.html.tmpl: Removed.
  • BugsSite/template/en/default/global/help.html.tmpl: Removed.
  • BugsSite/template/en/default/global/hidden-fields.html.tmpl: Removed.
  • BugsSite/template/en/default/global/initialize.none.tmpl: Removed.
  • BugsSite/template/en/default/global/js-products.html.tmpl: Removed.
  • BugsSite/template/en/default/global/message.html.tmpl: Removed.
  • BugsSite/template/en/default/global/message.txt.tmpl: Removed.
  • BugsSite/template/en/default/global/messages.html.tmpl: Removed.
  • BugsSite/template/en/default/global/per-bug-queries.html.tmpl: Removed.
  • BugsSite/template/en/default/global/select-menu.html.tmpl: Removed.
  • BugsSite/template/en/default/global/setting-descs.none.tmpl: Removed.
  • BugsSite/template/en/default/global/site-navigation.html.tmpl: Removed.
  • BugsSite/template/en/default/global/tabs.html.tmpl: Removed.
  • BugsSite/template/en/default/global/textarea.html.tmpl: Removed.
  • BugsSite/template/en/default/global/useful-links.html.tmpl: Removed.
  • BugsSite/template/en/default/global/user-error.html.tmpl: Removed.
  • BugsSite/template/en/default/global/userselect.html.tmpl: Removed.
  • BugsSite/template/en/default/global/variables.none.tmpl: Removed.
  • BugsSite/template/en/default/index.html.tmpl: Removed.
  • BugsSite/template/en/default/list: Removed.
  • BugsSite/template/en/default/list/change-columns.html.tmpl: Removed.
  • BugsSite/template/en/default/list/edit-multiple.html.tmpl: Removed.
  • BugsSite/template/en/default/list/list-simple.html.tmpl: Removed.
  • BugsSite/template/en/default/list/list.atom.tmpl: Removed.
  • BugsSite/template/en/default/list/list.csv.tmpl: Removed.
  • BugsSite/template/en/default/list/list.html.tmpl: Removed.
  • BugsSite/template/en/default/list/list.ics.tmpl: Removed.
  • BugsSite/template/en/default/list/list.js.tmpl: Removed.
  • BugsSite/template/en/default/list/list.rdf.tmpl: Removed.
  • BugsSite/template/en/default/list/quips.html.tmpl: Removed.
  • BugsSite/template/en/default/list/server-push.html.tmpl: Removed.
  • BugsSite/template/en/default/list/table.html.tmpl: Removed.
  • BugsSite/template/en/default/pages: Removed.
  • BugsSite/template/en/default/pages/bug-writing.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/fields.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/linked.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/linkify.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/quicksearch.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/quicksearchhack.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/release-notes.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/sudo.html.tmpl: Removed.
  • BugsSite/template/en/default/pages/voting.html.tmpl: Removed.
  • BugsSite/template/en/default/reports: Removed.
  • BugsSite/template/en/default/reports/chart.csv.tmpl: Removed.
  • BugsSite/template/en/default/reports/chart.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/chart.png.tmpl: Removed.
  • BugsSite/template/en/default/reports/components.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/create-chart.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/duplicates-simple.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/duplicates-table.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/duplicates.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/edit-series.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/keywords.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/menu.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/old-charts.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/report-bar.png.tmpl: Removed.
  • BugsSite/template/en/default/reports/report-line.png.tmpl: Removed.
  • BugsSite/template/en/default/reports/report-pie.png.tmpl: Removed.
  • BugsSite/template/en/default/reports/report-simple.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/report-table.csv.tmpl: Removed.
  • BugsSite/template/en/default/reports/report-table.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/report.csv.tmpl: Removed.
  • BugsSite/template/en/default/reports/report.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/series-common.html.tmpl: Removed.
  • BugsSite/template/en/default/reports/series.html.tmpl: Removed.
  • BugsSite/template/en/default/request: Removed.
  • BugsSite/template/en/default/request/email.txt.tmpl: Removed.
  • BugsSite/template/en/default/request/queue.html.tmpl: Removed.
  • BugsSite/template/en/default/search: Removed.
  • BugsSite/template/en/default/search/boolean-charts.html.tmpl: Removed.
  • BugsSite/template/en/default/search/form.html.tmpl: Removed.
  • BugsSite/template/en/default/search/knob.html.tmpl: Removed.
  • BugsSite/template/en/default/search/search-advanced.html.tmpl: Removed.
  • BugsSite/template/en/default/search/search-create-series.html.tmpl: Removed.
  • BugsSite/template/en/default/search/search-help.html.tmpl: Removed.
  • BugsSite/template/en/default/search/search-plugin.xml.tmpl: Removed.
  • BugsSite/template/en/default/search/search-report-graph.html.tmpl: Removed.
  • BugsSite/template/en/default/search/search-report-select.html.tmpl: Removed.
  • BugsSite/template/en/default/search/search-report-table.html.tmpl: Removed.
  • BugsSite/template/en/default/search/search-specific.html.tmpl: Removed.
  • BugsSite/template/en/default/search/tabs.html.tmpl: Removed.
  • BugsSite/template/en/default/setup: Removed.
  • BugsSite/template/en/default/setup/strings.txt.pl: Removed.
  • BugsSite/template/en/default/sidebar.xul.tmpl: Removed.
  • BugsSite/template/en/default/welcome-admin.html.tmpl: Removed.
  • BugsSite/template/en/default/whine: Removed.
  • BugsSite/template/en/default/whine/mail.html.tmpl: Removed.
  • BugsSite/template/en/default/whine/mail.txt.tmpl: Removed.
  • BugsSite/template/en/default/whine/multipart-mime.txt.tmpl: Removed.
  • BugsSite/template/en/default/whine/schedule.html.tmpl: Removed.
  • BugsSite/template/en/extension: Removed.
  • BugsSite/template/en/extension/filterexceptions.pl: Removed.
  • BugsSite/testagent.cgi: Removed.
  • BugsSite/testserver.pl: Removed.
  • BugsSite/token.cgi: Removed.
  • BugsSite/userprefs.cgi: Removed.
  • BugsSite/votes.cgi: Removed.
  • BugsSite/whine.pl: Removed.
  • BugsSite/whineatnews.pl: Removed.
  • BugsSite/xml.cgi: Removed.
  • BugsSite/xmlrpc.cgi: Removed.
  • PlanetWebKit: Removed.
  • PlanetWebKit/README: Removed.
  • PlanetWebKit/config.ini: Removed.
  • PlanetWebKit/planet: Removed.
  • PlanetWebKit/planet/AUTHORS: Removed.
  • PlanetWebKit/planet/INSTALL: Removed.
  • PlanetWebKit/planet/LICENCE: Removed.
  • PlanetWebKit/planet/NEWS: Removed.
  • PlanetWebKit/planet/PKG-INFO: Removed.
  • PlanetWebKit/planet/README: Removed.
  • PlanetWebKit/planet/THANKS: Removed.
  • PlanetWebKit/planet/TODO: Removed.
  • PlanetWebKit/planet/examples: Removed.
  • PlanetWebKit/planet/examples/atom.xml.tmpl: Removed.
  • PlanetWebKit/planet/examples/basic: Removed.
  • PlanetWebKit/planet/examples/basic/config.ini: Removed.
  • PlanetWebKit/planet/examples/basic/index.html.tmpl: Removed.
  • PlanetWebKit/planet/examples/fancy: Removed.
  • PlanetWebKit/planet/examples/fancy/config.ini: Removed.
  • PlanetWebKit/planet/examples/fancy/index.html.tmpl: Removed.
  • PlanetWebKit/planet/examples/foafroll.xml.tmpl: Removed.
  • PlanetWebKit/planet/examples/opml.xml.tmpl: Removed.
  • PlanetWebKit/planet/examples/output: Removed.
  • PlanetWebKit/planet/examples/output/images: Removed.
  • PlanetWebKit/planet/examples/output/images/edd.png: Removed.
  • PlanetWebKit/planet/examples/output/images/evolution.png: Removed.
  • PlanetWebKit/planet/examples/output/images/feed-icon-10x10.png: Removed.
  • PlanetWebKit/planet/examples/output/images/jdub.png: Removed.
  • PlanetWebKit/planet/examples/output/images/keybuk.png: Removed.
  • PlanetWebKit/planet/examples/output/images/logo.png: Removed.
  • PlanetWebKit/planet/examples/output/images/opml.png: Removed.
  • PlanetWebKit/planet/examples/output/images/planet.png: Removed.
  • PlanetWebKit/planet/examples/output/images/thom.png: Removed.
  • PlanetWebKit/planet/examples/output/planet.css: Removed.
  • PlanetWebKit/planet/examples/rss10.xml.tmpl: Removed.
  • PlanetWebKit/planet/examples/rss20.xml.tmpl: Removed.
  • PlanetWebKit/planet/planet: Removed.
  • PlanetWebKit/planet/planet-cache.py: Removed.
  • PlanetWebKit/planet/planet.py: Removed.
  • PlanetWebKit/planet/planet/init.py: Removed.
  • PlanetWebKit/planet/planet/atomstyler.py: Removed.
  • PlanetWebKit/planet/planet/cache.py: Removed.
  • PlanetWebKit/planet/planet/compat_logging: Removed.
  • PlanetWebKit/planet/planet/compat_logging/init.py: Removed.
  • PlanetWebKit/planet/planet/compat_logging/config.py: Removed.
  • PlanetWebKit/planet/planet/compat_logging/handlers.py: Removed.
  • PlanetWebKit/planet/planet/feedparser.py: Removed.
  • PlanetWebKit/planet/planet/htmltmpl.py: Removed.
  • PlanetWebKit/planet/planet/sanitize.py: Removed.
  • PlanetWebKit/planet/planet/tests: Removed.
  • PlanetWebKit/planet/planet/tests/init.py: Removed.
  • PlanetWebKit/planet/planet/tests/data: Removed.
  • PlanetWebKit/planet/planet/tests/data/simple.tmpl: Removed.
  • PlanetWebKit/planet/planet/tests/data/simple2.tmpl: Removed.
  • PlanetWebKit/planet/planet/tests/test_channel.py: Removed.
  • PlanetWebKit/planet/planet/tests/test_main.py: Removed.
  • PlanetWebKit/planet/planet/tests/test_sanitize.py: Removed.
  • PlanetWebKit/planet/planet/tests/test_sub.py: Removed.
  • PlanetWebKit/planet/planet/timeoutsocket.py: Removed.
  • PlanetWebKit/planet/runtests.py: Removed.
  • PlanetWebKit/planet/setup.py: Removed.
  • PlanetWebKit/templates: Removed.
  • PlanetWebKit/templates/atom.xml.tmpl: Removed.
  • PlanetWebKit/templates/foafroll.xml.tmpl: Removed.
  • PlanetWebKit/templates/index.html.tmpl: Removed.
  • PlanetWebKit/templates/opml.xml.tmpl: Removed.
  • PlanetWebKit/templates/rss10.xml.tmpl: Removed.
  • PlanetWebKit/templates/rss20.xml.tmpl: Removed.
  • PlanetWebKit/update.pl: Removed.
  • PlanetWebKit/wwwroot: Removed.
  • PlanetWebKit/wwwroot/ie.css: Removed.
  • PlanetWebKit/wwwroot/images: Removed.
  • PlanetWebKit/wwwroot/images/feed-icon-10x10.png: Removed.
  • PlanetWebKit/wwwroot/images/ie-nav-blue.png: Removed.
  • PlanetWebKit/wwwroot/images/planet-webkit.png: Removed.
  • PlanetWebKit/wwwroot/images/planet.png: Removed.
  • PlanetWebKit/wwwroot/planet.css: Removed.
  • PlanetWebKit/wwwroot/planetwebkit.css: Removed.
  • Sites: Added.
  • Sites/bugs.webkit.org: Copied from BugsSite.
  • Sites/planet.webkit.org: Copied from PlanetWebKit.
  • Sites/webkit.org: Copied from WebKitSite.
  • WebKitSite: Removed.
  • WebKitSite/.htaccess: Removed.
  • WebKitSite/asking_questions.html: Removed.
  • WebKitSite/blog: Removed.
  • WebKitSite/blog-files: Removed.
  • WebKitSite/blog-files/3d-transforms: Removed.
  • WebKitSite/blog-files/3d-transforms/image-flip.html: Removed.
  • WebKitSite/blog-files/3d-transforms/mighty-cubes.png: Removed.
  • WebKitSite/blog-files/3d-transforms/morphing-cubes.html: Removed.
  • WebKitSite/blog-files/3d-transforms/perspective-by-example.html: Removed.
  • WebKitSite/blog-files/3d-transforms/poster-circle.html: Removed.
  • WebKitSite/blog-files/3d-transforms/poster-circle.png: Removed.
  • WebKitSite/blog-files/3d-transforms/transform-style.html: Removed.
  • WebKitSite/blog-files/InspectElementMenu.png: Removed.
  • WebKitSite/blog-files/InspectorCSSEditing.png: Removed.
  • WebKitSite/blog-files/InspectorDatabaseBrowser.png: Removed.
  • WebKitSite/blog-files/InspectorFonts.png: Removed.
  • WebKitSite/blog-files/acid3-100.png: Removed.
  • WebKitSite/blog-files/acid3-full-rendering-pass.png: Removed.
  • WebKitSite/blog-files/acid3-rendering-reference.png: Removed.
  • WebKitSite/blog-files/acid3-screenshot.png: Removed.
  • WebKitSite/blog-files/acid3-timing-screenshot.png: Removed.
  • WebKitSite/blog-files/acid3-timing.png: Removed.
  • WebKitSite/blog-files/animation-demo.svg: Removed.
  • WebKitSite/blog-files/bounce.html: Removed.
  • WebKitSite/blog-files/bounce.png: Removed.
  • WebKitSite/blog-files/circle.svg: Removed.
  • WebKitSite/blog-files/cubes-7.svg: Removed.
  • WebKitSite/blog-files/gebcnspeedtest.html: Removed.
  • WebKitSite/blog-files/gebcnwebkitonly.png: Removed.
  • WebKitSite/blog-files/inspector: Removed.
  • WebKitSite/blog-files/inspector-closure-scope.png: Removed.
  • WebKitSite/blog-files/inspector-console-autocomplete.png: Removed.
  • WebKitSite/blog-files/inspector-databases-panel-query-view.png: Removed.
  • WebKitSite/blog-files/inspector-databases-panel.png: Removed.
  • WebKitSite/blog-files/inspector-disabling-properties.png: Removed.
  • WebKitSite/blog-files/inspector-elements-panel.png: Removed.
  • WebKitSite/blog-files/inspector-event-scope.png: Removed.
  • WebKitSite/blog-files/inspector-numeric-style-stepping.gif: Removed.
  • WebKitSite/blog-files/inspector-profiles-panel.png: Removed.
  • WebKitSite/blog-files/inspector-resources-panel.png: Removed.
  • WebKitSite/blog-files/inspector-scripts-panel.png: Removed.
  • WebKitSite/blog-files/inspector-searching-elements.png: Removed.
  • WebKitSite/blog-files/inspector-searching-profiles.png: Removed.
  • WebKitSite/blog-files/inspector-status-bar-with-errors.png: Removed.
  • WebKitSite/blog-files/inspector-toolbar.png: Removed.
  • WebKitSite/blog-files/inspector-with-scope.png: Removed.
  • WebKitSite/blog-files/inspector/audits_launcher.png: Removed.
  • WebKitSite/blog-files/inspector/audits_panel.png: Removed.
  • WebKitSite/blog-files/inspector/breakpoints.png: Removed.
  • WebKitSite/blog-files/inspector/colors.png: Removed.
  • WebKitSite/blog-files/inspector/console_panel.png: Removed.
  • WebKitSite/blog-files/inspector/context_menu.png: Removed.
  • WebKitSite/blog-files/inspector/cookies.png: Removed.
  • WebKitSite/blog-files/inspector/css_highlighted_line.png: Removed.
  • WebKitSite/blog-files/inspector/css_line_number_snippet.png: Removed.
  • WebKitSite/blog-files/inspector/css_line_numbers.png: Removed.
  • WebKitSite/blog-files/inspector/css_selectors.png: Removed.
  • WebKitSite/blog-files/inspector/css_syntax_highlight.png: Removed.
  • WebKitSite/blog-files/inspector/deactivate_breakpoints.png: Removed.
  • WebKitSite/blog-files/inspector/dom_storage.png: Removed.
  • WebKitSite/blog-files/inspector/edit_attributes.png: Removed.
  • WebKitSite/blog-files/inspector/enable.png: Removed.
  • WebKitSite/blog-files/inspector/evaluate_on_hover.png: Removed.
  • WebKitSite/blog-files/inspector/evaluate_on_hover_2.png: Removed.
  • WebKitSite/blog-files/inspector/event_listeners.png: Removed.
  • WebKitSite/blog-files/inspector/form_data.png: Removed.
  • WebKitSite/blog-files/inspector/inherited_styles.png: Removed.
  • WebKitSite/blog-files/inspector/inline_highlight.png: Removed.
  • WebKitSite/blog-files/inspector/inorder.png: Removed.
  • WebKitSite/blog-files/inspector/inspect_inspector.png: Removed.
  • WebKitSite/blog-files/inspector/inspect_inspector_small.png: Removed.
  • WebKitSite/blog-files/inspector/large_dom.png: Removed.
  • WebKitSite/blog-files/inspector/large_resources.png: Removed.
  • WebKitSite/blog-files/inspector/load_lines.png: Removed.
  • WebKitSite/blog-files/inspector/nodelist.png: Removed.
  • WebKitSite/blog-files/inspector/pseudo_elements.png: Removed.
  • WebKitSite/blog-files/inspector/redirect_headers.png: Removed.
  • WebKitSite/blog-files/inspector/redirect_headers_full.png: Removed.
  • WebKitSite/blog-files/inspector/redirects.png: Removed.
  • WebKitSite/blog-files/inspector/redirects_full.png: Removed.
  • WebKitSite/blog-files/inspector/scope_bar.png: Removed.
  • WebKitSite/blog-files/inspector/timeline_overview.png: Removed.
  • WebKitSite/blog-files/inspector/timeline_panel.png: Removed.
  • WebKitSite/blog-files/inspector/timeline_record_details.png: Removed.
  • WebKitSite/blog-files/inspector/watched_expression.png: Removed.
  • WebKitSite/blog-files/kate-circle.png: Removed.
  • WebKitSite/blog-files/kate-gradient-rounded.png: Removed.
  • WebKitSite/blog-files/kate-gradient.png: Removed.
  • WebKitSite/blog-files/kate-reflected.png: Removed.
  • WebKitSite/blog-files/kate-vignette-mask.png: Removed.
  • WebKitSite/blog-files/kate.png: Removed.
  • WebKitSite/blog-files/leaves: Removed.
  • WebKitSite/blog-files/leaves-screenshot-small.jpg: Removed.
  • WebKitSite/blog-files/leaves-screenshot.jpg: Removed.
  • WebKitSite/blog-files/leaves/images: Removed.
  • WebKitSite/blog-files/leaves/images/apple-touch-icon.png: Removed.
  • WebKitSite/blog-files/leaves/images/backgroundLeaves.jpg: Removed.
  • WebKitSite/blog-files/leaves/images/realLeaf1.png: Removed.
  • WebKitSite/blog-files/leaves/images/realLeaf2.png: Removed.
  • WebKitSite/blog-files/leaves/images/realLeaf3.png: Removed.
  • WebKitSite/blog-files/leaves/images/realLeaf4.png: Removed.
  • WebKitSite/blog-files/leaves/images/textBackground.png: Removed.
  • WebKitSite/blog-files/leaves/index.html: Removed.
  • WebKitSite/blog-files/leaves/leaves.css: Removed.
  • WebKitSite/blog-files/leaves/leaves.js: Removed.
  • WebKitSite/blog-files/load-unload-example.html: Removed.
  • WebKitSite/blog-files/loader-diagram.svg: Removed.
  • WebKitSite/blog-files/maskspeedracer.png: Removed.
  • WebKitSite/blog-files/number-morph.svg: Removed.
  • WebKitSite/blog-files/pageshow-pagehide-example.html: Removed.
  • WebKitSite/blog-files/prototype-for-gebcn-test.js: Removed.
  • WebKitSite/blog-files/pulse.html: Removed.
  • WebKitSite/blog-files/pulse.png: Removed.
  • WebKitSite/blog-files/riemann-screenshot.png: Removed.
  • WebKitSite/blog-files/scrollbarpicture.png: Removed.
  • WebKitSite/blog-files/sfx-perf.png: Removed.
  • WebKitSite/blog-files/squirrelfish-link-animated.svg: Removed.
  • WebKitSite/blog-files/squirrelfish-webkit-graph.png: Removed.
  • WebKitSite/blog-files/squirrelfish.png: Removed.
  • WebKitSite/blog-files/timeline-blocking-script.png: Removed.
  • WebKitSite/blog-files/timeline-defer-script.png: Removed.
  • WebKitSite/blog-files/touch-poster.png: Removed.
  • WebKitSite/blog-files/vignette-mask.png: Removed.
  • WebKitSite/blog-files/webgl: Removed.
  • WebKitSite/blog-files/webgl/Earth.html: Removed.
  • WebKitSite/blog-files/webgl/ManyPlanetsDeep.html: Removed.
  • WebKitSite/blog-files/webgl/SpinningBox.html: Removed.
  • WebKitSite/blog-files/webgl/SpiritBox.html: Removed.
  • WebKitSite/blog-files/webgl/TeapotPerPixel.html: Removed.
  • WebKitSite/blog-files/webgl/TeapotPerVertex.html: Removed.
  • WebKitSite/blog-files/webgl/WebGL+CSS.html: Removed.
  • WebKitSite/blog-files/webgl/resources: Removed.
  • WebKitSite/blog-files/webgl/resources/BambooBridge.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/EarthThumb.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/J3DI.js: Removed.
  • WebKitSite/blog-files/webgl/resources/J3DIMath.js: Removed.
  • WebKitSite/blog-files/webgl/resources/ManyPlanetsDeepThumb.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/SpinningBoxThumb.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/SpiritBox.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/TeapotPerPixelThumb.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/TeapotPerVertexThumb.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/WebGL+CSSThumb.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/blogpost.css: Removed.
  • WebKitSite/blog-files/webgl/resources/earthmap1k.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/mars500x250.png: Removed.
  • WebKitSite/blog-files/webgl/resources/spirit.jpg: Removed.
  • WebKitSite/blog-files/webgl/resources/teapot.obj: Removed.
  • WebKitSite/blog-files/wsj-nopreload.png: Removed.
  • WebKitSite/blog-files/wsj-preload.png: Removed.
  • WebKitSite/blog-files/wsj-vs.png: Removed.
  • WebKitSite/blog/.htaccess: Removed.
  • WebKitSite/blog/index.php: Removed.
  • WebKitSite/blog/license.txt: Removed.
  • WebKitSite/blog/wp-admin: Removed.
  • WebKitSite/blog/wp-admin/admin-ajax.php: Removed.
  • WebKitSite/blog/wp-admin/admin-footer.php: Removed.
  • WebKitSite/blog/wp-admin/admin-functions.php: Removed.
  • WebKitSite/blog/wp-admin/admin-header.php: Removed.
  • WebKitSite/blog/wp-admin/admin-post.php: Removed.
  • WebKitSite/blog/wp-admin/admin.php: Removed.
  • WebKitSite/blog/wp-admin/async-upload.php: Removed.
  • WebKitSite/blog/wp-admin/categories.php: Removed.
  • WebKitSite/blog/wp-admin/comment.php: Removed.
  • WebKitSite/blog/wp-admin/css: Removed.
  • WebKitSite/blog/wp-admin/css/colors-classic-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/colors-classic.css: Removed.
  • WebKitSite/blog/wp-admin/css/colors-fresh-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/colors-fresh.css: Removed.
  • WebKitSite/blog/wp-admin/css/dashboard-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/dashboard.css: Removed.
  • WebKitSite/blog/wp-admin/css/farbtastic-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/farbtastic.css: Removed.
  • WebKitSite/blog/wp-admin/css/global-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/global.css: Removed.
  • WebKitSite/blog/wp-admin/css/ie-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/ie.css: Removed.
  • WebKitSite/blog/wp-admin/css/install-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/install.css: Removed.
  • WebKitSite/blog/wp-admin/css/login-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/login.css: Removed.
  • WebKitSite/blog/wp-admin/css/media-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/media.css: Removed.
  • WebKitSite/blog/wp-admin/css/plugin-install-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/plugin-install.css: Removed.
  • WebKitSite/blog/wp-admin/css/press-this-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/press-this.css: Removed.
  • WebKitSite/blog/wp-admin/css/theme-editor-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/theme-editor.css: Removed.
  • WebKitSite/blog/wp-admin/css/theme-install.css: Removed.
  • WebKitSite/blog/wp-admin/css/widgets-rtl.css: Removed.
  • WebKitSite/blog/wp-admin/css/widgets.css: Removed.
  • WebKitSite/blog/wp-admin/custom-header.php: Removed.
  • WebKitSite/blog/wp-admin/edit-attachment-rows.php: Removed.
  • WebKitSite/blog/wp-admin/edit-category-form.php: Removed.
  • WebKitSite/blog/wp-admin/edit-comments.php: Removed.
  • WebKitSite/blog/wp-admin/edit-form-advanced.php: Removed.
  • WebKitSite/blog/wp-admin/edit-form-comment.php: Removed.
  • WebKitSite/blog/wp-admin/edit-link-categories.php: Removed.
  • WebKitSite/blog/wp-admin/edit-link-category-form.php: Removed.
  • WebKitSite/blog/wp-admin/edit-link-form.php: Removed.
  • WebKitSite/blog/wp-admin/edit-page-form.php: Removed.
  • WebKitSite/blog/wp-admin/edit-pages.php: Removed.
  • WebKitSite/blog/wp-admin/edit-post-rows.php: Removed.
  • WebKitSite/blog/wp-admin/edit-tag-form.php: Removed.
  • WebKitSite/blog/wp-admin/edit-tags.php: Removed.
  • WebKitSite/blog/wp-admin/edit.php: Removed.
  • WebKitSite/blog/wp-admin/export.php: Removed.
  • WebKitSite/blog/wp-admin/gears-manifest.php: Removed.
  • WebKitSite/blog/wp-admin/images: Removed.
  • WebKitSite/blog/wp-admin/images/align-center.png: Removed.
  • WebKitSite/blog/wp-admin/images/align-left.png: Removed.
  • WebKitSite/blog/wp-admin/images/align-none.png: Removed.
  • WebKitSite/blog/wp-admin/images/align-right.png: Removed.
  • WebKitSite/blog/wp-admin/images/archive-link.png: Removed.
  • WebKitSite/blog/wp-admin/images/blue-grad.png: Removed.
  • WebKitSite/blog/wp-admin/images/browse-happy.gif: Removed.
  • WebKitSite/blog/wp-admin/images/bubble_bg-rtl.gif: Removed.
  • WebKitSite/blog/wp-admin/images/bubble_bg.gif: Removed.
  • WebKitSite/blog/wp-admin/images/button-grad-active-vs.png: Removed.
  • WebKitSite/blog/wp-admin/images/button-grad-active.png: Removed.
  • WebKitSite/blog/wp-admin/images/button-grad-vs.png: Removed.
  • WebKitSite/blog/wp-admin/images/button-grad.png: Removed.
  • WebKitSite/blog/wp-admin/images/comment-grey-bubble.png: Removed.
  • WebKitSite/blog/wp-admin/images/date-button.gif: Removed.
  • WebKitSite/blog/wp-admin/images/ed-bg-vs.gif: Removed.
  • WebKitSite/blog/wp-admin/images/ed-bg.gif: Removed.
  • WebKitSite/blog/wp-admin/images/fade-butt.png: Removed.
  • WebKitSite/blog/wp-admin/images/fav-arrow-rtl.gif: Removed.
  • WebKitSite/blog/wp-admin/images/fav-arrow-vs.gif: Removed.
  • WebKitSite/blog/wp-admin/images/fav-arrow.gif: Removed.
  • WebKitSite/blog/wp-admin/images/fav-top-vs.gif: Removed.
  • WebKitSite/blog/wp-admin/images/fav-top.png: Removed.
  • WebKitSite/blog/wp-admin/images/fav-vs.png: Removed.
  • WebKitSite/blog/wp-admin/images/fav.png: Removed.
  • WebKitSite/blog/wp-admin/images/generic.png: Removed.
  • WebKitSite/blog/wp-admin/images/gray-grad.png: Removed.
  • WebKitSite/blog/wp-admin/images/icons32-vs.png: Removed.
  • WebKitSite/blog/wp-admin/images/icons32.png: Removed.
  • WebKitSite/blog/wp-admin/images/list-vs.png: Removed.
  • WebKitSite/blog/wp-admin/images/list.png: Removed.
  • WebKitSite/blog/wp-admin/images/loading-publish.gif: Removed.
  • WebKitSite/blog/wp-admin/images/loading.gif: Removed.
  • WebKitSite/blog/wp-admin/images/logo-ghost.png: Removed.
  • WebKitSite/blog/wp-admin/images/logo-login.gif: Removed.
  • WebKitSite/blog/wp-admin/images/logo.gif: Removed.
  • WebKitSite/blog/wp-admin/images/marker.png: Removed.
  • WebKitSite/blog/wp-admin/images/mask.png: Removed.
  • WebKitSite/blog/wp-admin/images/media-button-image.gif: Removed.
  • WebKitSite/blog/wp-admin/images/media-button-music.gif: Removed.
  • WebKitSite/blog/wp-admin/images/media-button-other.gif: Removed.
  • WebKitSite/blog/wp-admin/images/media-button-video.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-arrows.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-bits-rtl-vs.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-bits-rtl.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-bits-vs.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-bits.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-dark-rtl.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-dark.gif: Removed.
  • WebKitSite/blog/wp-admin/images/menu-vs.png: Removed.
  • WebKitSite/blog/wp-admin/images/menu.png: Removed.
  • WebKitSite/blog/wp-admin/images/no.png: Removed.
  • WebKitSite/blog/wp-admin/images/required.gif: Removed.
  • WebKitSite/blog/wp-admin/images/resize.gif: Removed.
  • WebKitSite/blog/wp-admin/images/screen-options-left.gif: Removed.
  • WebKitSite/blog/wp-admin/images/screen-options-right-up.gif: Removed.
  • WebKitSite/blog/wp-admin/images/screen-options-right.gif: Removed.
  • WebKitSite/blog/wp-admin/images/se.png: Removed.
  • WebKitSite/blog/wp-admin/images/star.gif: Removed.
  • WebKitSite/blog/wp-admin/images/toggle-arrow-rtl.gif: Removed.
  • WebKitSite/blog/wp-admin/images/toggle-arrow.gif: Removed.
  • WebKitSite/blog/wp-admin/images/visit-site-button-grad-vs.gif: Removed.
  • WebKitSite/blog/wp-admin/images/visit-site-button-grad.gif: Removed.
  • WebKitSite/blog/wp-admin/images/wheel.png: Removed.
  • WebKitSite/blog/wp-admin/images/white-grad-active.png: Removed.
  • WebKitSite/blog/wp-admin/images/white-grad.png: Removed.
  • WebKitSite/blog/wp-admin/images/wordpress-logo.png: Removed.
  • WebKitSite/blog/wp-admin/images/wp-logo-vs.gif: Removed.
  • WebKitSite/blog/wp-admin/images/wp-logo.gif: Removed.
  • WebKitSite/blog/wp-admin/images/wpspin_dark.gif: Removed.
  • WebKitSite/blog/wp-admin/images/wpspin_light.gif: Removed.
  • WebKitSite/blog/wp-admin/images/xit.gif: Removed.
  • WebKitSite/blog/wp-admin/images/yes.png: Removed.
  • WebKitSite/blog/wp-admin/import: Removed.
  • WebKitSite/blog/wp-admin/import.php: Removed.
  • WebKitSite/blog/wp-admin/import/blogger.php: Removed.
  • WebKitSite/blog/wp-admin/import/blogware.php: Removed.
  • WebKitSite/blog/wp-admin/import/dotclear.php: Removed.
  • WebKitSite/blog/wp-admin/import/greymatter.php: Removed.
  • WebKitSite/blog/wp-admin/import/livejournal.php: Removed.
  • WebKitSite/blog/wp-admin/import/mt.php: Removed.
  • WebKitSite/blog/wp-admin/import/opml.php: Removed.
  • WebKitSite/blog/wp-admin/import/rss.php: Removed.
  • WebKitSite/blog/wp-admin/import/stp.php: Removed.
  • WebKitSite/blog/wp-admin/import/textpattern.php: Removed.
  • WebKitSite/blog/wp-admin/import/utw.php: Removed.
  • WebKitSite/blog/wp-admin/import/wordpress.php: Removed.
  • WebKitSite/blog/wp-admin/import/wp-cat2tag.php: Removed.
  • WebKitSite/blog/wp-admin/includes: Removed.
  • WebKitSite/blog/wp-admin/includes/admin.php: Removed.
  • WebKitSite/blog/wp-admin/includes/bookmark.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-ftp-pure.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-ftp-sockets.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-ftp.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-pclzip.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-wp-filesystem-base.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-wp-filesystem-direct.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-wp-filesystem-ftpext.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-wp-filesystem-ftpsockets.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-wp-filesystem-ssh2.php: Removed.
  • WebKitSite/blog/wp-admin/includes/class-wp-upgrader.php: Removed.
  • WebKitSite/blog/wp-admin/includes/comment.php: Removed.
  • WebKitSite/blog/wp-admin/includes/continents-cities.php: Removed.
  • WebKitSite/blog/wp-admin/includes/dashboard.php: Removed.
  • WebKitSite/blog/wp-admin/includes/export.php: Removed.
  • WebKitSite/blog/wp-admin/includes/file.php: Removed.
  • WebKitSite/blog/wp-admin/includes/image.php: Removed.
  • WebKitSite/blog/wp-admin/includes/import.php: Removed.
  • WebKitSite/blog/wp-admin/includes/manifest.php: Removed.
  • WebKitSite/blog/wp-admin/includes/media.php: Removed.
  • WebKitSite/blog/wp-admin/includes/misc.php: Removed.
  • WebKitSite/blog/wp-admin/includes/plugin-install.php: Removed.
  • WebKitSite/blog/wp-admin/includes/plugin.php: Removed.
  • WebKitSite/blog/wp-admin/includes/post.php: Removed.
  • WebKitSite/blog/wp-admin/includes/schema.php: Removed.
  • WebKitSite/blog/wp-admin/includes/taxonomy.php: Removed.
  • WebKitSite/blog/wp-admin/includes/template.php: Removed.
  • WebKitSite/blog/wp-admin/includes/theme-install.php: Removed.
  • WebKitSite/blog/wp-admin/includes/theme.php: Removed.
  • WebKitSite/blog/wp-admin/includes/update-core.php: Removed.
  • WebKitSite/blog/wp-admin/includes/update.php: Removed.
  • WebKitSite/blog/wp-admin/includes/upgrade.php: Removed.
  • WebKitSite/blog/wp-admin/includes/user.php: Removed.
  • WebKitSite/blog/wp-admin/includes/widgets.php: Removed.
  • WebKitSite/blog/wp-admin/index-extra.php: Removed.
  • WebKitSite/blog/wp-admin/index.php: Removed.
  • WebKitSite/blog/wp-admin/install-helper.php: Removed.
  • WebKitSite/blog/wp-admin/install.php: Removed.
  • WebKitSite/blog/wp-admin/js: Removed.
  • WebKitSite/blog/wp-admin/js/cat.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/cat.js: Removed.
  • WebKitSite/blog/wp-admin/js/categories.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/categories.js: Removed.
  • WebKitSite/blog/wp-admin/js/comment.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/comment.js: Removed.
  • WebKitSite/blog/wp-admin/js/common.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/common.js: Removed.
  • WebKitSite/blog/wp-admin/js/custom-fields.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/custom-fields.js: Removed.
  • WebKitSite/blog/wp-admin/js/dashboard.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/dashboard.js: Removed.
  • WebKitSite/blog/wp-admin/js/edit-comments.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/edit-comments.js: Removed.
  • WebKitSite/blog/wp-admin/js/editor.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/editor.js: Removed.
  • WebKitSite/blog/wp-admin/js/farbtastic.js: Removed.
  • WebKitSite/blog/wp-admin/js/gallery.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/gallery.js: Removed.
  • WebKitSite/blog/wp-admin/js/inline-edit-post.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/inline-edit-post.js: Removed.
  • WebKitSite/blog/wp-admin/js/inline-edit-tax.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/inline-edit-tax.js: Removed.
  • WebKitSite/blog/wp-admin/js/link.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/link.js: Removed.
  • WebKitSite/blog/wp-admin/js/media-upload.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/media-upload.js: Removed.
  • WebKitSite/blog/wp-admin/js/media.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/media.js: Removed.
  • WebKitSite/blog/wp-admin/js/page.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/page.js: Removed.
  • WebKitSite/blog/wp-admin/js/password-strength-meter.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/password-strength-meter.js: Removed.
  • WebKitSite/blog/wp-admin/js/plugin-install.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/plugin-install.js: Removed.
  • WebKitSite/blog/wp-admin/js/post.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/post.js: Removed.
  • WebKitSite/blog/wp-admin/js/postbox.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/postbox.js: Removed.
  • WebKitSite/blog/wp-admin/js/revisions-js.php: Removed.
  • WebKitSite/blog/wp-admin/js/slug.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/slug.js: Removed.
  • WebKitSite/blog/wp-admin/js/tags.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/tags.js: Removed.
  • WebKitSite/blog/wp-admin/js/theme-preview.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/theme-preview.js: Removed.
  • WebKitSite/blog/wp-admin/js/user-profile.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/user-profile.js: Removed.
  • WebKitSite/blog/wp-admin/js/utils.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/utils.js: Removed.
  • WebKitSite/blog/wp-admin/js/widgets.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/widgets.js: Removed.
  • WebKitSite/blog/wp-admin/js/word-count.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/word-count.js: Removed.
  • WebKitSite/blog/wp-admin/js/wp-gears.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/wp-gears.js: Removed.
  • WebKitSite/blog/wp-admin/js/xfn.dev.js: Removed.
  • WebKitSite/blog/wp-admin/js/xfn.js: Removed.
  • WebKitSite/blog/wp-admin/link-add.php: Removed.
  • WebKitSite/blog/wp-admin/link-category.php: Removed.
  • WebKitSite/blog/wp-admin/link-manager.php: Removed.
  • WebKitSite/blog/wp-admin/link-parse-opml.php: Removed.
  • WebKitSite/blog/wp-admin/link.php: Removed.
  • WebKitSite/blog/wp-admin/load-scripts.php: Removed.
  • WebKitSite/blog/wp-admin/load-styles.php: Removed.
  • WebKitSite/blog/wp-admin/media-new.php: Removed.
  • WebKitSite/blog/wp-admin/media-upload.php: Removed.
  • WebKitSite/blog/wp-admin/media.php: Removed.
  • WebKitSite/blog/wp-admin/menu-header.php: Removed.
  • WebKitSite/blog/wp-admin/menu.php: Removed.
  • WebKitSite/blog/wp-admin/moderation.php: Removed.
  • WebKitSite/blog/wp-admin/options-discussion.php: Removed.
  • WebKitSite/blog/wp-admin/options-general.php: Removed.
  • WebKitSite/blog/wp-admin/options-head.php: Removed.
  • WebKitSite/blog/wp-admin/options-media.php: Removed.
  • WebKitSite/blog/wp-admin/options-misc.php: Removed.
  • WebKitSite/blog/wp-admin/options-permalink.php: Removed.
  • WebKitSite/blog/wp-admin/options-privacy.php: Removed.
  • WebKitSite/blog/wp-admin/options-reading.php: Removed.
  • WebKitSite/blog/wp-admin/options-writing.php: Removed.
  • WebKitSite/blog/wp-admin/options.php: Removed.
  • WebKitSite/blog/wp-admin/page-new.php: Removed.
  • WebKitSite/blog/wp-admin/page.php: Removed.
  • WebKitSite/blog/wp-admin/plugin-editor.php: Removed.
  • WebKitSite/blog/wp-admin/plugin-install.php: Removed.
  • WebKitSite/blog/wp-admin/plugins.php: Removed.
  • WebKitSite/blog/wp-admin/post-new.php: Removed.
  • WebKitSite/blog/wp-admin/post.php: Removed.
  • WebKitSite/blog/wp-admin/press-this.php: Removed.
  • WebKitSite/blog/wp-admin/profile.php: Removed.
  • WebKitSite/blog/wp-admin/revision.php: Removed.
  • WebKitSite/blog/wp-admin/rtl.css: Removed.
  • WebKitSite/blog/wp-admin/setup-config.php: Removed.
  • WebKitSite/blog/wp-admin/sidebar.php: Removed.
  • WebKitSite/blog/wp-admin/theme-editor.php: Removed.
  • WebKitSite/blog/wp-admin/theme-install.php: Removed.
  • WebKitSite/blog/wp-admin/themes.php: Removed.
  • WebKitSite/blog/wp-admin/tools.php: Removed.
  • WebKitSite/blog/wp-admin/update-core.php: Removed.
  • WebKitSite/blog/wp-admin/update-links.php: Removed.
  • WebKitSite/blog/wp-admin/update.php: Removed.
  • WebKitSite/blog/wp-admin/upgrade-functions.php: Removed.
  • WebKitSite/blog/wp-admin/upgrade.php: Removed.
  • WebKitSite/blog/wp-admin/upload.php: Removed.
  • WebKitSite/blog/wp-admin/user-edit.php: Removed.
  • WebKitSite/blog/wp-admin/user-new.php: Removed.
  • WebKitSite/blog/wp-admin/users.php: Removed.
  • WebKitSite/blog/wp-admin/widgets.php: Removed.
  • WebKitSite/blog/wp-admin/wp-admin.css: Removed.
  • WebKitSite/blog/wp-app.php: Removed.
  • WebKitSite/blog/wp-atom.php: Removed.
  • WebKitSite/blog/wp-blog-header.php: Removed.
  • WebKitSite/blog/wp-comments-post.php: Removed.
  • WebKitSite/blog/wp-commentsrss2.php: Removed.
  • WebKitSite/blog/wp-config-sample.php: Removed.
  • WebKitSite/blog/wp-config.php: Removed.
  • WebKitSite/blog/wp-content: Removed.
  • WebKitSite/blog/wp-content/Picture9.png: Removed.
  • WebKitSite/blog/wp-content/cache: Removed.
  • WebKitSite/blog/wp-content/chrome.jpg: Removed.
  • WebKitSite/blog/wp-content/chucknorris.png: Removed.
  • WebKitSite/blog/wp-content/databaseexample.png: Removed.
  • WebKitSite/blog/wp-content/drosera.png: Removed.
  • WebKitSite/blog/wp-content/hitlist.png: Removed.
  • WebKitSite/blog/wp-content/index.php: Removed.
  • WebKitSite/blog/wp-content/plugins: Removed.
  • WebKitSite/blog/wp-content/plugins/SK2: Removed.
  • WebKitSite/blog/wp-content/plugins/SK2/sk2_plugins: Removed.
  • WebKitSite/blog/wp-content/plugins/akismet: Removed.
  • WebKitSite/blog/wp-content/plugins/akismet/akismet.gif: Removed.
  • WebKitSite/blog/wp-content/plugins/akismet/akismet.php: Removed.
  • WebKitSite/blog/wp-content/plugins/akismet/readme.txt: Removed.
  • WebKitSite/blog/wp-content/plugins/commentcontrol.php: Removed.
  • WebKitSite/blog/wp-content/plugins/hello.php: Removed.
  • WebKitSite/blog/wp-content/plugins/index.php: Removed.
  • WebKitSite/blog/wp-content/plugins/wp-cache: Removed.
  • WebKitSite/blog/wp-content/rotate.png: Removed.
  • WebKitSite/blog/wp-content/rotate.svg: Removed.
  • WebKitSite/blog/wp-content/svgtext.png: Removed.
  • WebKitSite/blog/wp-content/svgtextmini.png: Removed.
  • WebKitSite/blog/wp-content/svgtextmini_01.png: Removed.
  • WebKitSite/blog/wp-content/textfield_screenshot.jpg: Removed.
  • WebKitSite/blog/wp-content/themes: Removed.
  • WebKitSite/blog/wp-content/themes/classic: Removed.
  • WebKitSite/blog/wp-content/themes/classic/comments-popup.php: Removed.
  • WebKitSite/blog/wp-content/themes/classic/comments.php: Removed.
  • WebKitSite/blog/wp-content/themes/classic/footer.php: Removed.
  • WebKitSite/blog/wp-content/themes/classic/functions.php: Removed.
  • WebKitSite/blog/wp-content/themes/classic/header.php: Removed.
  • WebKitSite/blog/wp-content/themes/classic/index.php: Removed.
  • WebKitSite/blog/wp-content/themes/classic/rtl.css: Removed.
  • WebKitSite/blog/wp-content/themes/classic/screenshot.png: Removed.
  • WebKitSite/blog/wp-content/themes/classic/sidebar.php: Removed.
  • WebKitSite/blog/wp-content/themes/classic/style.css: Removed.
  • WebKitSite/blog/wp-content/themes/default: Removed.
  • WebKitSite/blog/wp-content/themes/default/404.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/archive.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/archives.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/comments-popup.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/comments.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/footer.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/functions.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/header.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/image.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/images: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/audio.jpg: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/header-img.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/kubrickbg-ltr.jpg: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/kubrickbg-rtl.jpg: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/kubrickbgcolor.jpg: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/kubrickbgwide.jpg: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/kubrickfooter.jpg: Removed.
  • WebKitSite/blog/wp-content/themes/default/images/kubrickheader.jpg: Removed.
  • WebKitSite/blog/wp-content/themes/default/index.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/links.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/page.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/rtl.css: Removed.
  • WebKitSite/blog/wp-content/themes/default/screenshot.png: Removed.
  • WebKitSite/blog/wp-content/themes/default/search.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/sidebar.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/single.php: Removed.
  • WebKitSite/blog/wp-content/themes/default/style.css: Removed.
  • WebKitSite/blog/wp-content/themes/index.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/404.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/archive.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/archives.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/comments-popup.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/comments.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/footer.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/header.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/index.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/links.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/page.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/search.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/searchform.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/sidebar.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/single.php: Removed.
  • WebKitSite/blog/wp-content/themes/webkit/style.css: Removed.
  • WebKitSite/blog/wp-content/uploads: Removed.
  • WebKitSite/blog/wp-content/uploads/2007: Removed.
  • WebKitSite/blog/wp-content/uploads/2007/06: Removed.
  • WebKitSite/blog/wp-content/uploads/2007/06/newinspector.png: Removed.
  • WebKitSite/blog/wp-content/webInspector.png: Removed.
  • WebKitSite/blog/wp-cron.php: Removed.
  • WebKitSite/blog/wp-feed.php: Removed.
  • WebKitSite/blog/wp-images: Removed.
  • WebKitSite/blog/wp-images/smilies: Removed.
  • WebKitSite/blog/wp-includes: Removed.
  • WebKitSite/blog/wp-includes/Text: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff.php: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Engine: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Engine/native.php: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Engine/shell.php: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Engine/string.php: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Engine/xdiff.php: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Renderer: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Renderer.php: Removed.
  • WebKitSite/blog/wp-includes/Text/Diff/Renderer/inline.php: Removed.
  • WebKitSite/blog/wp-includes/atomlib.php: Removed.
  • WebKitSite/blog/wp-includes/author-template.php: Removed.
  • WebKitSite/blog/wp-includes/bookmark-template.php: Removed.
  • WebKitSite/blog/wp-includes/bookmark.php: Removed.
  • WebKitSite/blog/wp-includes/cache.php: Removed.
  • WebKitSite/blog/wp-includes/canonical.php: Removed.
  • WebKitSite/blog/wp-includes/capabilities.php: Removed.
  • WebKitSite/blog/wp-includes/category-template.php: Removed.
  • WebKitSite/blog/wp-includes/category.php: Removed.
  • WebKitSite/blog/wp-includes/class-IXR.php: Removed.
  • WebKitSite/blog/wp-includes/class-feed.php: Removed.
  • WebKitSite/blog/wp-includes/class-phpass.php: Removed.
  • WebKitSite/blog/wp-includes/class-phpmailer.php: Removed.
  • WebKitSite/blog/wp-includes/class-pop3.php: Removed.
  • WebKitSite/blog/wp-includes/class-simplepie.php: Removed.
  • WebKitSite/blog/wp-includes/class-smtp.php: Removed.
  • WebKitSite/blog/wp-includes/class-snoopy.php: Removed.
  • WebKitSite/blog/wp-includes/class.wp-dependencies.php: Removed.
  • WebKitSite/blog/wp-includes/class.wp-scripts.php: Removed.
  • WebKitSite/blog/wp-includes/class.wp-styles.php: Removed.
  • WebKitSite/blog/wp-includes/classes.php: Removed.
  • WebKitSite/blog/wp-includes/comment-template.php: Removed.
  • WebKitSite/blog/wp-includes/comment.php: Removed.
  • WebKitSite/blog/wp-includes/compat.php: Removed.
  • WebKitSite/blog/wp-includes/cron.php: Removed.
  • WebKitSite/blog/wp-includes/default-filters.php: Removed.
  • WebKitSite/blog/wp-includes/default-widgets.php: Removed.
  • WebKitSite/blog/wp-includes/deprecated.php: Removed.
  • WebKitSite/blog/wp-includes/feed-atom-comments.php: Removed.
  • WebKitSite/blog/wp-includes/feed-atom.php: Removed.
  • WebKitSite/blog/wp-includes/feed-rdf.php: Removed.
  • WebKitSite/blog/wp-includes/feed-rss.php: Removed.
  • WebKitSite/blog/wp-includes/feed-rss2-comments.php: Removed.
  • WebKitSite/blog/wp-includes/feed-rss2.php: Removed.
  • WebKitSite/blog/wp-includes/feed.php: Removed.
  • WebKitSite/blog/wp-includes/formatting.php: Removed.
  • WebKitSite/blog/wp-includes/functions.php: Removed.
  • WebKitSite/blog/wp-includes/functions.wp-scripts.php: Removed.
  • WebKitSite/blog/wp-includes/functions.wp-styles.php: Removed.
  • WebKitSite/blog/wp-includes/general-template.php: Removed.
  • WebKitSite/blog/wp-includes/gettext.php: Removed.
  • WebKitSite/blog/wp-includes/http.php: Removed.
  • WebKitSite/blog/wp-includes/images: Removed.
  • WebKitSite/blog/wp-includes/images/blank.gif: Removed.
  • WebKitSite/blog/wp-includes/images/crystal: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/archive.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/audio.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/code.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/default.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/document.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/interactive.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/license.txt: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/spreadsheet.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/text.png: Removed.
  • WebKitSite/blog/wp-includes/images/crystal/video.png: Removed.
  • WebKitSite/blog/wp-includes/images/rss.png: Removed.
  • WebKitSite/blog/wp-includes/images/smilies: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_arrow.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_biggrin.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_confused.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_cool.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_cry.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_eek.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_evil.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_exclaim.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_idea.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_lol.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_mad.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_mrgreen.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_neutral.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_question.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_razz.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_redface.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_rolleyes.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_sad.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_smile.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_surprised.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_twisted.gif: Removed.
  • WebKitSite/blog/wp-includes/images/smilies/icon_wink.gif: Removed.
  • WebKitSite/blog/wp-includes/images/upload.png: Removed.
  • WebKitSite/blog/wp-includes/images/wlw: Removed.
  • WebKitSite/blog/wp-includes/images/wlw/wp-comments.png: Removed.
  • WebKitSite/blog/wp-includes/images/wlw/wp-icon.png: Removed.
  • WebKitSite/blog/wp-includes/images/wlw/wp-watermark.png: Removed.
  • WebKitSite/blog/wp-includes/js: Removed.
  • WebKitSite/blog/wp-includes/js/autosave.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/autosave.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/codepress.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/codepress.html: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/codepress.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/engines: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/engines/gecko.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/engines/khtml.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/engines/msie.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/engines/older.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/engines/opera.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/images: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/images/line-numbers.png: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/asp.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/asp.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/autoit.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/autoit.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/csharp.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/csharp.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/css.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/css.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/generic.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/generic.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/html.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/html.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/java.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/java.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/javascript.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/javascript.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/perl.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/perl.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/php.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/php.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/ruby.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/ruby.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/sql.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/sql.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/text.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/text.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/vbscript.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/vbscript.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/xsl.css: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/languages/xsl.js: Removed.
  • WebKitSite/blog/wp-includes/js/codepress/license.txt: Removed.
  • WebKitSite/blog/wp-includes/js/colorpicker.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/colorpicker.js: Removed.
  • WebKitSite/blog/wp-includes/js/comment-reply.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/comment-reply.js: Removed.
  • WebKitSite/blog/wp-includes/js/crop: Removed.
  • WebKitSite/blog/wp-includes/js/crop/cropper.css: Removed.
  • WebKitSite/blog/wp-includes/js/crop/cropper.js: Removed.
  • WebKitSite/blog/wp-includes/js/crop/marqueeHoriz.gif: Removed.
  • WebKitSite/blog/wp-includes/js/crop/marqueeVert.gif: Removed.
  • WebKitSite/blog/wp-includes/js/hoverIntent.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/hoverIntent.js: Removed.
  • WebKitSite/blog/wp-includes/js/jcrop: Removed.
  • WebKitSite/blog/wp-includes/js/jcrop/Jcrop.gif: Removed.
  • WebKitSite/blog/wp-includes/js/jcrop/jquery.Jcrop.css: Removed.
  • WebKitSite/blog/wp-includes/js/jcrop/jquery.Jcrop.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/jcrop/jquery.Jcrop.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/interface.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.color.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.color.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.form.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.form.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.hotkeys.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.hotkeys.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.schedule.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.table-hotkeys.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/jquery.table-hotkeys.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/suggest.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/suggest.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.core.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.dialog.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.draggable.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.droppable.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.resizable.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.selectable.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.sortable.js: Removed.
  • WebKitSite/blog/wp-includes/js/jquery/ui.tabs.js: Removed.
  • WebKitSite/blog/wp-includes/js/prototype.js: Removed.
  • WebKitSite/blog/wp-includes/js/quicktags.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/quicktags.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/MIT-LICENSE: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/builder.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/controls.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/dragdrop.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/effects.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/prototype.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/scriptaculous.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/slider.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/sound.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/unittest.js: Removed.
  • WebKitSite/blog/wp-includes/js/scriptaculous/wp-scriptaculous.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfobject.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/handlers.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/handlers.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/plugins: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/plugins/swfupload.cookies.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/plugins/swfupload.queue.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/plugins/swfupload.speed.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/plugins/swfupload.swfobject.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/swfupload-all.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/swfupload.js: Removed.
  • WebKitSite/blog/wp-includes/js/swfupload/swfupload.swf: Removed.
  • WebKitSite/blog/wp-includes/js/thickbox: Removed.
  • WebKitSite/blog/wp-includes/js/thickbox/loadingAnimation.gif: Removed.
  • WebKitSite/blog/wp-includes/js/thickbox/macFFBgHack.png: Removed.
  • WebKitSite/blog/wp-includes/js/thickbox/tb-close.png: Removed.
  • WebKitSite/blog/wp-includes/js/thickbox/thickbox.css: Removed.
  • WebKitSite/blog/wp-includes/js/thickbox/thickbox.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/blank.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/langs/wp-langs-en.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/langs/wp-langs.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/license.txt: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/autosave: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/autosave/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/directionality: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/directionality/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/directionality/images: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/directionality/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/fullscreen: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/fullscreen/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/fullscreen/fullscreen.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/images: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/jscripts: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/drag.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/skins/clearlooks2/window.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/inlinepopups/template.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/css/content.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/css/media.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img/flash.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img/flv_player.swf: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img/quicktime.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img/realmedia.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img/shockwave.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img/trans.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/img/windowsmedia.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/js/embed.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/js/media.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/media/media.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/blank.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/images: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/js/pastetext.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/js/pasteword.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/jscripts: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/pastetext.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/paste/pasteword.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/safari: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/safari/blank.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/safari/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/EnchantSpell.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/GoogleSpell.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/PSpell.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/PSpellShell.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/SpellChecker.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/utils: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/utils/JSON.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/classes/utils/Logger.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/config.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/css/content.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/images: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/img/wline.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/includes: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/includes/general.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/spellchecker/rpc.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/tabfocus: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/tabfocus/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/css/content.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/editor_plugin.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/images: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/audio.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/help.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/image.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/media.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/more.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/more_bug.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/page.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/page_bug.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/toolbars.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/img/video.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wordpress/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/css/editimage-rtl.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/css/editimage.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/editimage.html: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/img/delete.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/img/image.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpeditimage/js/editimage.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery/editor_plugin.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery/editor_plugin.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery/img/delete.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery/img/edit.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery/img/gallery.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wpgallery/img/t.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wphelp: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wphelp/images: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/plugins/wphelp/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/about.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/anchor.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/charmap.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/color_picker.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/editor_template.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/image.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/images: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/images/xp: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/img/colorpicker.jpg: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/img/fm.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/img/gotmoxie.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/img/icons.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/img/sflogo.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js/about.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js/anchor.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js/charmap.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js/color_picker.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js/image.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js/link.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/js/source_editor.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/jscripts: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/langs: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/link.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/content.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/dialog.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/img/buttons.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/img/items.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/img/menu_check.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/img/progress.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/img/tabs.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/default/ui.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/content.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/dialog.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/img/button_bg.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/ui.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/ui_black.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/o2k7/ui_silver.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/dialog.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/butt2.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/button_bg.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/down_arrow.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/fade-butt.png: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/separator.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/img/tabs.gif: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/themes/advanced/source_editor.htm: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/tiny_mce.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/tiny_mce_popup.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/utils: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/utils/editable_selects.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/utils/form_utils.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/utils/mctabs.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/utils/validate.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/wp-mce-help.php: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/wp-tinymce.js: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/wp-tinymce.js.gz: Removed.
  • WebKitSite/blog/wp-includes/js/tinymce/wp-tinymce.php: Removed.
  • WebKitSite/blog/wp-includes/js/tw-sack.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/tw-sack.js: Removed.
  • WebKitSite/blog/wp-includes/js/wp-ajax-response.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/wp-ajax-response.js: Removed.
  • WebKitSite/blog/wp-includes/js/wp-lists.dev.js: Removed.
  • WebKitSite/blog/wp-includes/js/wp-lists.js: Removed.
  • WebKitSite/blog/wp-includes/kses.php: Removed.
  • WebKitSite/blog/wp-includes/l10n.php: Removed.
  • WebKitSite/blog/wp-includes/link-template.php: Removed.
  • WebKitSite/blog/wp-includes/locale.php: Removed.
  • WebKitSite/blog/wp-includes/media.php: Removed.
  • WebKitSite/blog/wp-includes/pluggable.php: Removed.
  • WebKitSite/blog/wp-includes/plugin.php: Removed.
  • WebKitSite/blog/wp-includes/pomo: Removed.
  • WebKitSite/blog/wp-includes/pomo/entry.php: Removed.
  • WebKitSite/blog/wp-includes/pomo/mo.php: Removed.
  • WebKitSite/blog/wp-includes/pomo/po.php: Removed.
  • WebKitSite/blog/wp-includes/pomo/streams.php: Removed.
  • WebKitSite/blog/wp-includes/pomo/translations.php: Removed.
  • WebKitSite/blog/wp-includes/post-template.php: Removed.
  • WebKitSite/blog/wp-includes/post.php: Removed.
  • WebKitSite/blog/wp-includes/query.php: Removed.
  • WebKitSite/blog/wp-includes/registration-functions.php: Removed.
  • WebKitSite/blog/wp-includes/registration.php: Removed.
  • WebKitSite/blog/wp-includes/rewrite.php: Removed.
  • WebKitSite/blog/wp-includes/rss-functions.php: Removed.
  • WebKitSite/blog/wp-includes/rss.php: Removed.
  • WebKitSite/blog/wp-includes/script-loader.php: Removed.
  • WebKitSite/blog/wp-includes/shortcodes.php: Removed.
  • WebKitSite/blog/wp-includes/streams.php: Removed.
  • WebKitSite/blog/wp-includes/taxonomy.php: Removed.
  • WebKitSite/blog/wp-includes/template-loader.php: Removed.
  • WebKitSite/blog/wp-includes/theme.php: Removed.
  • WebKitSite/blog/wp-includes/update.php: Removed.
  • WebKitSite/blog/wp-includes/user.php: Removed.
  • WebKitSite/blog/wp-includes/vars.php: Removed.
  • WebKitSite/blog/wp-includes/version.php: Removed.
  • WebKitSite/blog/wp-includes/widgets.php: Removed.
  • WebKitSite/blog/wp-includes/wlwmanifest.xml: Removed.
  • WebKitSite/blog/wp-includes/wp-db.php: Removed.
  • WebKitSite/blog/wp-includes/wp-diff.php: Removed.
  • WebKitSite/blog/wp-links-opml.php: Removed.
  • WebKitSite/blog/wp-load.php: Removed.
  • WebKitSite/blog/wp-login.php: Removed.
  • WebKitSite/blog/wp-mail.php: Removed.
  • WebKitSite/blog/wp-pass.php: Removed.
  • WebKitSite/blog/wp-rdf.php: Removed.
  • WebKitSite/blog/wp-register.php: Removed.
  • WebKitSite/blog/wp-rss.php: Removed.
  • WebKitSite/blog/wp-rss2.php: Removed.
  • WebKitSite/blog/wp-settings.php: Removed.
  • WebKitSite/blog/wp-trackback.php: Removed.
  • WebKitSite/blog/xmlrpc.php: Removed.
  • WebKitSite/building: Removed.
  • WebKitSite/building/build-window.png: Removed.
  • WebKitSite/building/build.html: Removed.
  • WebKitSite/building/checkout.html: Removed.
  • WebKitSite/building/custom-executable.png: Removed.
  • WebKitSite/building/cygwin-downloader.zip: Removed.
  • WebKitSite/building/debug.html: Removed.
  • WebKitSite/building/debug.png: Removed.
  • WebKitSite/building/info-tab.png: Removed.
  • WebKitSite/building/launch-debugger-vs2005.png: Removed.
  • WebKitSite/building/run.html: Removed.
  • WebKitSite/building/set-as-startup-project-vs2005.png: Removed.
  • WebKitSite/building/set-debugging-properties-vs2005.png: Removed.
  • WebKitSite/building/tools.html: Removed.
  • WebKitSite/coding: Removed.
  • WebKitSite/coding/RefPtr.html: Removed.
  • WebKitSite/coding/assertion-guidelines.html: Removed.
  • WebKitSite/coding/bsd-license.html: Removed.
  • WebKitSite/coding/coding-style.html: Removed.
  • WebKitSite/coding/commit-review-policy.html: Removed.
  • WebKitSite/coding/contributing.html: Removed.
  • WebKitSite/coding/dom-element-attach.html: Removed.
  • WebKitSite/coding/images: Removed.
  • WebKitSite/coding/images/contribute_add_attachment.png: Removed.
  • WebKitSite/coding/images/contribute_mark_review.png: Removed.
  • WebKitSite/coding/images/dom-element-attach-large.png: Removed.
  • WebKitSite/coding/images/dom-element-attach-small.png: Removed.
  • WebKitSite/coding/images/dom-element-attach.graffle: Removed.
  • WebKitSite/coding/lgpl-license.html: Removed.
  • WebKitSite/coding/major-objects.html: Removed.
  • WebKitSite/coding/scripts.html: Removed.
  • WebKitSite/coding/technical-articles.html: Removed.
  • WebKitSite/contact.html: Removed.
  • WebKitSite/css: Removed.
  • WebKitSite/css/blue.css: Removed.
  • WebKitSite/css/gray.css: Removed.
  • WebKitSite/css/green.css: Removed.
  • WebKitSite/css/ie.css: Removed.
  • WebKitSite/css/main.css: Removed.
  • WebKitSite/css/pink.css: Removed.
  • WebKitSite/css/purple.css: Removed.
  • WebKitSite/css/yellow.css: Removed.
  • WebKitSite/demos: Removed.
  • WebKitSite/demos/accessible-ascii-art: Removed.
  • WebKitSite/demos/accessible-ascii-art/butterfly-figure.html: Removed.
  • WebKitSite/demos/accessible-ascii-art/butterfly.html: Removed.
  • WebKitSite/demos/calendar: Removed.
  • WebKitSite/demos/calendar/Boom.aiff: Removed.
  • WebKitSite/demos/calendar/Calendar.css: Removed.
  • WebKitSite/demos/calendar/Calendar.html: Removed.
  • WebKitSite/demos/calendar/Calendar.js: Removed.
  • WebKitSite/demos/calendar/Calendar.manifest: Removed.
  • WebKitSite/demos/calendar/CalendarApp.icns: Removed.
  • WebKitSite/demos/calendar/Images: Removed.
  • WebKitSite/demos/calendar/Images/AirPort4.png: Removed.
  • WebKitSite/demos/calendar/Images/AirPortError.png: Removed.
  • WebKitSite/demos/calendar/Images/disclosureTriangleSmallDown.png: Removed.
  • WebKitSite/demos/calendar/Images/disclosureTriangleSmallRight.png: Removed.
  • WebKitSite/demos/calendar/Images/statusbarBackground.png: Removed.
  • WebKitSite/demos/calendar/Images/statusbarResizerVertical.png: Removed.
  • WebKitSite/demos/calendar/LocationImage.js: Removed.
  • WebKitSite/demos/calendar/Utilities.js: Removed.
  • WebKitSite/demos/calendar/favicon.ico: Removed.
  • WebKitSite/demos/calendar/index.html: Removed.
  • WebKitSite/demos/calendar/mime.types: Removed.
  • WebKitSite/demos/canvas-perf: Removed.
  • WebKitSite/demos/canvas-perf/canvas.html: Removed.
  • WebKitSite/demos/canvas-perf/kraken.jpg: Removed.
  • WebKitSite/demos/editingToolbar: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbar.css: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbar.js: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/button.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/buttonLeft.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/buttonMiddle.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/buttonPressed.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/buttonPressedLeft.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/buttonPressedMiddle.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/buttonPressedRight.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/buttonRight.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/camera.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/link.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/textAlign.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutline.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottom.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottomLeft.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineBottomRight.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineLeft.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineRight.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineTop.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineTopLeft.png: Removed.
  • WebKitSite/demos/editingToolbar/FancyToolbarImages/toolbarOutlineTopRight.png: Removed.
  • WebKitSite/demos/editingToolbar/content.html: Removed.
  • WebKitSite/demos/editingToolbar/images: Removed.
  • WebKitSite/demos/editingToolbar/images/safari.png: Removed.
  • WebKitSite/demos/editingToolbar/index.html: Removed.
  • WebKitSite/demos/hover-summary: Removed.
  • WebKitSite/demos/hover-summary/details.css: Removed.
  • WebKitSite/demos/hover-summary/details.js: Removed.
  • WebKitSite/demos/hover-summary/example1.html: Removed.
  • WebKitSite/demos/hover-summary/example2.html: Removed.
  • WebKitSite/demos/hover-summary/horizontal-triangle.png: Removed.
  • WebKitSite/demos/hover-summary/vertical-triangle.png: Removed.
  • WebKitSite/demos/index.html: Removed.
  • WebKitSite/demos/mathml: Removed.
  • WebKitSite/demos/mathml/MathMLDemo.xhtml: Removed.
  • WebKitSite/demos/sticky-notes: Removed.
  • WebKitSite/demos/sticky-notes/StickyNotes.manifest: Removed.
  • WebKitSite/demos/sticky-notes/deleteButton.png: Removed.
  • WebKitSite/demos/sticky-notes/deleteButtonPressed.png: Removed.
  • WebKitSite/demos/sticky-notes/index.html: Removed.
  • WebKitSite/demos/transitions-and-transforms: Removed.
  • WebKitSite/demos/transitions-and-transforms/Finder Coverflow.png: Removed.
  • WebKitSite/demos/transitions-and-transforms/Horsehead.png: Removed.
  • WebKitSite/demos/transitions-and-transforms/Mail Stationery.png: Removed.
  • WebKitSite/demos/transitions-and-transforms/Quick Look.png: Removed.
  • WebKitSite/demos/transitions-and-transforms/Spaces.png: Removed.
  • WebKitSite/demos/transitions-and-transforms/Stacks.png: Removed.
  • WebKitSite/demos/transitions-and-transforms/Time Machine.png: Removed.
  • WebKitSite/demos/transitions-and-transforms/index.html: Removed.
  • WebKitSite/demos/transitions-and-transforms/leopard.css: Removed.
  • WebKitSite/demos/transitions-and-transforms/no-style.html: Removed.
  • WebKitSite/favicon.ico: Removed.
  • WebKitSite/footer.inc: Removed.
  • WebKitSite/header.inc: Removed.
  • WebKitSite/images: Removed.
  • WebKitSite/images/DroseraPic.png: Removed.
  • WebKitSite/images/blank.png: Removed.
  • WebKitSite/images/blue-background.png: Removed.
  • WebKitSite/images/blue-bullet.png: Removed.
  • WebKitSite/images/download.png: Removed.
  • WebKitSite/images/end.png: Removed.
  • WebKitSite/images/gray-background.png: Removed.
  • WebKitSite/images/green-background.png: Removed.
  • WebKitSite/images/green-bullet.png: Removed.
  • WebKitSite/images/icon-gold.png: Removed.
  • WebKitSite/images/icon.png: Removed.
  • WebKitSite/images/ie-nav.png: Removed.
  • WebKitSite/images/middle.png: Removed.
  • WebKitSite/images/nav.png: Removed.
  • WebKitSite/images/pink-background.png: Removed.
  • WebKitSite/images/pink-bullet.png: Removed.
  • WebKitSite/images/purple-background.png: Removed.
  • WebKitSite/images/purple-bullet.png: Removed.
  • WebKitSite/images/surfin-safari.icns: Removed.
  • WebKitSite/images/yellow-background.png: Removed.
  • WebKitSite/images/yellow-bullet.png: Removed.
  • WebKitSite/index.html: Removed.
  • WebKitSite/misc: Removed.
  • WebKitSite/misc/DatabaseExample.html: Removed.
  • WebKitSite/misc/DatabaseTester.html: Removed.
  • WebKitSite/misc/WebKitDetect.html: Removed.
  • WebKitSite/misc/WebKitDetect.js: Removed.
  • WebKitSite/misc/drosera: Removed.
  • WebKitSite/misc/drosera/demo.js: Removed.
  • WebKitSite/misc/drosera/drosera.png: Removed.
  • WebKitSite/misc/drosera/index.html: Removed.
  • WebKitSite/misc/gradient-input.html: Removed.
  • WebKitSite/misc/morph.html: Removed.
  • WebKitSite/nav.inc: Removed.
  • WebKitSite/perf: Removed.
  • WebKitSite/perf/slickspeed: Removed.
  • WebKitSite/perf/slickspeed/config.ini: Removed.
  • WebKitSite/perf/slickspeed/footer.html: Removed.
  • WebKitSite/perf/slickspeed/frameworks: Removed.
  • WebKitSite/perf/slickspeed/frameworks/DomQuery.js: Removed.
  • WebKitSite/perf/slickspeed/frameworks/dummy.js: Removed.
  • WebKitSite/perf/slickspeed/frameworks/jquery-1.2.3.js: Removed.
  • WebKitSite/perf/slickspeed/frameworks/prototype.js: Removed.
  • WebKitSite/perf/slickspeed/header.html: Removed.
  • WebKitSite/perf/slickspeed/index.php: Removed.
  • WebKitSite/perf/slickspeed/instructions.txt: Removed.
  • WebKitSite/perf/slickspeed/logo.png: Removed.
  • WebKitSite/perf/slickspeed/selectors.list: Removed.
  • WebKitSite/perf/slickspeed/style.css: Removed.
  • WebKitSite/perf/slickspeed/system: Removed.
  • WebKitSite/perf/slickspeed/system/index.php: Removed.
  • WebKitSite/perf/slickspeed/system/slickspeed.js: Removed.
  • WebKitSite/perf/slickspeed/system/template.php: Removed.
  • WebKitSite/perf/slickspeed/template.html: Removed.
  • WebKitSite/perf/sunspider: Removed.
  • WebKitSite/perf/sunspider-0.9: Removed.
  • WebKitSite/perf/sunspider-0.9.1: Removed.
  • WebKitSite/perf/sunspider-0.9.1/json2.js: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9.1: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9.1/driver.html: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9.1/results.html: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9.1/sunspider-test-contents.js: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9.1/sunspider-test-prefix.js: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9/driver.html: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9/results.html: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9/sunspider-test-contents.js: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-0.9/sunspider-test-prefix.js: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-analyze-results.js: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider-compare-results.js: Removed.
  • WebKitSite/perf/sunspider-0.9.1/sunspider.css: Removed.
  • WebKitSite/perf/sunspider-0.9/3d-cube.html: Removed.
  • WebKitSite/perf/sunspider-0.9/3d-morph.html: Removed.
  • WebKitSite/perf/sunspider-0.9/3d-raytrace.html: Removed.
  • WebKitSite/perf/sunspider-0.9/access-binary-trees.html: Removed.
  • WebKitSite/perf/sunspider-0.9/access-fannkuch.html: Removed.
  • WebKitSite/perf/sunspider-0.9/access-nbody.html: Removed.
  • WebKitSite/perf/sunspider-0.9/access-nsieve.html: Removed.
  • WebKitSite/perf/sunspider-0.9/bitops-3bit-bits-in-byte.html: Removed.
  • WebKitSite/perf/sunspider-0.9/bitops-bits-in-byte.html: Removed.
  • WebKitSite/perf/sunspider-0.9/bitops-bitwise-and.html: Removed.
  • WebKitSite/perf/sunspider-0.9/bitops-nsieve-bits.html: Removed.
  • WebKitSite/perf/sunspider-0.9/controlflow-recursive.html: Removed.
  • WebKitSite/perf/sunspider-0.9/crypto-aes.html: Removed.
  • WebKitSite/perf/sunspider-0.9/crypto-md5.html: Removed.
  • WebKitSite/perf/sunspider-0.9/crypto-sha1.html: Removed.
  • WebKitSite/perf/sunspider-0.9/date-format-tofte.html: Removed.
  • WebKitSite/perf/sunspider-0.9/date-format-xparb.html: Removed.
  • WebKitSite/perf/sunspider-0.9/math-cordic.html: Removed.
  • WebKitSite/perf/sunspider-0.9/math-partial-sums.html: Removed.
  • WebKitSite/perf/sunspider-0.9/math-spectral-norm.html: Removed.
  • WebKitSite/perf/sunspider-0.9/regexp-dna.html: Removed.
  • WebKitSite/perf/sunspider-0.9/string-base64.html: Removed.
  • WebKitSite/perf/sunspider-0.9/string-fasta.html: Removed.
  • WebKitSite/perf/sunspider-0.9/string-tagcloud.html: Removed.
  • WebKitSite/perf/sunspider-0.9/string-unpack-code.html: Removed.
  • WebKitSite/perf/sunspider-0.9/string-validate-input.html: Removed.
  • WebKitSite/perf/sunspider-0.9/sunspider-analyze-results.js: Removed.
  • WebKitSite/perf/sunspider-0.9/sunspider-compare-results.js: Removed.
  • WebKitSite/perf/sunspider-0.9/sunspider-driver.html: Removed.
  • WebKitSite/perf/sunspider-0.9/sunspider-record-result.js: Removed.
  • WebKitSite/perf/sunspider-0.9/sunspider-results.html: Removed.
  • WebKitSite/perf/sunspider-0.9/sunspider-test-prefix.js: Removed.
  • WebKitSite/perf/sunspider-0.9/sunspider.css: Removed.
  • WebKitSite/perf/sunspider/sunspider.css: Removed.
  • WebKitSite/perf/sunspider/sunspider.html: Removed.
  • WebKitSite/pngbehavior.htc: Removed.
  • WebKitSite/projects: Removed.
  • WebKitSite/projects/accessibility: Removed.
  • WebKitSite/projects/accessibility/index.html: Removed.
  • WebKitSite/projects/cleanup: Removed.
  • WebKitSite/projects/cleanup/index.html: Removed.
  • WebKitSite/projects/compat: Removed.
  • WebKitSite/projects/compat/index.html: Removed.
  • WebKitSite/projects/css: Removed.
  • WebKitSite/projects/css/index.html: Removed.
  • WebKitSite/projects/documentation: Removed.
  • WebKitSite/projects/documentation/index.html: Removed.
  • WebKitSite/projects/dom: Removed.
  • WebKitSite/projects/dom/index.html: Removed.
  • WebKitSite/projects/editing: Removed.
  • WebKitSite/projects/editing/index.html: Removed.
  • WebKitSite/projects/forms: Removed.
  • WebKitSite/projects/forms/index.html: Removed.
  • WebKitSite/projects/goals.html: Removed.
  • WebKitSite/projects/html: Removed.
  • WebKitSite/projects/html/index.html: Removed.
  • WebKitSite/projects/index.html: Removed.
  • WebKitSite/projects/javascript: Removed.
  • WebKitSite/projects/javascript/index.html: Removed.
  • WebKitSite/projects/layout: Removed.
  • WebKitSite/projects/layout/index.html: Removed.
  • WebKitSite/projects/mathml: Removed.
  • WebKitSite/projects/mathml/index.html: Removed.
  • WebKitSite/projects/performance: Removed.
  • WebKitSite/projects/performance/index.html: Removed.
  • WebKitSite/projects/plugins: Removed.
  • WebKitSite/projects/plugins/index.html: Removed.
  • WebKitSite/projects/portability: Removed.
  • WebKitSite/projects/portability/index.html: Removed.
  • WebKitSite/projects/printing: Removed.
  • WebKitSite/projects/printing/index.html: Removed.
  • WebKitSite/projects/svg: Removed.
  • WebKitSite/projects/svg/index.html: Removed.
  • WebKitSite/projects/svg/status.xml: Removed.
  • WebKitSite/projects/svg/svg-status.css: Removed.
  • WebKitSite/projects/svg/svg-status.xsl: Removed.
  • WebKitSite/projects/webkit: Removed.
  • WebKitSite/projects/webkit/index.html: Removed.
  • WebKitSite/projects/xml: Removed.
  • WebKitSite/projects/xml/index.html: Removed.
  • WebKitSite/projects/xslt: Removed.
  • WebKitSite/projects/xslt/index.html: Removed.
  • WebKitSite/quality: Removed.
  • WebKitSite/quality/.htaccess: Removed.
  • WebKitSite/quality/Ahem.ttf: Removed.
  • WebKitSite/quality/bugpriorities.html: Removed.
  • WebKitSite/quality/bugwriting.html: Removed.
  • WebKitSite/quality/bugzilla.html: Removed.
  • WebKitSite/quality/crashlogs.html: Removed.
  • WebKitSite/quality/leakhunting.html: Removed.
  • WebKitSite/quality/lifecycle.html: Removed.
  • WebKitSite/quality/mac_reportbox.jpg: Removed.
  • WebKitSite/quality/mac_viewtrace.jpg: Removed.
  • WebKitSite/quality/reduction.html: Removed.
  • WebKitSite/quality/reporting.html: Removed.
  • WebKitSite/quality/testing.html: Removed.
  • WebKitSite/quality/testwriting.html: Removed.
  • WebKitSite/quality/win_installwatson.jpg: Removed.
  • WebKitSite/quality/win_watsongui.jpg: Removed.
  • WebKitSite/quality/win_watsoninstalled.jpg: Removed.
  • WebKitSite/security: Removed.
  • WebKitSite/security/index.html: Removed.
  • WebKitSite/security/security-group-members.html: Removed.
  • WebKitSite/specs: Removed.
  • WebKitSite/specs/CSSVisualEffects: Removed.
  • WebKitSite/specs/CSSVisualEffects/css3-2d-transforms: Removed.
  • WebKitSite/specs/CSSVisualEffects/css3-3d-transforms: Removed.
  • WebKitSite/specs/CSSVisualEffects/css3-animations: Removed.
  • WebKitSite/specs/CSSVisualEffects/css3-transitions: Removed.
  • WebKitSite/specs/CSSVisualEffects/index.html: Removed.
  • WebKitSite/specs/HTML_Timed_Media_Elements.html: Removed.
  • WebKitSite/specs/MediaQueriesExtensions.html: Removed.
  • WebKitSite/specs/PointerEventsProperty.html: Removed.
  • WebKitSite/specs/Timed_Media_CSS.html: Removed.
  • WebKitSite/specs/Timed_Media_Elements-Open_Issues.html: Removed.
  • WebKitSite/specs/index.html: Removed.
  • WebKitSite/specs/mediaelement.css: Removed.
  • WebKitSite/specs/movie-status-states.png: Removed.
  • WebKitSite/specs/squirrelfish-bytecode.html: Removed.
  • cmake/WebKitPackaging.cmake:

Tools:

Update references to BugsSite to point to the new location.

This patch was never officially reviewed (because it was too large to
upload to bugs.webkit.org), but it was discussed on webkit-dev and Mark
Rowe gave me the green light.

  • Scripts/old-run-webkit-tests:
  • Scripts/webkitpy/common/config/build.py:
  • Scripts/webkitpy/common/config/build_unittest.py:
  • Scripts/webkitpy/common/prettypatch.py:
  • Scripts/webkitpy/layout_tests/port/base.py:
  • Scripts/webkitpy/style/main.py:
11:02 PM Changeset in webkit [74395] by abarth@webkit.org
  • 1 move in trunk/Websites/webkit.org

Move WebKitSite to Websites

11:01 PM Changeset in webkit [74394] by abarth@webkit.org
  • 1 move in trunk/Websites/bugs.webkit.org

Move BugsSite to Websites

10:58 PM Changeset in webkit [74393] by abarth@webkit.org
  • 1 move in trunk/Websites/planet.webkit.org

Move PlanetWebKit to Websites

10:57 PM Changeset in webkit [74392] by abarth@webkit.org
  • 1 add in trunk/Websites

Add empty directory to hold web sites

10:45 PM Changeset in webkit [74391] by yutak@chromium.org
  • 3 edits
    1 copy
    1 add in trunk/LayoutTests

2010-12-20 Yuta Kitamura <yutak@chromium.org>

Unreviewed.

Update test expectations of http/tests/inspector/console-websocket-error.html
on Mac, and add the test to GTK's Skipped list.

  • platform/gtk/Skipped:
  • platform/mac-leopard/http/tests/inspector/console-websocket-error-expected.txt: Copied from LayoutTests/platform/mac/http/tests/inspector/console-websocket-error-expected.txt.
  • platform/mac/http/tests/inspector/console-websocket-error-expected.txt:
9:44 PM Changeset in webkit [74390] by yutak@chromium.org
  • 9 edits
    3 adds in trunk

2010-12-20 Yuta Kitamura <yutak@chromium.org>

Reviewed by Alexey Proskuryakov.

WebSocket errors should be logged to console
https://bugs.webkit.org/show_bug.cgi?id=40945

  • http/tests/inspector/console-websocket-error.html: Added.
  • platform/mac/http/tests/inspector/console-websocket-error-expected.txt: Added.
  • platform/win/Skipped: Added console-websocket-error.html because HTTPS server is not supported on Windows yet.

2010-12-20 Yuta Kitamura <yutak@chromium.org>

Reviewed by Alexey Proskuryakov.

WebSocket errors should be logged to console
https://bugs.webkit.org/show_bug.cgi?id=40945

Test: http/tests/inspector/console-websocket-error.html

  • platform/network/SocketStreamErrorBase.cpp: (WebCore::SocketStreamErrorBase::compare):
  • platform/network/SocketStreamErrorBase.h: (WebCore::SocketStreamErrorBase::failingURL): (WebCore::SocketStreamErrorBase::localizedDescription): (WebCore::SocketStreamErrorBase::SocketStreamErrorBase):
  • platform/network/cf/SocketStreamError.h: (WebCore::SocketStreamError::SocketStreamError):
  • platform/network/cf/SocketStreamHandle.h:
  • platform/network/cf/SocketStreamHandleCFNet.cpp: (WebCore::SocketStreamHandle::readStreamCallback): (WebCore::SocketStreamHandle::writeStreamCallback): (WebCore::SocketStreamHandle::reportErrorToClient):
  • websockets/WebSocketChannel.cpp: (WebCore::WebSocketChannel::didFail):
9:24 PM Changeset in webkit [74389] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r74349.
http://trac.webkit.org/changeset/74349
https://bugs.webkit.org/show_bug.cgi?id=51372

We are going to do better than reverting the code. (Requested
by tonikitoo on #webkit).

  • fast/repaint/no-caret-repaint-in-non-content-editable-element.html:
9:07 PM Changeset in webkit [74388] by tonyg@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

Fix line breaks in fast/gradients/gradient-after-transparent-border expectations
https://bugs.webkit.org/show_bug.cgi?id=51375

  • fast/gradients/gradient-after-transparent-border-expected.txt:
8:41 PM Changeset in webkit [74387] by tonyg@chromium.org
  • 2 edits
    1 add in trunk/LayoutTests

2010-12-20 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

[chromium] Rebaseline inspector/console-dir-global and debugger-expand-scope
https://bugs.webkit.org/show_bug.cgi?id=51373

  • platform/chromium-win/inspector/console-dir-global-expected.txt:
  • platform/chromium-win/inspector/debugger-expand-scope-expected.txt: Added.
8:32 PM Changeset in webkit [74386] by morrita@google.com
  • 3 edits
    4 adds in trunk

2010-12-17 MORITA Hajime <morrita@google.com>

Reviewed by James Robinson.

https://bugs.webkit.org/show_bug.cgi?id=51240
[Chromium][Skia] Border with a color with alpha != 1 breaks webkit gradient on skia.

  • fast/gradients/gradient-after-transparent-border-expected.txt: Added.
  • fast/gradients/gradient-after-transparent-border.html: Added.
  • platform/chromium-win/fast/gradients/gradient-after-transparent-border-expected.checksum: Added.
  • platform/chromium-win/fast/gradients/gradient-after-transparent-border-expected.png: Added.

2010-12-17 MORITA Hajime <morrita@google.com>

Reviewed by James Robinson.

https://bugs.webkit.org/show_bug.cgi?id=51240
[Chromium][Skia] Border with a color with alpha != 1 breaks webkit gradient on skia.

Even after a shader was set, old color value had been remaining and passed to Skia.
Then Skia refered an alpha component of that color to make pixels transparent.
This change invalidates existing color value when a shader is given,
which means the renderer will paint shapes with gradients or patterns.

Test: fast/gradients/gradient-after-transparent-border.html

  • platform/graphics/skia/PlatformContextSkia.cpp: (WebCore::PlatformContextSkia::setStrokeShader): (WebCore::PlatformContextSkia::setFillShader):
8:13 PM Changeset in webkit [74385] by xji@chromium.org
  • 3 edits
    2 adds in trunk

2010-12-20 Xiaomei Ji <xji@chromium.org>

Reviewed by Dan Bernstein.

Fix move left/right by character hang.
https://bugs.webkit.org/show_bug.cgi?id=51344

Test: editing/selection/51344.html

  • editing/VisiblePosition.cpp: (WebCore::VisiblePosition::leftVisuallyDistinctCandidate): (WebCore::VisiblePosition::rightVisuallyDistinctCandidate):

2010-12-20 Xiaomei Ji <xji@chromium.org>

Reviewed by Dan Bernstein.

Fix move left/right by character hang.
https://bugs.webkit.org/show_bug.cgi?id=51344

  • editing/selection/51344-expected.txt: Added.
  • editing/selection/51344.html: Added.
7:34 PM Changeset in webkit [74384] by weinig@apple.com
  • 10 edits
    2 adds in trunk/WebKit2

WebKit2: Add resource load client API
https://bugs.webkit.org/show_bug.cgi?id=51370

Reviewed by Anders Carlsson.

This just pipes through the basic resource load client data.

  • UIProcess/API/C/WKPage.cpp:

(WKPageSetPageResourceLoadClient):

  • UIProcess/API/C/WKPage.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::initializeResourceLoadClient):
(WebKit::WebPageProxy::didInitiateLoadForResource):
(WebKit::WebPageProxy::didSendRequestForResource):
(WebKit::WebPageProxy::didReceiveResponseForResource):
(WebKit::WebPageProxy::didReceiveContentLengthForResource):
(WebKit::WebPageProxy::didFinishLoadForResource):
(WebKit::WebPageProxy::didFailLoadForResource):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.messages.in:
  • UIProcess/WebResourceLoadClient.cpp: Added.

(WebKit::WebResourceLoadClient::didInitiateLoadForResource):
(WebKit::WebResourceLoadClient::didSendRequestForResource):
(WebKit::WebResourceLoadClient::didReceiveResponseForResource):
(WebKit::WebResourceLoadClient::didReceiveContentLengthForResource):
(WebKit::WebResourceLoadClient::didFinishLoadForResource):
(WebKit::WebResourceLoadClient::didFailLoadForResource):

  • UIProcess/WebResourceLoadClient.h: Added.
  • WebKit2.pro:
  • WebKit2.xcodeproj/project.pbxproj:
  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::assignIdentifierToInitialRequest):
(WebKit::WebFrameLoaderClient::dispatchWillSendRequest):
(WebKit::WebFrameLoaderClient::dispatchDidReceiveResponse):
(WebKit::WebFrameLoaderClient::dispatchDidReceiveContentLength):
(WebKit::WebFrameLoaderClient::dispatchDidFinishLoading):
(WebKit::WebFrameLoaderClient::dispatchDidFailLoading):

  • win/WebKit2.vcproj:
7:06 PM Changeset in webkit [74383] by tonyg@chromium.org
  • 1 edit
    7 adds in trunk/LayoutTests

2010-12-20 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

[chromium] Add baseline for table-before-child-add.html
https://bugs.webkit.org/show_bug.cgi?id=51369

  • platform/chromium-linux/fast/css-generated-content/table-before-child-add-expected.checksum: Added.
  • platform/chromium-linux/fast/css-generated-content/table-before-child-add-expected.png: Added.
  • platform/chromium-mac/fast/css-generated-content/table-before-child-add-expected.checksum: Added.
  • platform/chromium-mac/fast/css-generated-content/table-before-child-add-expected.png: Added.
  • platform/chromium-win/fast/css-generated-content/table-before-child-add-expected.checksum: Added.
  • platform/chromium-win/fast/css-generated-content/table-before-child-add-expected.png: Added.
  • platform/chromium-win/fast/css-generated-content/table-before-child-add-expected.txt: Added.
6:58 PM Changeset in webkit [74382] by Stephanie Lewis
  • 4 edits in trunk/JavaScriptCore

Committing for Gavin since he needed to leave.

PPC build fix; stop using std::swap on PageAllocation/PageReservation,
this was failing on some compilers since the lack of default construction
for the m_executable/m_writable fields meant the value being swapped may
not have been fully initialized.

Patch by Gavin Barraclough <barraclough@apple.com> on 2010-12-20

  • wtf/PageAllocation.h:

(WTF::PageAllocation::deallocate):

  • wtf/PageBlock.h:
  • wtf/PageReservation.h:

(WTF::PageReservation::deallocate):

6:24 PM Changeset in webkit [74381] by commit-queue@webkit.org
  • 2 edits in trunk/WebCore

2010-12-20 Steve Lacey <sjl@chromium.org>

Reviewed by David Levin.

Add missing default styles in mediaControlsChromium.css to prevent
user overrides.
https://bugs.webkit.org/show_bug.cgi?id=51360

No new tests needed as functionality is covered by existing layout
tests.

  • css/mediaControlsChromium.css: (audio::-webkit-media-controls-current-time-display, video::-webkit-media-controls-current-time-display): (audio::-webkit-media-controls-time-remaining-display, video::-webkit-media-controls-time-remaining-display):
6:17 PM Changeset in webkit [74380] by jianli@chromium.org
  • 5 edits
    4 adds in trunk

Add lastModifiedDate attribute to File interface per File API spec
https://bugs.webkit.org/show_bug.cgi?id=49895

Reviewed by David Levin.

WebCore:

lastModifiedDate is not supported for GObject bindings because Date is
not support in code generation.

Test: http/tests/local/fileapi/file-last-modified.html

  • fileapi/File.cpp:

(WebCore::File::lastModifiedDate):

  • fileapi/File.h:
  • fileapi/File.idl:

LayoutTests:

  • http/tests/local/fileapi/file-last-modified-expected.txt: Added.
  • http/tests/local/fileapi/file-last-modified.html: Added.
  • http/tests/local/fileapi/script-tests/file-last-modified.js: Added.
  • http/tests/resources/file-last-modified.php: Added.
5:57 PM Changeset in webkit [74379] by enne@google.com
  • 2 edits in trunk/Tools

2010-12-20 Adrienne Walker <enne@google.com>

Unreviewed. Adding myself to the list of committers.

  • webkitpy/common/config/committers.py:
5:36 PM Changeset in webkit [74378] by Joseph Pecoraro
  • 2 edits in trunk

2010-12-20 Joseph Pecoraro <Joseph Pecoraro>

Reviewed by Darin Adler.

Update .gitattributes for WebKitTools -> Tools change
https://bugs.webkit.org/show_bug.cgi?id=51365

  • .gitattributes: WebKitTools -> Tools rename. Removed no longer existing file references.
5:02 PM Changeset in webkit [74377] by oliver@apple.com
  • 8 edits in trunk

2010-12-20 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

|delete name| in strict mode code should be an early error
https://bugs.webkit.org/show_bug.cgi?id=50431

Disallow the |delete IDENTIFIER| production in strict mode, and removed
a bunch of now unnecessary code.

  • parser/JSParser.cpp: (JSC::JSParser::Scope::collectFreeVariables): (JSC::jsParse): (JSC::JSParser::parseProgram): (JSC::JSParser::parseUnaryExpression):
  • parser/JSParser.h:
  • parser/Parser.cpp: (JSC::Parser::parse):
  • parser/Parser.h: (JSC::Parser::parse):

2010-12-20 Oliver Hunt <oliver@apple.com>

Reviewed by Geoffrey Garen.

|delete name| in strict mode code should be an early error
https://bugs.webkit.org/show_bug.cgi?id=50431

Add a test to ensure that |delete IDENTIFIER| is disallowed, even if
IDENTIFIER resolves to a deletable property.

  • fast/js/basic-strict-mode-expected.txt:
  • fast/js/script-tests/basic-strict-mode.js:
4:35 PM Changeset in webkit [74376] by andersca@apple.com
  • 10 edits
    4 adds in trunk/WebKit2

2010-12-20 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Add a TextChecker class, hook up spelling and grammar toggling
https://bugs.webkit.org/show_bug.cgi?id=51363

  • UIProcess/API/mac/WKView.mm: (-[WKView validateUserInterfaceItem:]): (-[WKView toggleContinuousSpellChecking:]): (-[WKView toggleGrammarChecking:]):
  • UIProcess/TextChecker.h: Added.
  • UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::unmarkAllMisspellings): (WebKit::WebPageProxy::unmarkAllBadGrammar):
  • UIProcess/WebPageProxy.h:
  • UIProcess/mac/TextCheckerMac.mm: Added. (WebKit::TextChecker::isContinuousSpellCheckingAllowed): (WebKit::TextChecker::isContinuousSpellCheckingEnabled): (WebKit::TextChecker::setContinuousSpellCheckingEnabled): (WebKit::TextChecker::isGrammarCheckingEnabled): (WebKit::TextChecker::setGrammarCheckingEnabled):
  • UIProcess/qt/TextCheckerQt.cpp: Added. (WebKit::TextChecker::isContinuousSpellCheckingAllowed): (WebKit::TextChecker::isContinuousSpellCheckingEnabled): (WebKit::TextChecker::setContinuousSpellCheckingEnabled): (WebKit::TextChecker::isGrammarCheckingEnabled): (WebKit::TextChecker::setGrammarCheckingEnabled):
  • UIProcess/win/TextCheckerWin.cpp: Added. (WebKit::TextChecker::isContinuousSpellCheckingAllowed): (WebKit::TextChecker::isContinuousSpellCheckingEnabled): (WebKit::TextChecker::setContinuousSpellCheckingEnabled): (WebKit::TextChecker::isGrammarCheckingEnabled): (WebKit::TextChecker::setGrammarCheckingEnabled):
  • WebKit2.pro:
  • WebKit2.xcodeproj/project.pbxproj:
  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::unmarkAllMisspellings): (WebKit::WebPage::unmarkAllBadGrammar):
  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in:
  • win/WebKit2.vcproj:
4:06 PM Changeset in webkit [74375] by mrowe@apple.com
  • 4 edits in trunk

<rdar://problem/8757601> Don't install header files in to the Resources directory.

Reviewed by Dan Bernstein.

Tools:

  • Scripts/check-for-inappropriate-files-in-framework: Don't allow .h files in the

Resources directory.

WebCore:

  • WebCore.xcodeproj/project.pbxproj:
3:56 PM Changeset in webkit [74374] by barraclough@apple.com
  • 3 edits in trunk/JavaScriptCore

Bug 51358 - Should check stack depth rather than using recursion limits in byte compilation

Reviewed by Olver Hunt.

The current implementation of recursion limit checking is not safe on smaller stacks.
Switch to using a common mechanism, shared with the parser, to check recursion limits.

Make bytecompiler use StackBounds. Empirical testing shows emitStrcat to have the largest
footprint on the stack, at just under 1k on x86-64. Given this, the default recursion
check (requiring 4k of available space to recurse) seems reasonable.

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::emitNode):
(JSC::BytecodeGenerator::emitNodeInConditionContext):

  • bytecompiler/NodesCodegen.cpp:

(JSC::BinaryOpNode::emitStrcat):

3:55 PM Changeset in webkit [74373] by eric@webkit.org
  • 5 edits in trunk/Tools

2010-12-20 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

commit-queue should include bot id when attaching failure diffs
https://bugs.webkit.org/show_bug.cgi?id=51280

This is a tiny change to include the bot id in the name of the attachment.
Most of this diff is just changing the unit test expectations
now that I hid the comment printing when the comment is None.

  • Scripts/webkitpy/tool/bot/flakytestreporter.py:
  • Scripts/webkitpy/tool/bot/flakytestreporter_unittest.py:
  • Scripts/webkitpy/tool/commands/upload_unittest.py:
  • Scripts/webkitpy/tool/mocktool.py:
3:37 PM Changeset in webkit [74372] by andreip@google.com
  • 7 edits in trunk

2010-12-20 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

[Chromium] v8/SerializedScriptValue::readUint32 treats incoming raw values as signed instead of unsigned
https://bugs.webkit.org/show_bug.cgi?id=51338

  • fast/dom/Window/window-postmessage-args-expected.txt:
  • fast/dom/Window/window-postmessage-args.html:
  • platform/chromium-mac/fast/dom/Window/window-postmessage-args-expected.txt:
  • platform/chromium-win/fast/dom/Window/window-postmessage-args-expected.txt:

2010-12-20 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

[Chromium] v8/SerializedScriptValue::readUint32 treats incoming raw values as signed instead of unsigned
https://bugs.webkit.org/show_bug.cgi?id=51338

  • bindings/v8/SerializedScriptValue.cpp: (WebCore::ZigZag::Reader::readUint32):
3:03 PM Changeset in webkit [74371] by tonyg@chromium.org
  • 2 edits in trunk/JavaScriptCore

2010-12-20 Tony Gentilcore <tonyg@chromium.org>

Unreviewed build fix.

Include pthread to fix chromium mac build (broken by r74360)
https://bugs.webkit.org/show_bug.cgi?id=51356

  • wtf/StackBounds.cpp:
2:57 PM Changeset in webkit [74370] by Beth Dakin
  • 3 edits
    2 adds in trunk

WebCore: Fix for https://bugs.webkit.org/show_bug.cgi?id=51355 Crash in
RenderMathMLSubSup::layout() because of null base
-and corresponding-
<rdar://problem/8712200>

Reviewed by Ada Chan.

Only use base inside if(base) block.

  • mathml/RenderMathMLSubSup.cpp:

(WebCore::RenderMathMLSubSup::layout):

LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=51355 Crash in
RenderMathMLSubSup::layout() because of null base
-and corresponding-
<rdar://problem/8712200>

Reviewed by Ada Chan.

  • mathml/empty-msubsup-crash-expected.txt: Added.
  • mathml/empty-msubsup-crash.html: Added.
2:51 PM Changeset in webkit [74369] by enrica@apple.com
  • 3 edits
    4 adds in trunk

Crash at WebCore::SplitElementCommand::SplitElementCommand
https://bugs.webkit.org/show_bug.cgi?id=51278
<rdar://problem/7347139>

Reviewed by Darin Adler.

WebCore:

Executing outdent command on an inline blockquote that is
not the first element in a block causes a crash.
The fix consists in chaging the was the start of block is
calculated in case of the inline blockquote.

Test: editing/execCommand/outdent-inline-blockquote.html

editing/execCommand/outdent-inline-list.html

  • editing/IndentOutdentCommand.cpp:

(WebCore::IndentOutdentCommand::outdentParagraph):

LayoutTests:

  • editing/execCommand/outdent-inline-blockquote-expected.txt: Added.
  • editing/execCommand/outdent-inline-blockquote.html: Added.
  • editing/execCommand/outdent-inline-list-expected.txt: Added.
  • editing/execCommand/outdent-inline-list.html: Added.
2:40 PM Changeset in webkit [74368] by oliver@apple.com
  • 5 edits in trunk

2010-12-20 Oliver Hunt <oliver@apple.com>

Reviewed by Darin Adler.

Need to support serialisation of cyclic graphs in the internal structured cloning algorithm
https://bugs.webkit.org/show_bug.cgi?id=51353

Update test to cover correct behaviour, and extend to test for actual graph construction.

  • fast/dom/Window/window-postmessage-clone-expected.txt:
  • fast/dom/Window/window-postmessage-clone.html:

2010-12-20 Oliver Hunt <oliver@apple.com>

Reviewed by Darin Adler.

Need to support serialisation of cyclic graphs in the internal structured cloning algorithm
https://bugs.webkit.org/show_bug.cgi?id=51353

The Internal Structured Clone algorithm has been changed to allow (and
correctly clone) cyclic graphs. This patch updates our implementation
to provide that functionality.

I've bumped the serialization version number, and added ObjectReferenceTag
to represent references to objects that have already been seen.

  • bindings/js/SerializedScriptValue.cpp: (WebCore::CloneSerializer::startObjectInternal): Now that we have something a bit more complex than cycle checking I've replaced the duplicate code in startObject and startArray with a shared function that implements that logic to plant an object reference (WebCore::CloneSerializer::startObject): (WebCore::CloneSerializer::startArray): Lift out duplicate code (WebCore::CloneSerializer::endObject): Can't remove objects from the gcbuffer now as they need to remain live so we can identify graphs (WebCore::CloneSerializer::writeStringIndex): (WebCore::CloneSerializer::writeObjectIndex): (WebCore::CloneSerializer::writeConstantPoolIndex): (WebCore::CloneSerializer::write): (WebCore::CloneSerializer::serialize): (WebCore::CloneDeserializer::readStringIndex): (WebCore::CloneDeserializer::readConstantPoolIndex): (WebCore::CloneDeserializer::readTerminal): (WebCore::CloneDeserializer::deserialize):
2:13 PM Changeset in webkit [74367] by kov@webkit.org
  • 6 edits in trunk/WebKit/gtk

2010-12-20 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>

Reviewed by Xan Lopez.

Add WebPlugin, WebPluginDatabase, and ViewportAttributes to the
documentation control files, in preparation for 1.3.8. Also take
the opportunity to add descriptions to WebPlugin and
WebPluginDatabase.

  • docs/GNUmakefile.am:
  • docs/webkitgtk-docs.sgml:
  • docs/webkitgtk-sections.txt:
  • webkit/webkitwebplugin.cpp:
  • webkit/webkitwebplugindatabase.cpp:
2:03 PM Changeset in webkit [74366] by xan@webkit.org
  • 9 edits in trunk

2010-12-20 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

  • configure.ac: bump version for 1.3.8 release.

WebCore:

2010-12-20 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

  • GNUmakefile.am: add missing files.

WebKit/gtk:

2010-12-20 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

  • GNUmakefile.am: add missing files.
  • NEWS: update for 1.3.8 release.

JavaScriptCore:

2010-12-20 Xan Lopez <xlopez@igalia.com>

Reviewed by Gustavo Noronha.

  • GNUmakefile.am: add missing files.
2:03 PM Changeset in webkit [74365] by mitz@apple.com
  • 2 edits in trunk/Tools

Tools/vcbin/midl.exe needs to be rebuilt
https://bugs.webkit.org/show_bug.cgi?id=51347

Patch by Jeff Miller <jeffm@apple.com> on 2010-12-20
Reviewed by Dan Bernstein.

  • vcbin/midl.exe: Rebuilt.
1:58 PM Changeset in webkit [74364] by inferno@chromium.org
  • 3 edits
    2 adds in trunk

2010-12-20 Abhishek Arya <inferno@chromium.org>

Reviewed by James Robinson.

Pass the correct beforeChild value when adding a child to an anonymous table part.
https://bugs.webkit.org/show_bug.cgi?id=50932

When a "before" content child was added to an anonymous table part, it was added
after the last child. This patch fixes the behavior by adding it properly before
the first child.

Test: fast/css-generated-content/table-before-child-add.html

  • rendering/RenderTableRow.cpp: (WebCore::RenderTableRow::addChild):

2010-12-20 Abhishek Arya <inferno@chromium.org>

Reviewed by James Robinson.

Tests that beforeChild is added to table correctly.
https://bugs.webkit.org/show_bug.cgi?id=50932

  • fast/css-generated-content/table-before-child-add.html: Added.
  • platform/mac/fast/css-generated-content/table-before-child-add-expected.txt: Added.
1:58 PM Changeset in webkit [74363] by levin@chromium.org
  • 4 edits in trunk

2010-12-20 David Levin <levin@chromium.org>

Reviewed by Ariya Hidayat.

.gitignore and webkit-tools-completion.sh have references to WebKitTools that should be Tools.
https://bugs.webkit.org/show_bug.cgi?id=51343

Follow up from the WebKitTools -> Tools rename.

  • .gitignore:

2010-12-20 David Levin <levin@chromium.org>

Reviewed by Ariya Hidayat.

.gitignore and webkit-tools-completion.sh have references to WebKitTools that should be Tools.
https://bugs.webkit.org/show_bug.cgi?id=51343

Follow up from the WebKitTools -> Tools rename.

  • Scripts/webkit-tools-completion.sh:
1:45 PM Changeset in webkit [74362] by jamesr@google.com
  • 4 edits in trunk/Tools

2010-12-20 Cosmin Truta <ctruta@chromium.org>

Reviewed by James Robinson.

new-run-webkit-tests ignores trailing EOL differences in text tests
https://bugs.webkit.org/show_bug.cgi?id=36983

Changed the handling of new-line characters within new-run-webkit-tests
to match old-run-webkit-tests. Differences in leading and trailing empty
lines in text expectation files are no longer ignored.

  • Scripts/webkitpy/layout_tests/port/base.py:
  • Scripts/webkitpy/layout_tests/port/test.py: Added unit tests. Removed old duplicate unit test entries.
  • Scripts/webkitpy/layout_tests/test_types/text_diff.py:
1:43 PM Changeset in webkit [74361] by jamesr@google.com
  • 5 edits in trunk/LayoutTests

2010-12-20 Cosmin Truta <ctruta@chromium.org>

Reviewed by James Robinson.

Even more rebaselining needed for new-run-webkit-tests update
https://bugs.webkit.org/show_bug.cgi?id=51340

  • http/tests/misc/webtiming-ssl-expected.txt:
  • storage/indexeddb/cursor-delete-expected.txt:
  • storage/indexeddb/cursor-index-delete-expected.txt:
  • storage/indexeddb/transaction-crash-on-abort-expected.txt:
1:16 PM Changeset in webkit [74360] by barraclough@apple.com
  • 17 edits
    4 adds in trunk

Bug 26276 - Need a mechanism to determine stack extent

Reviewed by Oliver Hunt.

JavaScriptCore:

This patch adds a class 'StackBounds', to hold information about the machine stack.
The implementation of this class broadly adheres to the current implmentation of
stack limit checking, and as such does not solve the problem of determining stack
extent, but gives us a common place to do so.

Currently two mechanism are provided to determine the stack origin (the point the
stack is growing away from). currentThreadStackBase() in Collector provides a
more accurate determination of the stack origin, so use this to calculate
StackBounds::m_origin; WTFThreadData::approximatedStackStart is less accurate, and
as such can be removed. Cache the StackBounds on WTFThreadData such that they
need only be determined once per thread, and for non-API contexts cache this
information in JSGlobalData, to save a thread-specific access.

For the time being retain the estimate of stack size used by JSC's parser
(128 * sizeof(void*) * 1024), with a view to replacing this with something more
accurate in the near future.

  • parser/JSParser.cpp:

(JSC::JSParser::canRecurse):
(JSC::JSParser::JSParser):

Change to use StackBounds.

  • runtime/Collector.cpp:

(JSC::Heap::registerThread):
(JSC::Heap::markCurrentThreadConservativelyInternal):

Change to use StackBounds, cached on JSGlobalData.

  • runtime/JSGlobalData.cpp:

(JSC::JSGlobalData::JSGlobalData):

  • runtime/JSGlobalData.h:

(JSC::JSGlobalData::stack):

Add a cached copy of StackBounds.

  • wtf/StackBounds.cpp: Copied from JavaScriptCore/runtime/Collector.cpp.

(WTF::estimateStackBound):
(WTF::StackBounds::initialize):
(WTF::getStackMax):

Copy code from Collector.cpp to determine stack origin.

  • wtf/StackBounds.h: Added.

(WTF::StackBounds::StackBounds):

No argument constructor; returns a null StackBounds.

(WTF::StackBounds::currentThreadStackBounds):

Returns a StackBounds object representing the stack limits
of the current thread.

(WTF::StackBounds::origin):

Returns to stack origin (the point the stack is growing away
from; the highest extent of the stack on machines where the
stack grows downwards.

(WTF::StackBounds::recursionLimit):

Returns a limit value that is 'a comfortable distance from
the end of the stack'. Our concept of this is currently 1 page
away from the end, however the default value may be tuned in
the future, and clients may override passing a larger delta;
should only be called on StackBounds object representing the
stack of the thread this method is called on (checked by
checkConsistency).

(WTF::StackBounds::recursionCheck):

Checks whether we are currently 'a comfortable distance from
the end of the stack'. Our concept of this is currently 1 page
away from the end, however the default value may be tuned in
the future, and clients may override passing a larger delta
to apply when checking, if they wish to do so. This method
should only be called on StackBounds object representing the
stack of the thread this method is called on (checked by
checkConsistency).

(WTF::StackBounds::current):

Approximate current stack position. On machines where the stack
is growing downwards this is the lowest address that might need
conservative collection.

(WTF::StackBounds::isGrowingDownward):

True for all platforms other than WINCE, which has to check.

(WTF::StackBounds::checkConsistency):

This is called in methods that shoulds only be operating on a
valid set of bounds; as such we expect m_origin != m_bounds
(i.e. stack size != zero) - we're really testing that this
object is not null (the constructor initializes both fields
to zero). Also checks that current() is within the stack's
bounds.

  • wtf/WTFThreadData.cpp:

(WTF::WTFThreadData::WTFThreadData):

  • wtf/WTFThreadData.h:

(WTF::WTFThreadData::stack):

Add the StackBounds member variable.

JavaScriptGlue:

Add forwarding header for StackBounds.h.

  • ForwardingHeaders/wtf/StackBounds.h: Added.

WebCore:

Add forwarding header for StackBounds.h.

  • ForwardingHeaders/wtf/StackBounds.h: Added.
12:59 PM Changeset in webkit [74359] by andersca@apple.com
  • 8 edits in trunk/WebKit2

2010-12-20 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Flash plug-in does not work on YouTube video page when accelerated compositing is disabled
https://bugs.webkit.org/show_bug.cgi?id=51348
<rdar://problem/8787667>

  • Platform/CoreIPC/HandleMessage.h: (CoreIPC::callMemberFunction): Add new overload.
  • PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::create): (WebKit::PluginControllerProxy::PluginControllerProxy): These now take an additional isAcceleratedCompositingEnabled parameter.

(WebKit::PluginControllerProxy::isAcceleratedCompositingEnabled):
Return m_isAcceleratedCompositingEnabled.

  • PluginProcess/PluginControllerProxy.h:
  • PluginProcess/WebProcessConnection.cpp: (WebKit::WebProcessConnection::createPlugin): This now takes an additional isAcceleratedCompositingEnabled parameter.
  • PluginProcess/WebProcessConnection.messages.in: Add isAcceleratedCompositingEnabled parameter to the CreatePlugin message.
  • WebProcess/Plugins/PluginProxy.cpp: (WebKit::PluginProxy::initialize): Pass isAcceleratedCompositingEnabled when sending the CreatePlugin message.
12:48 PM Changeset in webkit [74358] by jamesr@google.com
  • 3 edits in trunk/WebCore

2010-12-20 James Robinson <jamesr@chromium.org>

Unreviewed, rolling out r74278.
http://trac.webkit.org/changeset/74278
https://bugs.webkit.org/show_bug.cgi?id=50833

[chromium] Causes many layout tests to crash

  • platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::LayerRendererChromium): (WebCore::LayerRendererChromium::prepareToDrawLayers): (WebCore::LayerRendererChromium::drawLayers): (WebCore::LayerRendererChromium::useRenderSurface): (WebCore::LayerRendererChromium::setScissorToRect):
  • platform/graphics/chromium/LayerRendererChromium.h:
12:09 PM Changeset in webkit [74357] by ggaren@apple.com
  • 14 edits
    4 adds
    1 delete in trunk

2010-12-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Factored common page set management into a new PageBlock base class
https://bugs.webkit.org/show_bug.cgi?id=51285

  • Android.mk:
  • CMakeLists.txt:
  • GNUmakefile.am:
  • JavaScriptCore.gypi:
  • JavaScriptCore.vcproj/WTF/WTF.vcproj:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • interpreter/RegisterFile.h: (JSC::RegisterFile::RegisterFile):
  • jit/ExecutableAllocator.cpp: (JSC::ExecutableAllocator::intializePageSize):
  • wtf/PageAllocation.cpp: Removed.
  • wtf/PageAllocation.h: (WTF::PageAllocation::deallocate): (WTF::PageAllocation::PageAllocation):
  • wtf/PageReservation.h: (WTF::PageReservation::commit): (WTF::PageReservation::decommit): (WTF::PageReservation::deallocate): (WTF::PageReservation::PageReservation):
  • wtf/wtf.pri:

2010-12-20 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Factored common page set management into a new PageBlock base class
https://bugs.webkit.org/show_bug.cgi?id=51285

  • ForwardingHeaders/wtf/PageBlock.h: Added.

2010-12-20 Geoffrey Garen <ggaren@apple.com>

Reviewed by Sam Weinig.

Factored common page set management into a new PageBlock base class
https://bugs.webkit.org/show_bug.cgi?id=51285

  • ForwardingHeaders/wtf/PageBlock.h: Added.
11:38 AM Changeset in webkit [74356] by levin@chromium.org
  • 3 edits in trunk/Tools

check-webkit-style should detect function declarations (and trivial functions).
https://bugs.webkit.org/show_bug.cgi?id=51303

Reviewed by Shinichiro Hamaji.

  • Scripts/webkitpy/style/checkers/cpp.py:

(_FunctionState.begin): Add is_declaration and changed the line count
start to begin at -1 (which will keep the results consistent, since
the starting line number passed in is one less in this change).
(detect_functions): changed function detection to now catch trivial
functions and declarations.
(check_pass_ptr_usage): Don't check for Pass*Ptr on the first line
of the function as this may look at return values (when processing
a declaration).

  • Scripts/webkitpy/style/checkers/cpp_unittest.py:

(FunctionDetectionTest.perform_function_detection): Basic mechanics
of testing the function detection.
(FunctionDetectionTest.test_basic_function_detection): Test a simple
function.
(FunctionDetectionTest.test_function_declaration_detection): Test a
declaration.
(FunctionDetectionTest.test_non_functions): A test case for a case
that caused the code to fail due to the { being in quotes.
(PassPtrTest.test_pass_ref_ptr_return_value): Added some more test
cases to help catch false alarms for return values.
(PassPtrTest.test_pass_ref_ptr_member_variable): Ensure that
we don't get false alarms for member variables either.

10:54 AM Changeset in webkit [74355] by andersca@apple.com
  • 3 edits in trunk/WebKit2

2010-12-20 Anders Carlsson <andersca@apple.com>

Unreviewed, rolling out r74345.
http://trac.webkit.org/changeset/74345
https://bugs.webkit.org/show_bug.cgi?id=51115

Not the correct fix.

  • Platform/CoreIPC/Connection.h:
  • Platform/CoreIPC/qt/ConnectionQt.cpp: (CoreIPC::Connection::open):
10:42 AM UsingSafari2WithSafari3PublicBetaInstalled edited by Adam Roben
Update after r74301 (diff)
10:41 AM UpdatingCygwinDownloader edited by Adam Roben
Update after r74301 (diff)
10:41 AM Changeset in webkit [74354] by steveblock@google.com
  • 5 edits in trunk/WebCore

2010-12-20 Steve Block <steveblock@google.com>

Reviewed by Jeremy Orlow.

GeolocationPositionCache should do database access on background thread
https://bugs.webkit.org/show_bug.cgi?id=50825

Covered by existing Geolocation tests.

  • page/Coordinates.h: (WebCore::Coordinates::threadSafeCopy):
  • page/GeolocationPositionCache.cpp: (WebCore::GeolocationPositionCache::GeolocationPositionCache): (WebCore::GeolocationPositionCache::addUser): (WebCore::GeolocationPositionCache::removeUser): (WebCore::GeolocationPositionCache::setDatabasePath): (WebCore::GeolocationPositionCache::setCachedPosition): (WebCore::GeolocationPositionCache::cachedPosition): (WebCore::GeolocationPositionCache::startBackgroundThread): (WebCore::GeolocationPositionCache::threadEntryPoint): (WebCore::GeolocationPositionCache::threadEntryPointImpl): (WebCore::GeolocationPositionCache::triggerReadFromDatabase): (WebCore::GeolocationPositionCache::readFromDatabase): (WebCore::GeolocationPositionCache::readFromDatabaseImpl): (WebCore::GeolocationPositionCache::triggerWriteToDatabase): (WebCore::GeolocationPositionCache::writeToDatabase): (WebCore::GeolocationPositionCache::writeToDatabaseImpl):
  • page/GeolocationPositionCache.h:
  • page/Geoposition.h: (WebCore::Geoposition::threadSafeCopy): (WebCore::Geoposition::Geoposition):
10:41 AM Memory Use edited by Adam Roben
Update after r74301 (diff)
10:41 AM SuccessfulPortHowTo edited by Adam Roben
Update after r74301 (diff)
10:41 AM Creating and Submitting Layout Tests and Patches edited by Adam Roben
Update after r74301 (diff)
10:40 AM Moving to Git edited by Adam Roben
Update after r74301 (diff)
10:40 AM FAQ edited by Adam Roben
Update after r74301 (diff)
10:39 AM Keeping the Tree Green edited by Adam Roben
Update after r74301 (diff)
10:12 AM HackingWebInspector edited by Adam Roben
Update after r74301 (diff)
10:11 AM ImprovingLifeOnWindows edited by Adam Roben
Update after r74301 (diff)
9:55 AM Changeset in webkit [74353] by abecsi@webkit.org
  • 2 edits in trunk/WebCore

2010-12-20 Andras Becsi <abecsi@webkit.org>

Unreviewed build fix.

[Qt][V8] Add missing sources to the pro file and remove duplications to fix linking.

No new tests needed.

  • WebCore.pro:
9:55 AM QtWebKitWebGL edited by Adam Roben
Update after r74301 (diff)
9:55 AM CommitQueue edited by Adam Roben
Update after r74301 (diff)
9:54 AM CommitterTips edited by Adam Roben
Update after r74301 (diff)
9:54 AM WebKit2 edited by Adam Roben
Update after r74301 (diff)
9:53 AM WebKit Team edited by Adam Roben
Update after r74301 (diff)
9:53 AM HackingGtk edited by Adam Roben
Update after r74301 (diff)
9:51 AM CSS21Results edited by Adam Roben
Update after r74301 (diff)
9:51 AM QtWebKitTesting edited by Adam Roben
Update after r74301 (diff)
9:49 AM WebKitGtkLayoutTests edited by Adam Roben
Update after r74301 (diff)
9:48 AM RebaselineServer edited by Adam Roben
Update after r74301 (diff)
9:48 AM PythonGuidelines edited by Adam Roben
Update after r74301 (diff)
9:47 AM BuildingGtk edited by Adam Roben
Update after r74301 (diff)
9:47 AM BuildingOnWindows edited by Adam Roben
Update for WebKitTools -> Tools rename (diff)
9:47 AM Rebaseline edited by Adam Roben
Update for WebKitTools -> Tools rename (diff)
9:25 AM Changeset in webkit [74352] by apavlov@chromium.org
  • 6 edits in trunk/WebCore

2010-12-20 Alexander Pavlov <apavlov@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: Make CSSCompletions a real class rather than singleton
https://bugs.webkit.org/show_bug.cgi?id=51332

Drive-by: make use of keywords from re2js in the CSS tokenizer
(apparently, various authors have presumed that re2js is processed at build time).

No new tests, as this is a refactoring.

  • inspector/front-end/CSSCompletions.js: (WebInspector.CSSCompletions): (WebInspector.CSSCompletions.prototype.startsWith): (WebInspector.CSSCompletions.prototype.firstStartsWith): (WebInspector.CSSCompletions.prototype._firstIndexOfPrefix): (WebInspector.CSSCompletions.prototype.keySet): (WebInspector.CSSCompletions.prototype.next): (WebInspector.CSSCompletions.prototype.previous): (WebInspector.CSSCompletions.prototype._closest):
  • inspector/front-end/SourceCSSTokenizer.js: (WebInspector.SourceCSSTokenizer):
  • inspector/front-end/SourceCSSTokenizer.re2js:
  • inspector/front-end/StylesSidebarPane.js: (WebInspector.StylePropertyTreeElement.prototype):
  • inspector/front-end/inspector.js: (WebInspector.doLoadedDone.propertyNamesCallback): (WebInspector.doLoadedDone):
9:24 AM Changeset in webkit [74351] by caseq@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Andrey Kosyakov <caseq@chromium.org>

Unreviewed. Rebased platform-specific test expectations following default expectations change in r74234.

  • platform/mac-leopard/inspector/extensions-resources-expected.txt:
8:42 AM Changeset in webkit [74350] by podivilov@chromium.org
  • 2 edits in trunk/WebCore

2010-12-10 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: "Add conditional breakpoint" - create breakpoint only after condition is provided.
https://bugs.webkit.org/show_bug.cgi?id=50813

  • inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype._addBreakpoint): (WebInspector.SourceFrame.prototype._breakpointRemoved): (WebInspector.SourceFrame.prototype._breakpointChanged): (WebInspector.SourceFrame.prototype._setBreakpointDecoration): (WebInspector.SourceFrame.prototype._removeBreakpointDecoration): (WebInspector.SourceFrame.prototype._contextMenu.addConditionalBreakpoint.didEditBreakpointCondition): (WebInspector.SourceFrame.prototype._contextMenu.addConditionalBreakpoint): (WebInspector.SourceFrame.prototype._contextMenu.else.editBreakpointCondition.didEditBreakpointCondition): (WebInspector.SourceFrame.prototype._contextMenu.else.editBreakpointCondition): (WebInspector.SourceFrame.prototype._contextMenu): (WebInspector.SourceFrame.prototype._editBreakpointCondition.finishEditing): (WebInspector.SourceFrame.prototype._editBreakpointCondition): (WebInspector.SourceFrame.prototype._continueToLine): (WebInspector.SourceFrame.prototype._setBreakpoint):
8:08 AM Changeset in webkit [74349] by tonikitoo@webkit.org
  • 2 edits in trunk/LayoutTests

2010-12-19 Antonio Gomes <agomes@rim.com>

Reviewed by Xan Lopez.

no-caret-repaint-in-non-content-editable-element.html does not need to disable CaretBrowsing
https://bugs.webkit.org/show_bug.cgi?id=51308

Patch removes the useless statement to disable caret browsing from
no-caret-repaint-in-non-content-editable-element.html.

Caret browsing gets toggled OFF before the execution of each test
on the DRTs that support testing it (GTK+, Qt and Chromium). On Mac or
Windows's DRT testing this feature is unsupport, so caret
browsing is also disabled by default.

  • fast/repaint/no-caret-repaint-in-non-content-editable-element.html:
8:08 AM Changeset in webkit [74348] by tonikitoo@webkit.org
  • 2 edits in trunk/WebKit/gtk

2010-12-18 Antonio Gomes <agomes@rim.com>

Reviewed by Xan Lopez.

[GTK+] Simplify spatial navigation handling in EditorClientGtk.cpp
https://bugs.webkit.org/show_bug.cgi?id=51302

Patch changes:
1) The editor command for LEFT arrow key press without modifier

from MoveBackward to MoveLeft;

2) And similarly changes the editor command for RIGHT arrow key

press without modifier from MoveForward to MoveRight.

It has no implications since SelectionController::modifyMovingRight()
handles "MoveRight" equaly to how SelectionController::modifyMovingForward()
handles "MoveForward" when the granularity is 'CharacterGranularity'.
The former falls back to the later in the case of other editor commands.

Analogously, the same applies to how SelectionController::modifyMovingLeft() and
SelectionController::modifyMovingForward() handle "MoveLeft" and "MoveBackward"
editor commands, respectively.

With this change we can remove the spatial navigation hack from moveCursorCallback(),
in EditorClientGtk.cpp.

  • WebCoreSupport/EditorClientGtk.cpp: (WebKit::moveCursorCallback):
7:52 AM Changeset in webkit [74347] by yurys@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Removed custom expectation for a passing test.

  • platform/chromium/test_expectations.txt:
7:25 AM Changeset in webkit [74346] by alex
  • 1 edit
    1 add
    1 delete in trunk/LayoutTests

2010-12-20 Alejandro G. Castro <alex@igalia.com>

Unreviewed, added the proper expected result file.

  • platform/gtk/fast/text/emphasis-overlap-expected.txt: Added.
  • platform/gtk/fast/text/emphasis-overlap.html: Removed.
7:12 AM Changeset in webkit [74345] by kbalazs@webkit.org
  • 3 edits in trunk/WebKit2

2010-12-20 Balazs Kelemen <kbalazs@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt][WK2] Crash in web process after the connection had been closed
https://bugs.webkit.org/show_bug.cgi?id=51115

Do not call connectionDidClose with a connection that has been explicitly
invalidated on the listener thread.

  • Platform/CoreIPC/Connection.h:
  • Platform/CoreIPC/qt/ConnectionQt.cpp: (CoreIPC::Connection::disconnectHandler): Added. (CoreIPC::Connection::open):
6:57 AM Changeset in webkit [74344] by benjamin.poulain@nokia.com
  • 2 edits in trunk/WebKit/qt

[Qt] Improve the readability of FrameLoaderClientQt::createPlugin()
https://bugs.webkit.org/show_bug.cgi?id=51330

Reviewed by Andreas Kling.

Redefine the scopes to improve readability. Objects are now created in
the scope they are used in.

  • WebCoreSupport/FrameLoaderClientQt.cpp:

(WebCore::FrameLoaderClientQt::createPlugin):

6:41 AM Changeset in webkit [74343] by andreip@google.com
  • 3 edits
    2 adds in trunk

2010-12-20 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

IDBTransactionBackedImpl instances can be accidentally deleted during calls to abort/commit.
https://bugs.webkit.org/show_bug.cgi?id=51112

  • storage/indexeddb/transaction-crash-on-abort-expected.txt: Added.
  • storage/indexeddb/transaction-crash-on-abort.html: Added.

2010-12-20 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

IDBTransactionBackedImpl instances can be accidentally deleted during calls to abort/commit.
https://bugs.webkit.org/show_bug.cgi?id=51112

Makes IDBTransactionBackendImpl objects take a self reference while executing commit and abort.

Test: storage/indexeddb/transaction-crash-on-abort.html

  • storage/IDBTransactionBackendImpl.cpp: (WebCore::IDBTransactionBackendImpl::abort): (WebCore::IDBTransactionBackendImpl::commit):
6:31 AM Changeset in webkit [74342] by andreip@google.com
  • 17 edits
    4 adds in trunk

2010-12-20 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

IDBCursor::delete is not implemented.
https://bugs.webkit.org/show_bug.cgi?id=51110

  • storage/indexeddb/cursor-delete-expected.txt: Added.
  • storage/indexeddb/cursor-delete.html: Added.
  • storage/indexeddb/cursor-index-delete-expected.txt: Added.
  • storage/indexeddb/cursor-index-delete.html: Added.

2010-12-20 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

IDBCursor::delete is not implemented.
https://bugs.webkit.org/show_bug.cgi?id=51110

Implement IDBCursor::delete.
See http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#widl-IDBCursor-delete

Tests: storage/indexeddb/cursor-delete.html

storage/indexeddb/cursor-index-delete.html

  • storage/IDBCursor.cpp: (WebCore::IDBCursor::deleteFunction):
  • storage/IDBCursor.h:
  • storage/IDBCursor.idl:
  • storage/IDBCursorBackendImpl.cpp: (WebCore::IDBCursorBackendImpl::IDBCursorBackendImpl): (WebCore::IDBCursorBackendImpl::deleteFunction): (WebCore::IDBCursorBackendImpl::loadCurrentRow):
  • storage/IDBCursorBackendImpl.h: (WebCore::IDBCursorBackendImpl::create):
  • storage/IDBCursorBackendInterface.h:
  • storage/IDBIndexBackendImpl.cpp: (WebCore::IDBIndexBackendImpl::openCursorInternal):
  • storage/IDBKey.cpp: (WebCore::IDBKey::fromQuery):
  • storage/IDBObjectStoreBackendImpl.cpp: (WebCore::IDBObjectStoreBackendImpl::deleteInternal): (WebCore::IDBObjectStoreBackendImpl::openCursorInternal):

2010-12-20 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

IDBCursor::delete is not implemented.
https://bugs.webkit.org/show_bug.cgi?id=51110

  • public/WebIDBCursor.h: (WebKit::WebIDBCursor::remove): (WebKit::WebIDBCursor::deleteFunction):
  • src/IDBCursorBackendProxy.cpp: (WebCore::IDBCursorBackendProxy::deleteFunction):
  • src/IDBCursorBackendProxy.h:
  • src/WebIDBCursorImpl.cpp: (WebKit::WebIDBCursorImpl::deleteFunction):
  • src/WebIDBCursorImpl.h:
6:30 AM Changeset in webkit [74341] by yurys@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Update Chromium test expectations.

  • platform/chromium/test_expectations.txt:
3:13 AM Changeset in webkit [74340] by alex
  • 2 edits
    3 adds in trunk/LayoutTests

2010-12-20 Alejandro G. Castro <alex@igalia.com>

Unreviewed expectation results update. Added also the tests
failing due to the pixman rounding color issue to the same section
of the skipped file: bug 49964.

  • platform/gtk/Skipped:
  • platform/gtk/fast/repaint/text-emphasis-h-expected.txt: Added.
  • platform/gtk/fast/repaint/text-emphasis-v-expected.txt: Added.
  • platform/gtk/fast/text/emphasis-overlap.html: Added.
2:52 AM Changeset in webkit [74339] by xan@webkit.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Xan Lopez <xlopez@igalia.com>

[GTK] editing/selection/extend-by-character-003.html is flakey
https://bugs.webkit.org/show_bug.cgi?id=51325

Skip flakey test.

  • platform/gtk/Skipped:
2:36 AM Changeset in webkit [74338] by yurys@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-20 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Update Chromium test expectations.

  • platform/chromium/test_expectations.txt:
1:55 AM Changeset in webkit [74337] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed.

[Qt] fast/text/emphasis-overlap.html fails
https://bugs.webkit.org/show_bug.cgi?id=51324

  • platform/qt/Skipped: fast/text/emphasis-overlap.html added until fix.
1:40 AM Changeset in webkit [74336] by Csaba Osztrogonác
  • 1 edit
    1 copy in trunk/LayoutTests

Unreviewed.

[Qt] Add platform specific expected result for new test introduced in r74321.

  • platform/qt/fast/parser/xml-colon-entity-expected.txt: Copied from LayoutTests/fast/parser/xml-colon-entity-expected.txt.
1:23 AM Changeset in webkit [74335] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed.

Add new tests to the Skipped list, because of missing layoutTestController.testRepaint()

  • platform/qt/Skipped:
    • fast/repaint/text-emphasis-h.html added
    • fast/repaint/text-emphasis-v.html added
1:08 AM Changeset in webkit [74334] by commit-queue@webkit.org
  • 4 edits in trunk

2010-12-20 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Antonio Gomes.

[CMAKE] Rename WEBKITTOOLS_DIR to TOOLS_DIR
https://bugs.webkit.org/show_bug.cgi?id=51319

Change WEBKITTOOLS_DIR variable's name and value to TOOLS_DIR and tools/.

  • CMakeLists.txt:

2010-12-20 Ryuan Choi <ryuan.choi@samsung.com>

Reviewed by Antonio Gomes.

[CMAKE] Rename WEBKITTOOLS_DIR to TOOLS_DIR
https://bugs.webkit.org/show_bug.cgi?id=51319

  • CMakeListsEfl.txt:
12:53 AM Changeset in webkit [74333] by yurys@chromium.org
  • 2 edits in trunk/WebCore

2010-12-20 Yury Semikhatsky <yurys@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: After a multiline command execution Console does not show the command prompt
https://bugs.webkit.org/show_bug.cgi?id=51257

  • inspector/front-end/TextPrompt.js: (WebInspector.TextPrompt.prototype._moveBackInHistory): (WebInspector.TextPrompt.prototype._moveForwardInHistory):

Dec 19, 2010:

10:44 PM Changeset in webkit [74332] by commit-queue@webkit.org
  • 6 edits
    1 move in trunk

Move WebKitExamplePlugins to Examples
https://bugs.webkit.org/show_bug.cgi?id=51291

Reviewed by Sam Weinig.

.:

  • Examples: Copied from WebKitExamplePlugins.
  • WebKitExamplePlugins: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/English.lproj: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/English.lproj/InfoPlist.strings: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/Info.plist: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/MenuHandler.h: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/MenuHandler.m: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/NetscapeCocoaPlugin.xcodeproj: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/NetscapeCocoaPlugin.xcodeproj/project.pbxproj: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/main.m: Removed.
  • WebKitExamplePlugins/NetscapeCocoaPlugin/test.html: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/English.lproj: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/English.lproj/InfoPlist.strings: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/Info.plist: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/MovieControllerLayer.h: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/MovieControllerLayer.m: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/NetscapeCoreAnimationMoviePlugin.xcodeproj: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/NetscapeCoreAnimationMoviePlugin.xcodeproj/project.pbxproj: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/Pause.tiff: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/Play.tiff: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/SliderTrackCenter.tiff: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/SliderTrackLeft.tiff: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/SliderTrackRight.tiff: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/Thumb.tiff: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/main.m: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationMoviePlugin/test.html: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/Composition.qtz: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/English.lproj: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/English.lproj/InfoPlist.strings: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/Info.plist: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/NetscapeCoreAnimationPlugin.xcodeproj: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/NetscapeCoreAnimationPlugin.xcodeproj/project.pbxproj: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/main.m: Removed.
  • WebKitExamplePlugins/NetscapeCoreAnimationPlugin/test.html: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin/English.lproj: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin/English.lproj/InfoPlist.strings: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin/Info.plist: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin/NetscapeInputMethodPlugin.xcodeproj: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin/NetscapeInputMethodPlugin.xcodeproj/project.pbxproj: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin/main.m: Removed.
  • WebKitExamplePlugins/NetscapeInputMethodPlugin/test.html: Removed.
  • cmake/WebKitPackaging.cmake:

BugsSite:

  • PrettyPatch/PrettyPatch.rb:

Tools:

  • Scripts/webkitpy/common/config/build.py:
9:24 PM Changeset in webkit [74331] by commit-queue@webkit.org
  • 2 edits
    1 delete in trunk/LayoutTests

2010-12-19 Benjamin Kalman <kalman@chromium.org>

Reviewed by Antonio Gomes.

[chromium] editing/selection/extend-selection-home-end.html should have one expected result
https://bugs.webkit.org/show_bug.cgi?id=49873

Change 100px to 5em in editing/selection/extend-selection-home-end.html so that chromium
results are the same as the non-chromium results.

  • editing/selection/resources/extend-selection.js: Change 100px to 5em.
  • platform/chromium-win/editing/selection/extend-selection-home-end-expected.txt: Removed.
7:05 PM Changeset in webkit [74330] by mitz@apple.com
  • 2 edits in trunk/WebKit2

Improve the fix for <rdar://problem/8769525>.

Reviewed by Sam Weinig.

  • UIProcess/API/mac/WKView.mm:

(-[WKView performKeyEquivalent:]): Do not retain the view. Doing so is necessary in
-[WebHTMLView performKeyEquivalent:], which this method was based upon, but not here, because
there is no way for the web process to cause the WKView to be released while it is handling
the event.

6:42 PM Changeset in webkit [74329] by mitz@apple.com
  • 2 edits in trunk/WebKit2

<rdar://problem/8769525> WKView leak when performing key equivalents
https://bugs.webkit.org/show_bug.cgi?id=51315

Reviewed by Sam Weinig.

  • UIProcess/API/mac/WKView.mm:

(-[WKView performKeyEquivalent:]): Use a RetainPtr to ensure that the view is released in the
early return code path.

5:02 PM Changeset in webkit [74328] by commit-queue@webkit.org
  • 8 edits
    3 adds in trunk

2010-12-19 Helder Correia <helder@sencha.com>

Reviewed by Ariya Hidayat.

[Qt] Blur distance should not be affected by transformations
https://bugs.webkit.org/show_bug.cgi?id=51161

From the spec at http://dev.w3.org/html5/2dcontext/#dom-context-2d-shadowblur:
"The shadowBlur attribute specifies the level of the blurring effect.
(The units do not map to coordinate space units, and are not affected
by the current transformation matrix.)"

Add test to ensure that the blur radius is not affected by the CTM.

  • fast/canvas/canvas-scale-shadowBlur-expected.txt: Added.
  • fast/canvas/canvas-scale-shadowBlur.html: Added.
  • fast/canvas/canvas-scale-strokePath-shadow-expected.txt: Increase shadowBlur and test tolerance to ease testing and support the different blurring algorithms.
  • fast/canvas/script-tests/canvas-scale-shadowBlur.js: Added.
  • fast/canvas/script-tests/canvas-scale-strokePath-shadow.js:

2010-12-19 Helder Correia <helder@sencha.com>

Reviewed by Ariya Hidayat.

[Qt] Blur distance should not be affected by transformations
https://bugs.webkit.org/show_bug.cgi?id=51161

From the spec at http://dev.w3.org/html5/2dcontext/#dom-context-2d-shadowblur:
"The shadowBlur attribute specifies the level of the blurring effect.
(The units do not map to coordinate space units, and are not affected
by the current transformation matrix.)"

Test: fast/canvas/canvas-scale-shadowBlur.html

  • platform/graphics/ContextShadow.cpp: (WebCore::ContextShadow::adjustBlurDistance):
  • platform/graphics/ContextShadow.h:
  • platform/graphics/cairo/ContextShadowCairo.cpp: (WebCore::ContextShadow::beginShadowLayer):
  • platform/graphics/qt/ContextShadowQt.cpp: (WebCore::ContextShadow::beginShadowLayer):
1:34 PM Changeset in webkit [74327] by benjamin.poulain@nokia.com
  • 2 edits in trunk/WebKit2

2010-12-19 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] [WK2] QWKPagePrivate::paint() does not need to save the graphics context
https://bugs.webkit.org/show_bug.cgi?id=51300

Remove the unnecessary save() and restore() on the QPainter.

  • UIProcess/API/qt/qwkpage.cpp: (QWKPagePrivate::paint):
1:29 PM Changeset in webkit [74326] by mitz@apple.com
  • 3 edits
    8 adds in trunk

Text emphasis marks are not repainted correctly in flipped writing modes
https://bugs.webkit.org/show_bug.cgi?id=51307

Reviewed by Cameron Zwarich.

WebCore:

Tests: fast/repaint/text-emphasis-h.html

fast/repaint/text-emphasis-v.html

  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::addTextBoxVisualOverflow): Added flippedness check.

LayoutTests:

  • fast/repaint/text-emphasis-h-expected.checksum: Added.
  • fast/repaint/text-emphasis-h-expected.png: Added.
  • fast/repaint/text-emphasis-h-expected.txt: Added.
  • fast/repaint/text-emphasis-h.html: Added.
  • fast/repaint/text-emphasis-v-expected.checksum: Added.
  • fast/repaint/text-emphasis-v-expected.png: Added.
  • fast/repaint/text-emphasis-v-expected.txt: Added.
  • fast/repaint/text-emphasis-v.html: Added.
10:44 AM Changeset in webkit [74325] by rwlbuis@webkit.org
  • 6 edits in trunk/WebCore

2010-12-19 Rob Buis <rwlbuis@gmail.com>

Reviewed by Andreas Kling.

Remove m_drawsContents from RenderSVGContainer.h
https://bugs.webkit.org/show_bug.cgi?id=51305

Remove m_drawsContents, its getter and setter and the call
sites, since it has no effect anymore.

  • WebCore.order:
  • rendering/RenderSVGContainer.cpp: (WebCore::RenderSVGContainer::RenderSVGContainer): (WebCore::RenderSVGContainer::paint):
  • rendering/RenderSVGContainer.h:
  • rendering/RenderSVGResourceContainer.h:
  • rendering/SVGImageBufferTools.cpp: (WebCore::SVGImageBufferTools::renderSubtreeToImageBuffer):
9:24 AM Changeset in webkit [74324] by kenneth@webkit.org
  • 4 edits in trunk/WebKit2

2010-12-19 Kenneth Rohde Christiansen <kenneth@webkit.org>

Reviewed by Andreas Kling.

[Qt] [WK2] Client are expected to render their own background for WebPages
https://bugs.webkit.org/show_bug.cgi?id=51296

Remove the rendering of the checkerboard from the tiled DrawingAreaProxy

  • UIProcess/TiledDrawingAreaProxy.cpp: (WebKit::TiledDrawingAreaProxy::paint):
  • UIProcess/TiledDrawingAreaTile.h:
  • UIProcess/qt/TiledDrawingAreaTileQt.cpp:
7:57 AM Changeset in webkit [74323] by benjamin.poulain@nokia.com
  • 2 edits in trunk/WebCore

2010-12-19 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

WebKit does not build with worker but without the javascript debugger
https://bugs.webkit.org/show_bug.cgi?id=51293

Add missing guard for calls depending on the debugger.

  • inspector/InspectorController.cpp: (WebCore::InspectorController::populateScriptObjects): (WebCore::InspectorController::postWorkerNotificationToFrontend):
7:28 AM Changeset in webkit [74322] by benjamin.poulain@nokia.com
  • 2 edits in trunk/WebKit2

2010-12-19 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] [WK2] Client are expected to render their own background for WebPages
https://bugs.webkit.org/show_bug.cgi?id=51296

Do not render a white background before rendering the page with DrawingAreaProxy.

  • UIProcess/API/qt/qwkpage.cpp: (QWKPagePrivate::paint):

Dec 18, 2010:

10:51 PM Changeset in webkit [74321] by commit-queue@webkit.org
  • 3 edits
    3 adds in trunk

2010-12-18 Tom Sepez <tsepez@chromium.org>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=51055
Fix a null de-reference when an XML file contains a malformed entity
of the form "&:;".

  • fast/parser/resources/xml-colon-entity.xml: Added.
  • fast/parser/xml-colon-entity-expected.txt: Added.
  • fast/parser/xml-colon-entity.html: Added.

2010-12-18 Tom Sepez <tsepez@chromium.org>

Reviewed by David Levin.

https://bugs.webkit.org/show_bug.cgi?id=51055
Fix a null de-reference when an XML file contains a malformed entity
of the form "&:;".

Test: fast/parser/xml-colon-entity.html

  • html/parser/HTMLEntitySearch.cpp: (WebCore::HTMLEntitySearch::advance):
10:50 PM BuildingQtOnOSX edited by ariya@webkit.org
WebKitTools -> Tools (diff)
10:48 PM BuildingQtOnLinux edited by ariya@webkit.org
WebKitTools -> Tools (diff)
10:48 PM BuildingQtOnSymbian edited by ariya@webkit.org
WebKitTools -> Tools (diff)
10:47 PM BuildingQtOnWindows edited by ariya@webkit.org
WebKitTools -> Tools (diff)
10:46 PM QtWebKitContrib edited by ariya@webkit.org
WebKitTools -> Tools (diff)
6:55 PM Changeset in webkit [74320] by commit-queue@webkit.org
  • 2 edits in trunk/WebCore

2010-12-18 Noel Gordon <noel.gordon@gmail.com>

Reviewed by David Levin.

[chromium] Simplify the PNG encoder.
https://bugs.webkit.org/show_bug.cgi?id=50905

Remove PNGEncoderState class - it was a proxy for the encoder output, and
that is a Vector<>, so just write into it directly using append() to make
use of Vector<>'s resize() smarts. Simplify the preMultipliedBGRAtoRGBA()
and encode() routines, replace the OwnArrayPtr<> with a Vector<>.

canvas.toDataURL("image/png") is covered by existing tests.

  • platform/image-encoders/skia/PNGImageEncoder.cpp: (WebCore::writeOutput): Use a Vector<>, append() the encoded data to it. (WebCore::preMultipliedBGRAtoRGBA): simplified. (WebCore::PNGImageEncoder::encode): ditto.
3:32 PM Changeset in webkit [74319] by mitz@apple.com
  • 5 edits in trunk

Text emphasis marks are not always included in the selection highlight
https://bugs.webkit.org/show_bug.cgi?id=51299

Reviewed by Cameron Zwarich.

WebCore:

Affects pixel results of fast/text/emphasis.html

Account for annotations in selectionTop() and selectionBottom().

  • rendering/RootInlineBox.cpp:

(WebCore::RootInlineBox::selectionTop):
(WebCore::RootInlineBox::selectionBottom):

LayoutTests:

  • platform/mac/fast/text/emphasis-expected.checksum:
  • platform/mac/fast/text/emphasis-expected.png:
2:49 PM Changeset in webkit [74318] by mitz@apple.com
  • 3 edits
    4 adds in trunk

In flipped writing modes, opposite text emphasis marks from adjacent lines overlap
https://bugs.webkit.org/show_bug.cgi?id=51298

Reviewed by Cameron Zwarich.

WebCore:

Test: fast/text/emphasis-overlap.html

  • rendering/RootInlineBox.cpp:

(WebCore::RootInlineBox::beforeAnnotationsAdjustment): Changed + to -.

LayoutTests:

  • fast/text/emphasis-overlap-expected.checksum: Added.
  • fast/text/emphasis-overlap-expected.png: Added.
  • fast/text/emphasis-overlap-expected.txt: Added.
  • fast/text/emphasis-overlap.html: Added.
10:44 AM Changeset in webkit [74317] by Martin Robinson
  • 16 edits
    1 copy
    1 move
    1 add
    2 deletes in trunk

2010-12-18 Helder Correia <helder@sencha.com> and Martin Robinson <mrobinson@igalia.com>

Reviewed by Ariya Hidayat.

[Qt] Canvas shadow offset should not be affected by any transformation
https://bugs.webkit.org/show_bug.cgi?id=50422

On a canvas context, shadows are currently affected by all
transformations except scaling. According to the spec:
http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#shadows

"The shadowOffsetX and shadowOffsetY attributes specify the distance
that the shadow will be offset in the positive horizontal and positive
vertical distance respectively. Their values are in coordinate space
units. They are not affected by the current transformation matrix."

NOTE: this applies only to canvas, not to box shadows.

Add new test to ensure that shadows are correctly transformed keeping
the relative offset to the shape.

  • fast/canvas/canvas-scale-strokePath-shadow-expected.txt: See strokePath below.
  • fast/canvas/canvas-transforms-fillRect-shadow-expected.txt: Added.
  • fast/canvas/canvas-transforms-fillRect-shadow.html: Added.
  • fast/canvas/script-tests/canvas-scale-fillPath-shadow.js:
  • fast/canvas/script-tests/canvas-scale-fillRect-shadow.js:
  • fast/canvas/script-tests/canvas-scale-strokePath-shadow.js: Now using a lineWidth > 1 to make it easier to test and more fair among all ports, since there can be different transformation smoothness or aliasing settings.
  • fast/canvas/script-tests/canvas-transforms-fillRect-shadow.js: Added.
  • platform/gtk/Skipped: GTK port needs to implement this feature.
  • platform/gtk/fast/canvas/canvas-scale-fillPath-shadow-expected.txt: Removed.
  • platform/gtk/fast/canvas/canvas-scale-fillRect-shadow-expected.txt: Removed.
  • platform/gtk/fast/canvas/canvas-scale-strokePath-shadow-expected.txt: Removed.

2010-12-18 Helder Correia <helder@sencha.com> and Martin Robinson <mrobinson@igalia.com>

Reviewed by Ariya Hidayat.

[Qt] Canvas shadow offset should not be affected by any transformation
https://bugs.webkit.org/show_bug.cgi?id=50422

On a canvas context, shadows are currently affected by all
transformations except scaling. According to the spec:
http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#shadows

"The shadowOffsetX and shadowOffsetY attributes specify the distance
that the shadow will be offset in the positive horizontal and positive
vertical distance respectively. Their values are in coordinate space
units. They are not affected by the current transformation matrix."

NOTE: this applies only to canvas, not to box shadows.

Test: fast/canvas/canvas-transforms-fillRect-shadow.html

  • platform/graphics/ContextShadow.cpp: (WebCore::ContextShadow::ContextShadow): (WebCore::ContextShadow::calculateLayerBoundingRect):
  • platform/graphics/ContextShadow.h: (WebCore::ContextShadow::setShadowsIgnoreTransforms): (WebCore::ContextShadow::shadowsIgnoreTransforms): (WebCore::ContextShadow::offset):
  • platform/graphics/qt/ContextShadowQt.cpp: (WebCore::ContextShadow::beginShadowLayer): (WebCore::ContextShadow::endShadowLayer):
  • platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::mustUseContextShadow): (WebCore::GraphicsContext::fillPath): (WebCore::GraphicsContext::strokePath): (WebCore::GraphicsContext::fillRect): (WebCore::GraphicsContext::fillRoundedRect): (WebCore::GraphicsContext::setPlatformShadow):
9:41 AM Changeset in webkit [74316] by ariya@webkit.org
  • 2 edits in trunk/WebCore

2010-12-18 Ariya Hidayat <ariya@sencha.com>

Reviewed by Andreas Kling.

[Qt] TransparencyLayer should inherit its container render hints
https://bugs.webkit.org/show_bug.cgi?id=51283

  • platform/graphics/qt/TransparencyLayer.h: (WebCore::TransparencyLayer::TransparencyLayer):
1:23 AM Changeset in webkit [74315] by tonyg@chromium.org
  • 15 edits in trunk

2010-12-18 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Laszlo Gombos.

[Web Timing] Rename domContentLoaded{Start,End}->domContentLoadedEvent{Start,End}
https://bugs.webkit.org/show_bug.cgi?id=50943

  • fast/dom/Window/window-properties-performance-expected.txt:
  • fast/dom/script-tests/webtiming.js: (checkTimingBeforeLoad): (checkTimingWhileDeferred): (checkWebTimingOnDOMContentLoaded): (checkWebTimingWhileAsync): (checkWebTimingOnLoad): (checkWebTimingAfterLoad):
  • fast/dom/webtiming-document-open-expected.txt:
  • fast/dom/webtiming-expected.txt:
  • fast/dom/webtiming-navigate-within-document-expected.txt:

2010-12-18 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Laszlo Gombos.

[Web Timing] Rename domContentLoaded{Start,End}->domContentLoadedEvent{Start,End}
https://bugs.webkit.org/show_bug.cgi?id=50943

See: http://test.w3.org/webperf/specs/NavigationTiming/#nt-dom-content-event-start

  • dom/Document.cpp: (WebCore::Document::finishedParsing):
  • dom/DocumentTiming.h: (WebCore::DocumentTiming::DocumentTiming):
  • page/PerformanceTiming.cpp: (WebCore::PerformanceTiming::domContentLoadedEventStart): (WebCore::PerformanceTiming::domContentLoadedEventEnd):
  • page/PerformanceTiming.h:
  • page/PerformanceTiming.idl:

2010-12-18 Tony Gentilcore <tonyg@chromium.org>

Reviewed by Laszlo Gombos.

[Web Timing] Rename domContentLoaded{Start,End}->domContentLoadedEvent{Start,End}
https://bugs.webkit.org/show_bug.cgi?id=50943

Exposes all dom* times to the chromium port. I'm particularly interested in
domContentLoadedEventEnd as it compares to the FinishDoc metric.

  • public/WebPerformance.h:
  • src/WebPerformance.cpp: (WebKit::WebPerformance::domLoading): (WebKit::WebPerformance::domInteractive): (WebKit::WebPerformance::domContentLoadedEventStart): (WebKit::WebPerformance::domContentLoadedEventEnd): (WebKit::WebPerformance::domComplete):

Dec 17, 2010:

10:20 PM Changeset in webkit [74314] by tonyg@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Tony Gentilcore <tonyg@chromium.org>

Unreviewed.

[chromium] Mark fast/text/emphasis* failing
https://bugs.webkit.org/show_bug.cgi?id=51288

They have square characters that appear broken.

  • platform/chromium/test_expectations.txt:
9:20 PM Changeset in webkit [74313] by tonyg@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Tony Gentilcore <tonyg@chromium.org>

Unreviewed fix.

Fix JS syntax to avoid V8 error message
https://bugs.webkit.org/show_bug.cgi?id=51287

  • transitions/interrupted-accelerated-transition.html:
8:22 PM Changeset in webkit [74312] by jschuh@chromium.org
  • 2 edits in trunk/WebCore

2010-12-17 Justin Schuh <jschuh@chromium.org>

Reviewed by Andreas Kling.

Style fix for r73927
https://bugs.webkit.org/show_bug.cgi?id=51194

No functionality change. No new tests needed.

  • html/HTMLCanvasElement.h:
6:37 PM Changeset in webkit [74311] by commit-queue@webkit.org
  • 2 edits in trunk/WebCore

2010-12-17 Carlos Garcia Campos <cgarcia@igalia.com>

Reviewed by Martin Robinson.

[GTK] Buttons rendering was broken in r74129
https://bugs.webkit.org/show_bug.cgi?id=51173

  • platform/gtk/RenderThemeGtk.cpp: (WebCore::RenderThemeGtk::paintRenderObject):
6:32 PM Changeset in webkit [74310] by zherczeg@webkit.org
  • 2 edits in trunk/WebCore

2010-12-17 Zoltan Herczeg <zherczeg@webkit.org>

Reviewed by Dirk Schulze.

Improve 'arithmetic' operator on feComposite
https://bugs.webkit.org/show_bug.cgi?id=51105

Fixing style errors and bug description for r74177.

  • platform/graphics/filters/FEComposite.cpp: (WebCore::arithmetic):
6:01 PM Changeset in webkit [74309] by msaboff@apple.com
  • 5 edits in trunk

2010-12-17 Michael Saboff <msaboff@apple.com>

Reviewed by Oliver Hunt.

RegExp Jit'ed expression crashes clicking link on yelp.com
https://bugs.webkit.org/show_bug.cgi?id=51284

When transitioning between an non-repeating beginning of line
anchored expression and the remaining refactored repeating
expression, we should not clear any residual datalabel in
state's m_backtrack. It will be resolved and cleared in subsequent
code when linkAlternativeBacktracks() is called for the repeating
alternative(s).

  • yarr/RegexJIT.cpp: (JSC::Yarr::RegexGenerator::BacktrackDestination::clear): (JSC::Yarr::RegexGenerator::TermGenerationState::clearBacktrack):

2010-12-17 Michael Saboff <msaboff@apple.com>

Reviewed by Oliver Hunt.

RegExp Jit'ed expression crashes clicking link on yelp.com
https://bugs.webkit.org/show_bug.cgi?id=51284

New tests to validate changes made in regex JIT.

  • fast/regex/parentheses-expected.txt:
  • fast/regex/script-tests/parentheses.js:
5:57 PM Changeset in webkit [74308] by mitz@apple.com
  • 5 edits in trunk

Updated for the renaming of WebKitTools to Tools

Rubber-stamped by Mark Rowe.

JavaScriptCore:

WebCore:

  • WebCore.vcproj/build-generated-files.sh:
  • WebCore.vcproj/migrate-scripts.sh:
5:56 PM Changeset in webkit [74307] by tonyg@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-12-17 Tony Gentilcore <tonyg@chromium.org>

Unreviewed, build fix.

Add WebKitTools -> Tools rename that got missed.

  • WebKit.gyp:
5:43 PM UsingGitWithWebKit edited by rniwa@webkit.org
Replaced WebKitTools by Tools (diff)
5:42 PM Changeset in webkit [74306] by Darin Adler
  • 2 edits in trunk/WebKit2

2010-12-17 Darin Adler <Darin Adler>

Reviewed by Dan Bernstein.

Window title for image documents shows corrupted characters instead of multiplication sign when using WebKit2
https://bugs.webkit.org/show_bug.cgi?id=43505

  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp: Changed UI_STRING macros to return WebCore::String objects instead of C strings. (WebKit::formatLocalizedString): Added. Uses the Core Foundation string formatting function for reasons explained in the comment. (WebKit::WebPlatformStrategies::multipleFileUploadText): Use formatLocalizedString instead of String::format. (WebKit::WebPlatformStrategies::imageTitle): Ditto. (WebKit::WebPlatformStrategies::localizedMediaTimeDescription): Ditto.
5:24 PM Changeset in webkit [74305] by jberlin@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

Add expected results for Windows XP to get the bot green for
http://trac.webkit.org/changeset/74281.
Unreviewed.

  • platform/win-xp/fast/text/emphasis-expected.txt: Added.
  • platform/win-xp/fast/text/emphasis-vertical-expected.txt: Added.
5:14 PM Changeset in webkit [74304] by dpranke@chromium.org
  • 2 edits in trunk/WebKit/chromium

2010-12-17 Dirk Pranke <dpranke@chromium.org>

Unreviewed, build fix.

Add WebKitTools -> Tools rename that got missed.

  • WebKit.gyp:
5:07 PM Changeset in webkit [74303] by andersca@apple.com
  • 2 edits in trunk/WebKit2

2010-12-17 Anders Carlsson <andersca@apple.com>

Reviewed by Sam Weinig.

Resizing a WKView while loading a page can leave the page at a size that doesn't match the window
https://bugs.webkit.org/show_bug.cgi?id=51282
<rdar://problem/8133142>

Fix a race condition in waitForMessage. If we time out on the wait condition, we would keep the
m_waitForMessageMutex mutex unlocked for a brief period of time before taking the lock again and
then removing the messageID/destinationID pair from the hash map. Under some circumstances, the
connection queue would update the hash map right before we removed it, leading to a lost message.

  • Platform/CoreIPC/Connection.cpp: (CoreIPC::Connection::waitForMessage):
4:30 PM Changeset in webkit [74302] by Csaba Osztrogonác
  • 3 edits in trunk/Tools

Unreviewed Qt buildfix after r74301.

Rename WebKitTools to Tools
https://bugs.webkit.org/show_bug.cgi?id=49861

  • MiniBrowser/DerivedSources.pro:
  • MiniBrowser/qt/MiniBrowser.pro:
4:02 PM Changeset in webkit [74301] by mitz@apple.com
  • 64 edits
    1 move in trunk

Rename WebKitTools to Tools
https://bugs.webkit.org/show_bug.cgi?id=49861

Reviewed by Simon Fraser.

.:

  • DerivedSources.pro:
  • GNUmakefile.am:
  • MakeFile:
  • MakeFile.shared:
  • Tools: Renamed from WebKitTools.
  • WebKit.pro:
  • cmake/WebKitPackaging.cmake:
  • wscript:

BugsSite:

  • PrettyPatch/PrettyPatch.rb:
  • committers-autocomplete.js:

Tools:

  • BuildSlaveSupport/build.webkit.org-config/master.cfg:
  • CodeCoverage/README:
  • DumpRenderTree/qt/DumpRenderTreeQt.cpp:

(WebCore::DumpRenderTree::initializeFonts):

  • EWSTools/start-commit-queue.sh:
  • EWSTools/start-queue.sh:
  • GNUmakefile.am:
  • MIDLWrapper/MIDLWrapper.cpp:

(wmain):

  • MiniBrowser/qt/MiniBrowser.pro:
  • Scripts/build-api-tests:
  • Scripts/build-dumprendertree:
  • Scripts/build-webkit:
  • Scripts/build-webkittestrunner:
  • Scripts/generate-coverage-data:
  • Scripts/old-run-webkit-tests:
  • Scripts/run-api-tests:
  • Scripts/run-iexploder-tests:
  • Scripts/run-javascriptcore-tests:
  • Scripts/run-mangleme-tests:
  • Scripts/run-sunspider:
  • Scripts/run-webkit-websocketserver:
  • Scripts/sunspider-compare-results:
  • Scripts/test-webkitperl:
  • Scripts/test-webkitpy:
  • Scripts/update-iexploder-cssproperties:
  • Scripts/update-webkit:
  • Scripts/update-webkit-localizable-strings:
  • Scripts/webkitdirs.pm:
  • Scripts/webkitpy/common/checkout/scm.py:
  • Scripts/webkitpy/common/checkout/scm_unittest.py:
  • Scripts/webkitpy/common/config/committervalidator.py:
  • Scripts/webkitpy/common/config/committervalidator_unittest.py:
  • Scripts/webkitpy/common/config/ports.py:
  • Scripts/webkitpy/common/config/ports_unittest.py:
  • Scripts/webkitpy/common/system/logutils_unittest.py:
  • Scripts/webkitpy/common/system/ospath_unittest.py:
  • Scripts/webkitpy/layout_tests/port/chromium.py:
  • Scripts/webkitpy/layout_tests/port/config.py:
  • Scripts/webkitpy/layout_tests/port/config_unittest.py:
  • Scripts/webkitpy/layout_tests/port/http_server.py:
  • Scripts/webkitpy/layout_tests/port/test.py:
  • Scripts/webkitpy/style/checker.py:
  • Scripts/webkitpy/style/checker_unittest.py:
  • Scripts/webkitpy/tool/bot/feeders_unittest.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
  • Scripts/webkitpy/tool/steps/steps_unittest.py:
  • WebKitTestRunner/DerivedSources.pro:
  • WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:

(WTR::activateFonts):

  • WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
  • wx/build/build_utils.py:

WebKitSite:

  • asking_questions.html:
  • building/tools.html:
  • coding/scripts.html:
3:35 PM Changeset in webkit [74300] by andersca@apple.com
  • 4 edits in trunk/WebKit2

Clean up ChunkedUpdateDrawingAreaProxy
https://bugs.webkit.org/show_bug.cgi?id=51277

Reviewed by Simon Fraser.

Get rid of m_lastSetViewSize since it was always equal to m_size.

  • UIProcess/ChunkedUpdateDrawingAreaProxy.cpp:

(WebKit::ChunkedUpdateDrawingAreaProxy::sizeDidChange):
Call sendSetSize().

(WebKit::ChunkedUpdateDrawingAreaProxy::didSetSize):
Call sendSetSize if the size differs.

(WebKit::ChunkedUpdateDrawingAreaProxy::sendSetSize):
Move code from sizeDidChange over here.

  • UIProcess/ChunkedUpdateDrawingAreaProxy.h:
  • UIProcess/DrawingAreaProxy.cpp:

(WebKit::DrawingAreaProxy::setSize):
Add back the early return if the sizes are equal.

3:28 PM Changeset in webkit [74299] by ariya@webkit.org
  • 2 edits in trunk/JavaScriptCore

2010-12-17 Ariya Hidayat <ariya@sencha.com>

Reviewed by Oliver Hunt.

[JSC] parseAssignmentExpression should use TreeBuilder::CreatesAST
https://bugs.webkit.org/show_bug.cgi?id=51268

  • parser/JSParser.cpp: (JSC::JSParser::parseAssignmentExpression):
3:03 PM Changeset in webkit [74298] by bfulgham@webkit.org
  • 2 edits in trunk/WebKit2

Unreviewed build fix.

  • WebProcess/WebPage/win/WebPageWin.cpp:

(WebKit::WebPage::canHandleRequest): Provide alternative for
non-CFNetwork implementation.

2:48 PM Changeset in webkit [74297] by ggaren@apple.com
  • 3 edits in trunk/JavaScriptCore

2010-12-17 Geoffrey Garen <ggaren@apple.com>

Reviewed by Oliver Hunt.

Removed RChunk from PageAllocation/PageReservation, since it's now unused.
https://bugs.webkit.org/show_bug.cgi?id=51276

  • wtf/PageAllocation.h: (WTF::PageAllocation::PageAllocation):
  • wtf/PageReservation.h: (WTF::PageReservation::PageReservation):
2:43 PM Changeset in webkit [74296] by adachan@apple.com
  • 10 edits in trunk/WebKit2

Reviewed by Anders Carlsson.

Implement WKView::setInitialFocus().
https://bugs.webkit.org/show_bug.cgi?id=51274

  • UIProcess/API/C/win/WKView.cpp: (WKViewSetInitialFocus):
  • UIProcess/API/C/win/WKView.h:
  • UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::setInitialFocus): Send message to the Web Process to set initial focus.
  • UIProcess/WebPageProxy.h:
  • UIProcess/win/WebView.cpp: (WebKit::WebView::setInitialFocus):
  • UIProcess/win/WebView.h:
  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::setInitialFocus): Set the focused node to null initially. Then ask FocusController to set the initial focus based on the focus direction.
  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in: Add a new message for SetInitialFocus.
2:24 PM Changeset in webkit [74295] by andersca@apple.com
  • 2 edits in trunk/WebKit2

Remove a check that probably uncovered a resizing bug.

Reviewed by Sam Weinig.

  • UIProcess/DrawingAreaProxy.cpp:

(WebKit::DrawingAreaProxy::setSize):

2:11 PM Changeset in webkit [74294] by andersca@apple.com
  • 9 edits in trunk/WebKit2

2010-12-17 Brian Weinstein <bweinstein@apple.com>

Qt build fix.

  • UIProcess/qt/WebPopupMenuProxyQt.h:
1:54 PM Changeset in webkit [74293] by Simon Fraser
  • 3 edits in trunk/LayoutTests

2010-12-17 Simon Fraser <Simon Fraser>

Change this test to use the pause API by testing the individual properties,
rather than the compound property.

  • transitions/mask-transitions-expected.txt: Removed.
  • transitions/mask-transitions.html:
1:50 PM BuildBot edited by Dimitri Glazkov
(diff)
1:39 PM Changeset in webkit [74292] by carol.szabo@nokia.com
  • 4 edits in trunk/WebCore

2010-12-17 Carol Szabo <carol.szabo@nokia.com>

Reviewed by Darin Adler.

A corrupted counter tree is created when renderers are added to the
tree bypassing RenderObject::addChild
https://bugs.webkit.org/show_bug.cgi?id=51270

This patch replaces the hack introduced for fixing bug 43812
with code that addresses the underlying problem for that bug.
No new layout tests provided as there is no identified scenario when
visible behavior would be different, the internal datastructures
are maintained properly through this fix so the previous hack
introduced for bug 43812 is now removed. The fact that the
layout test introduced for 43812 continues to pass is proof that the
code works.

  • rendering/RenderCounter.cpp: (WebCore::findPlaceForCounter): Removed hack.
  • rendering/RenderObject.cpp: (WebCore::RenderObject::addChild): Moved call to counter nodes updater to lower level functions to avoid bypass.
  • rendering/RenderObjectChildList.cpp: (WebCore::RenderObjectChildList::appendChildNode): (WebCore::RenderObjectChildList::insertChildNode): Changed to update the values of the counters that may be inserted in the tree.
1:38 PM Changeset in webkit [74291] by oliver@apple.com
  • 3 edits
    3 adds in trunk

2010-12-17 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

Incorrect encoding of some constants in ARMv7 JIT
https://bugs.webkit.org/show_bug.cgi?id=51273
<rdar://problem/8650210>

When using immediate encoding 3 we need to write the byte
that holds a duplicated value.

  • assembler/ARMv7Assembler.h: (JSC::ARMThumbImmediate::makeEncodedImm):

2010-12-17 Oliver Hunt <oliver@apple.com>

Reviewed by Gavin Barraclough.

Incorrect encoding of some constants in ARMv7 JIT
https://bugs.webkit.org/show_bug.cgi?id=51273

Add a few tests for different byte patterns in immediates.

  • fast/js/constant-encoding-expected.txt: Added.
  • fast/js/constant-encoding.html: Added.
  • fast/js/script-tests/constant-encoding.js: Added.
1:37 PM Changeset in webkit [74290] by jberlin@webkit.org
  • 1 edit
    6 adds in trunk/LayoutTests

Add Windows-specific expected results for the the tests added in
http://trac.webkit.org/changeset/74281.

Rubber-stamped by Dan Bernstein.

  • platform/win/fast/text/emphasis-expected.checksum: Added.
  • platform/win/fast/text/emphasis-expected.png: Added.
  • platform/win/fast/text/emphasis-expected.txt: Added.
  • platform/win/fast/text/emphasis-vertical-expected.checksum: Added.
  • platform/win/fast/text/emphasis-vertical-expected.png: Added.
  • platform/win/fast/text/emphasis-vertical-expected.txt: Added.
1:29 PM Changeset in webkit [74289] by bweinstein@apple.com
  • 2 edits in trunk/WebKit2

Qt build fix.

  • UIProcess/qt/WebPopupMenuProxyQt.h:
1:24 PM Changeset in webkit [74288] by commit-queue@webkit.org
  • 2 edits in trunk/WebCore

2010-12-17 Shimeng (Simon) Wang <swang@google.com>

Reviewed by Steve Block.

Fix V8 JNI binding.
https://bugs.webkit.org/show_bug.cgi?id=51156

There're LayoutTests in:
http://trac.webkit.org/browser/trunk/LayoutTests/java/lc3/JSNumber
to exercise these code paths.
Though Chromium don't run them.
Tested on Android fast/events/touch tests.

  • bridge/jni/v8/JNIUtilityPrivate.cpp: (JSC::Bindings::convertNPVariantToJValue):
1:22 PM Changeset in webkit [74287] by Simon Fraser
  • 3 edits
    3 adds in trunk

2010-12-17 Simon Fraser <Simon Fraser>

Reviewed by Chris Marrin.

Interrupted accelerated animation can break later transitions
<rdar://problem/8767714>
https://bugs.webkit.org/show_bug.cgi?id=51264

If we're still waiting for the 'animationDidStart' callback when renderers
get destroyed, then the m_waitingForStartTimeResponse flag could be left
set to 'true', which causes later transitions to never start.

Fix by clearing the m_waitingForStartTimeResponse flag when the m_startTimeResponseWaiters
becomes empty.

Test: transitions/interrupted-accelerated-transition.html

  • page/animation/AnimationController.cpp: (WebCore::AnimationControllerPrivate::removeFromStartTimeResponseWaitList):
1:22 PM Changeset in webkit [74286] by Simon Fraser
  • 3 edits in trunk/WebCore

2010-12-17 Simon Fraser <Simon Fraser>

Reviewed by Chris Marrin.

Interrupted accelerated animation can break later transitions
https://bugs.webkit.org/show_bug.cgi?id=51264

Step 1: code cleanup.
Rename "responseWait" variables to "startTimeResponseWait", to make it clear
the kind of response that is being waited for.

Make a couple of methods private.

No behavioral changes, so no tests.

  • page/animation/AnimationController.cpp: (WebCore::AnimationControllerPrivate::AnimationControllerPrivate): (WebCore::AnimationControllerPrivate::endAnimationUpdate): (WebCore::AnimationControllerPrivate::receivedStartTimeResponse): (WebCore::AnimationControllerPrivate::addToStartTimeResponseWaitList): (WebCore::AnimationControllerPrivate::removeFromStartTimeResponseWaitList): (WebCore::AnimationControllerPrivate::startTimeResponse):
  • page/animation/AnimationControllerPrivate.h:
1:08 PM Changeset in webkit [74285] by bweinstein@apple.com
  • 21 edits in trunk/WebKit2

Text area does not update when you arrow through a <select> in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=51269
<rdar://problem/8612853>

Reviewed by Anders Carlsson.

Patch by Sam Weinig.

Insteaed of keeping track of the selected index of a <select> just in the UI process, we
need to pass this information along to the web process so that the web process can draw
the correct text in the text field at the top of the select, when the selection changes (via
the arrows or other typing while the select is opened).

When the selected item in a popup changes, the UI process sends a message to the web process, telling
it about the new selected index. The web process gets this message, and then sets the text that
is visible in the select element.

  • UIProcess/API/mac/PageClientImpl.h: CreatePopupMenuProxy now takes a WebPageProxy.
  • UIProcess/API/mac/PageClientImpl.mm:

(WebKit::PageClientImpl::createPopupMenuProxy): Pass the WebPageProxy to create.

  • UIProcess/API/qt/qwkpage.cpp:

(QWKPagePrivate::createPopupMenuProxy):

  • UIProcess/API/qt/qwkpage_p.h: CreatePopupMenuProxy now takes a WebPageProxy.
  • UIProcess/PageClient.h: CreatePopupMenuProxy now takes a WebPageProxy.
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::valueChangedForPopupMenu): Send that the selected index changed to the

web process.selected

(WebKit::WebPageProxy::setTextFromItemForPopupMenu): Send that we should update the text for the

active popup menu (with the index of the item to show).

(WebKit::WebPageProxy::showPopupMenu): Pass the WebPageProxy to createPopupMenuProxy.

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPopupMenuProxy.h: Add a client who has virtual functions for the state changing of the

popup menu. ShowPopupMenu doesn't take a new selected index anymore, that is handled by the client,
and calling down to the web process.

(WebKit::WebPopupMenuProxy::Client::~Client):
(WebKit::WebPopupMenuProxy::WebPopupMenuProxy): Initialize the client.

  • UIProcess/mac/WebPopupMenuProxyMac.h:

(WebKit::WebPopupMenuProxyMac::create): Takes a WebPopupMenuProxy::Client, and passes it to the constructor.

  • UIProcess/mac/WebPopupMenuProxyMac.mm:

(WebKit::WebPopupMenuProxyMac::WebPopupMenuProxyMac): Update what's initialized by the constructor.
(WebKit::WebPopupMenuProxyMac::showPopupMenu): Call through to the web process that the value changed.

  • UIProcess/qt/WebPopupMenuProxyQt.cpp:

(WebKit::WebPopupMenuProxyQt::WebPopupMenuProxyQt): Update what's initialized by the constructor.

  • UIProcess/win/WebPopupMenuProxyWin.cpp:

(WebKit::WebPopupMenuProxyWin::WebPopupMenuProxyWin): Ditto.
(WebKit::WebPopupMenuProxyWin::showPopupMenu): Call through to the web process that the value changed.
(WebKit::WebPopupMenuProxyWin::setFocusedIndex): Resolve a FIXME to set the text of the popup menu.

  • UIProcess/win/WebPopupMenuProxyWin.h:

(WebKit::WebPopupMenuProxyWin::create): Take in a WebPopupMenuProxy::client, and pass it to the constructor.

  • UIProcess/win/WebView.cpp:

(WebKit::WebView::createPopupMenuProxy): Pass the WebPageProxy to create.

  • UIProcess/win/WebView.h:
  • WebProcess/WebCoreSupport/WebPopupMenu.cpp:

(WebKit::WebPopupMenu::setTextForIndex): Call through to setTextFromItem to set the select text.

  • WebProcess/WebCoreSupport/WebPopupMenu.h:
  • WebProcess/WebPage/WebPage.cpp: Call through to setTextForIndex on the active popup menu.

(WebKit::WebPage::setTextForActivePopupMenu):

  • WebProcess/WebPage/WebPage.h:
  • WebProcess/WebPage/WebPage.messages.in: Add a new message.
1:06 PM Changeset in webkit [74284] by andersca@apple.com
  • 12 edits in trunk/WebKit2

Add a WebPageProxy parameter to the DrawingAreaProxy constructor
https://bugs.webkit.org/show_bug.cgi?id=51271

Reviewed by Sam Weinig.

  • UIProcess/API/mac/WKView.mm:

(-[WKView initWithFrame:contextRef:pageGroupRef:]):
(-[WKView _switchToDrawingAreaTypeIfNecessary:DrawingAreaInfo::]):

  • UIProcess/API/qt/qgraphicswkview.cpp:

(QGraphicsWKView::QGraphicsWKView):

  • UIProcess/ChunkedUpdateDrawingAreaProxy.cpp:

(WebKit::ChunkedUpdateDrawingAreaProxy::create):
(WebKit::ChunkedUpdateDrawingAreaProxy::ChunkedUpdateDrawingAreaProxy):

  • UIProcess/ChunkedUpdateDrawingAreaProxy.h:
  • UIProcess/DrawingAreaProxy.cpp:

(WebKit::DrawingAreaProxy::DrawingAreaProxy):

  • UIProcess/DrawingAreaProxy.h:
  • UIProcess/LayerBackedDrawingAreaProxy.cpp:

(WebKit::LayerBackedDrawingAreaProxy::create):
(WebKit::LayerBackedDrawingAreaProxy::LayerBackedDrawingAreaProxy):

  • UIProcess/LayerBackedDrawingAreaProxy.h:
  • UIProcess/TiledDrawingAreaProxy.cpp:

(WebKit::TiledDrawingAreaProxy::create):
(WebKit::TiledDrawingAreaProxy::TiledDrawingAreaProxy):

  • UIProcess/TiledDrawingAreaProxy.h:
  • UIProcess/win/WebView.cpp:

(WebKit::WebView::WebView):
(WebKit::WebView::switchToDrawingAreaTypeIfNecessary):

11:45 AM Changeset in webkit [74283] by mitz@apple.com
  • 10 edits in trunk/WebKit2

Add API for "Always Use the Complex Text Code Path"
https://bugs.webkit.org/show_bug.cgi?id=51265

Reviewed by Darin Adler.

  • Shared/WebProcessCreationParameters.cpp:

(WebKit::WebProcessCreationParameters::WebProcessCreationParameters): Initialize shouldAlwaysUseComplexTextCodePath.
(WebKit::WebProcessCreationParameters::encode): Encode shouldAlwaysUseComplexTextCodePath.
(WebKit::WebProcessCreationParameters::decode): Decode shouldAlwaysUseComplexTextCodePath.

  • Shared/WebProcessCreationParameters.h:
  • UIProcess/API/C/WKContext.cpp:

(_WKContextSetAlwaysUsesComplexTextCodePath): Added.

  • UIProcess/API/C/WKContextPrivate.h:
  • UIProcess/WebContext.cpp:

(WebKit::WebContext::WebContext): Initialize m_alwaysUsesComplexTextCodePath.
(WebKit::WebContext::ensureWebProcess): Set shouldAlwaysUseComplexTextCodePath in the creation parameters.
(WebKit::WebContext::setAlwaysUsesComplexTextCodePath): Added. Sets m_alwaysUsesComplexTextCodePath and
sends a message to the WebProcess.

  • UIProcess/WebContext.h:
  • WebProcess/WebProcess.cpp:

(WebKit::WebProcess::initializeWebProcess): Call setAlwaysUsesComplexTextCodePath() based on the creation
parameters.
(WebKit::WebProcess::setAlwaysUsesComplexTextCodePath): Added.

  • WebProcess/WebProcess.h:
  • WebProcess/WebProcess.messages.in: Added SetAlwaysUsesComplexTextCodePath.
11:35 AM Changeset in webkit [74282] by weinig@apple.com
  • 7 edits in trunk/WebKit2

WebKit2: Implement a title attribute per frame
https://bugs.webkit.org/show_bug.cgi?id=51266

Reviewed by Darin Adler.

Cache the title of each frame on the WebFrameProxy. Removes
the WebPageProxy's cache of the main frame title to just
access the main frame.

We clear the cached title on new committed loads and on failures
to load.

  • UIProcess/API/C/WKFrame.cpp:

(WKFrameCopyTitle):

  • UIProcess/API/C/WKFrame.h:
  • UIProcess/WebFrameProxy.cpp:

(WebKit::WebFrameProxy::didCommitLoad):
(WebKit::WebFrameProxy::didFailLoad):
(WebKit::WebFrameProxy::didChangeTitle):

  • UIProcess/WebFrameProxy.h:

(WebKit::WebFrameProxy::title):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::close):
(WebKit::WebPageProxy::pageTitle):
(WebKit::WebPageProxy::didReceiveTitleForFrame):
(WebKit::WebPageProxy::processDidCrash):

  • UIProcess/WebPageProxy.h:
11:31 AM Changeset in webkit [74281] by mitz@apple.com
  • 10 edits
    8 adds in trunk

WebCore: Layout and rendering of CSS text-emphasis
Final part of <rdar://problem/7720300> Support the CSS3 text-emphasis property
https://bugs.webkit.org/show_bug.cgi?id=48539

Reviewed by Dave Hyatt.

Tests: fast/text/emphasis-vertical.html

fast/text/emphasis.html

Emphasis marks behave like they are stuck just above the ascender (or just below the
descender). They occupy space in the leading and in padding, and only grow the line space
if they cannot fit.

  • rendering/InlineFlowBox.cpp:

(WebCore::InlineFlowBox::placeBoxesInBlockDirection): Renamed the containsRuby parameter to
hasAnnotationsBefore, and added hasAnnotationsAfter. Line annotations include ruby and text emphasis
marks.
(WebCore::InlineFlowBox::addTextBoxVisualOverflow): Added overflow from emphasis marks.
(WebCore::InlineFlowBox::computeOverAnnotationAdjustment): Remaned computeBlockDirectionRubyAdjustment()
to this and added adjustment for text emphasis marks.
(WebCore::InlineFlowBox::computeUnderAnnotationAdjustment): Added. Similar to the previous function,
but for annotations under the glyphs. These can only be text emphasis marks.

  • rendering/InlineFlowBox.h:
  • rendering/InlineTextBox.cpp:

(WebCore::paintTextWithShadows): Paint emphasis marks.
(WebCore::InlineTextBox::paint): Ditto.

  • rendering/RenderBlockLineLayout.cpp:

(WebCore::RenderBlock::layoutInlineChildren): Generalized the code that adjusts the last line for
ruby in flipped writing mode to also adjust the last line for emphasis marks under the line in non-
flipped writing mode.

  • rendering/RenderObject.cpp:

(WebCore::RenderObject::selectionColor): Added this helper method which generalizes selectionForegroundColor().
(WebCore::RenderObject::selectionForegroundColor): Moved most of the code to selectionColor().
(WebCore::RenderObject::selectionEmphasisMarkColor): Added.

  • rendering/RenderObject.h:
  • rendering/RootInlineBox.cpp:

(WebCore::RootInlineBox::RootInlineBox): Updated initialization for new members.
(WebCore::RootInlineBox::alignBoxesInBlockDirection): Update new members.
(WebCore::RootInlineBox::beforeAnnotationsAdjustment): Renamed blockDirectionRubyAdjustment() to this
and extended to deal with annotations over and under the line and the previous line. If both lines have
annotations into the space between the lines, maintain separation so that the annotations do not overlap.

  • rendering/RootInlineBox.h:

(WebCore::RootInlineBox::hasAnnotationsBefore): Added this accessor.
(WebCore::RootInlineBox::hasAnnotationsAfter): Ditto.

LayoutTests: <rdar://problem/7720300> Support the CSS3 text-emphasis property
https://bugs.webkit.org/show_bug.cgi?id=48539

Reviewed by Dave Hyatt.

  • fast/text/emphasis-vertical.html: Added.
  • fast/text/emphasis.html: Added.
  • platform/mac/fast/text/emphasis-expected.checksum: Added.
  • platform/mac/fast/text/emphasis-expected.png: Added.
  • platform/mac/fast/text/emphasis-expected.txt: Added.
  • platform/mac/fast/text/emphasis-vertical-expected.checksum: Added.
  • platform/mac/fast/text/emphasis-vertical-expected.png: Added.
  • platform/mac/fast/text/emphasis-vertical-expected.txt: Added.
11:12 AM Changeset in webkit [74280] by tonikitoo@webkit.org
  • 1 edit
    1 add in trunk/LayoutTests

2010-12-17 Antonio Gomes <agomes@rim.com>

Unreviewed fix for Windows bots.

r74270 removed the windows specific result for extend-selection-home-end.html
since it was matching the cross platform expectation result. However, when there is
no win specific test result but there is a mac one for the same test, the later
is picked before the cross platform one.

  • platform/win/editing/selection/extend-selection-home-end-expected.txt: Added.
10:58 AM Changeset in webkit [74279] by rniwa@webkit.org
  • 2 edits
    1 add
    4 deletes in trunk/LayoutTests

2010-12-17 Ryosuke Niwa <rniwa@webkit.org>

Reviewed by Antonio Gomes.

editing/execCommand/toggle-compound-styles-expected should use LayoutTestController::setEditingBehavior
https://bugs.webkit.org/show_bug.cgi?id=51261

Modified the test to run each test case using each editing behavior, eliminating the need for
platform-specific expected results.

  • editing/execCommand/script-tests/toggle-compound-styles.js: (testSingleToggle):
  • platform/gtk/editing/execCommand/toggle-compound-styles-expected.txt: Removed.
  • platform/mac/editing/execCommand/toggle-compound-styles-expected.txt: Removed.
  • platform/qt/editing/execCommand/toggle-compound-styles-expected.txt: Removed.
  • platform/win/editing/execCommand/toggle-compound-styles-expected.txt: Removed.
10:56 AM Changeset in webkit [74278] by commit-queue@webkit.org
  • 3 edits in trunk/WebCore

2010-12-17 W. James MacLean <wjmaclean@chromium.org>

Reviewed by James Robinson.

[chromium] Add support to compositor to composite to offscreen texture.
https://bugs.webkit.org/show_bug.cgi?id=50833

A patch to extend compositor to be able to composite into an offscreen texture instead
of just directly to the display buffer. Builds on RenderSurfaceChromium support.

External behaviour not changed, so no tests.

  • platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::LayerRendererChromium): (WebCore::LayerRendererChromium::prepareToDrawLayers): (WebCore::LayerRendererChromium::drawLayers): (WebCore::LayerRendererChromium::setCompositeOffscreen): (WebCore::LayerRendererChromium::useRenderSurface): (WebCore::LayerRendererChromium::setScissorToRect):
  • platform/graphics/chromium/LayerRendererChromium.h: (WebCore::LayerRendererChromium::isCompositingOffscreen): (WebCore::LayerRendererChromium::getOffscreenLayerTexture):
10:37 AM Changeset in webkit [74277] by ojan@chromium.org
  • 2 edits in trunk/BugsSite

2010-12-17 Ojan Vafai <ojan@chromium.org>

Increment psuedo-version number to avoid pulling cached version.

  • PrettyPatch/PrettyPatch.rb:
10:33 AM Changeset in webkit [74276] by ojan@chromium.org
  • 3 edits in trunk/BugsSite

2010-12-17 Ojan Vafai <ojan@chromium.org>

Speculative fix for the code review tool in Firefox.
Fixes a JS error and makes the status bubble mostly work
if postMessage is not supported.

  • PrettyPatch/PrettyPatch.rb:
  • code-review.js:
9:57 AM Changeset in webkit [74275] by Darin Adler
  • 9 edits in trunk/WebKit2

2010-12-16 Darin Adler <Darin Adler>

Reviewed by Maciej Stachowiak.

Add text encoding menu API for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=51226

  • UIProcess/API/C/WKPage.cpp: (WKPageSupportsTextEncoding): Added. (WKPageCopyCustomTextEncodingName): Added. (WKPageSetCustomTextEncodingName): Added.
  • UIProcess/API/C/WKPage.h: Added the functions above.
  • UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::WebPageProxy): Initialize m_mainFrameHasCustomRepresentation to false. (WebKit::WebPageProxy::supportsTextEncoding): Added. (WebKit::WebPageProxy::setCustomTextEncodingName): Added. (WebKit::WebPageProxy::didCommitLoadForFrame): Set m_mainFrameHasCustomRepresentation.
  • UIProcess/WebPageProxy.h: Added supportsTextEncoding, setCustomTextEncodingName, customTextEncodingName, and m_mainFrameHasCustomRepresentation.
  • UIProcess/WebPageProxy.messages.in: Tweaked formatting (added a blank line).
  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::setCustomTextEncodingName): Added.
  • WebProcess/WebPage/WebPage.h: Added setCustomTextEncodingName.
  • WebProcess/WebPage/WebPage.messages.in: Added the SetCustomTextEncodingName message. Tweaked formatting of the dummy message.
9:37 AM Changeset in webkit [74274] by commit-queue@webkit.org
  • 2 edits in trunk/WebKit/chromium

2010-12-17 John Knottenbelt <jknotten@chromium.org>

Reviewed by Jeremy Orlow.

Fix test failures where NULL GeolocationClient is provided
https://bugs.webkit.org/show_bug.cgi?id=51256

  • src/GeolocationClientProxy.cpp: (WebKit::GeolocationClientProxy::geolocationDestroyed):
9:12 AM Changeset in webkit [74273] by tonikitoo@webkit.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Antonio Gomes <agomes@rim.com>

Unreviewed expectation result update.

editing/execCommand/toggle-compound-styles.html needs new expected results after r74269.

Default editing behavior of GTK+ DRT was changed from Mac to Unix, and this test is wrongly
going through platform specific editing behavior code path without making calls to
LayoutTestController::setEditingBehavior. Filed bug 51261 for the proper fix.

  • platform/gtk/editing/execCommand/toggle-compound-styles-expected.txt:
8:43 AM Changeset in webkit [74272] by ariya@webkit.org
  • 2 edits in trunk/WebCore

2010-12-17 Ariya Hidayat <ariya@sencha.com>

Reviewed by Andreas Kling.

[Qt] Default image interpolation should reset the render hint
https://bugs.webkit.org/show_bug.cgi?id=51233

Save initial SmoothPixmapTransform render hint so that it can be used
with default image interpolation quality to reset back the render hints.

  • platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContextPlatformPrivate::GraphicsContextPlatformPrivate): (WebCore::GraphicsContext::setImageInterpolationQuality):
8:26 AM Changeset in webkit [74271] by ariya@webkit.org
  • 2 edits in trunk/WebKit/qt

2010-12-17 Ariya Hidayat <ariya@sencha.com>

Reviewed by Antonio Gomes.

[Qt] GraphicsContext should respect QWebView render hints
https://bugs.webkit.org/show_bug.cgi?id=51208

Adjust the test since SmoothPixmapTransform is set by default.

  • tests/qwebview/tst_qwebview.cpp: (tst_QWebView::renderHints):
8:16 AM Changeset in webkit [74270] by tonikitoo@webkit.org
  • 5 edits
    2 moves in trunk

2010-12-05 Antonio Gomes <agomes@rim.com>

Reviewed by Ariya Hidayat.

[Qt] Fix caret browsing navigation mode
https://bugs.webkit.org/show_bug.cgi?id=50536

WebKit/qt:

Caret browsing can consume editing commands even when the start
of current selection is not a editable content. r69582 missed this
case because caret browsing feature testing is very poor today.

This commit reintroduces part of the removed code in r69582 but
guarded by a isCaretBrowsingEnabled() check. No regression found.

  • WebCoreSupport/EditorClientQt.cpp: (WebCore::EditorClientQt::handleKeyboardEvent):

LayoutTests:

/platform/gtk/editing/selection/caret-mode-paragraph-keys-navigation.html
is one of the few tests actually tests the caret browsing feature.
Patch makes the test not Gtk+ specific, and Qt now passes on it.

  • editing/selection/caret-mode-paragraph-keys-navigation-expected.txt: Renamed from LayoutTests/platform/gtk/editing/selection/caret-mode-paragraph-keys-navigation-expected.tx t.
  • editing/selection/caret-mode-paragraph-keys-navigation.html: Renamed from LayoutTests/platform/gtk/editing/selection/caret-mode-paragraph-keys-navigation.html.
  • fast/events/multiline-link-arrow-navigation.html:
8:15 AM Changeset in webkit [74269] by tonikitoo@webkit.org
  • 3 edits
    2 deletes in trunk

2010-12-16 Antonio Gomes <agomes@rim.com>

Reviewed by Martin Robinson.

Settings::editingBehaviorType() incorrectly returns mac for the gtk build when running tests
https://bugs.webkit.org/show_bug.cgi?id=51163

WebKitTools:
Since GTK+'s default editing behavior was changed to UNIX in r70975 (see webkitwebsettings.cpp),
GTK+'s DRT should also reset to UNIX after each test execution.

  • DumpRenderTree/gtk/DumpRenderTree.cpp: (resetDefaultsToConsistentValues):

LayoutTests:
Removed platform specific expected result files for gtk and windows
for editing/selection/extend-selection-home-end.html, since they all match
the cross platform result file.

Note: chromium-win and mac still have their own expected file each.

  • platform/gtk/editing/selection/extend-selection-home-end-expected.txt: Removed.
  • platform/win/editing/selection/extend-selection-home-end-expected.txt: Removed.
7:54 AM Changeset in webkit [74268] by commit-queue@webkit.org
  • 2 edits in trunk/WebKit2

2010-12-17 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r74201.
http://trac.webkit.org/changeset/74201
https://bugs.webkit.org/show_bug.cgi?id=51248

It broke ~6000 layout tests (Requested by Ossy_ on #webkit).

  • UIProcess/API/qt/qgraphicswkview.cpp: (QGraphicsWKView::setGeometry): (QGraphicsWKView::itemChange):
7:48 AM BuildingOnWindows edited by Adam Roben
Update the rebase instructions (diff)
7:11 AM Changeset in webkit [74267] by yurys@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Remove custom expectations for fast/js/regexp-ranges-and-escaped-hyphens.html

  • platform/chromium/test_expectations.txt:
7:10 AM Changeset in webkit [74266] by hans@chromium.org
  • 12 edits in trunk

2010-12-17 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Support Date objects as keys.
https://bugs.webkit.org/show_bug.cgi?id=51193

Update layout tests to check that having Date objects as keys work.

  • storage/indexeddb/objectstore-basics-expected.txt:
  • storage/indexeddb/objectstore-basics.html:

2010-12-17 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Support Date objects as keys.
https://bugs.webkit.org/show_bug.cgi?id=51193

  • bindings/v8/IDBBindingUtilities.cpp: (WebCore::createIDBKeyFromValue): Use the new IDBKey factory functions, and support Date objects.
  • bindings/v8/custom/V8IDBKeyCustom.cpp: (WebCore::toV8): Create Date objects from DateType keys.
  • storage/IDBKey.cpp: (WebCore::IDBKey::fromQuery): (WebCore::IDBKey::isEqual): (WebCore::IDBKey::whereSyntax): (WebCore::IDBKey::lowerCursorWhereFragment): (WebCore::IDBKey::upperCursorWhereFragment): (WebCore::IDBKey::bind): (WebCore::IDBKey::bindWithNulls): Update all SQL related functions to handle Date keys.
  • storage/IDBKey.h: (WebCore::IDBKey::createNull): (WebCore::IDBKey::createNumber): (WebCore::IDBKey::createString): (WebCore::IDBKey::createDate): Rename the create factories; since both number and date is just a double, function overloading can't be used to discriminate between the factories. (WebCore::IDBKey::date): Add getter for the date value.

2010-12-17 Hans Wennborg <hans@chromium.org>

Reviewed by Jeremy Orlow.

IndexedDB: Support Date objects as keys.
https://bugs.webkit.org/show_bug.cgi?id=51193

Update to match the underlying WebCore IDBKey class:
add the DateType, add create() functions for each type,
deprecate the public constructors (will be removed once
Chromium side is updated).

  • public/WebIDBKey.h: (WebKit::WebIDBKey::WebIDBKey):
  • src/AssertMatchingEnums.cpp:
  • src/WebIDBKey.cpp: (WebKit::WebIDBKey::createString): (WebKit::WebIDBKey::createDate): (WebKit::WebIDBKey::createNumber): (WebKit::WebIDBKey::assignNull): (WebKit::WebIDBKey::assignString): (WebKit::WebIDBKey::assignDate): (WebKit::WebIDBKey::assignNumber): (WebKit::WebIDBKey::date):
7:05 AM Changeset in webkit [74265] by pfeldman@chromium.org
  • 2 edits in branches/chromium/597/WebCore/inspector/front-end

Merge 74261 - 2010-12-17 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: add scripts parsed after resource load to SourceFrame.
https://bugs.webkit.org/show_bug.cgi?id=51243

  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._addScript):
  • inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype.addScript):

TBR=podivilov@chromium.org
BUG=74261

Review URL: http://codereview.chromium.org/5997002

6:58 AM Changeset in webkit [74264] by pfeldman@chromium.org
  • 2 edits in branches/chromium/597/WebCore/inspector/front-end

Merge 74253 - 2010-12-17 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: [REGRESSION] Cmd (Ctrl) + G does not search next in Scripts panel.
https://bugs.webkit.org/show_bug.cgi?id=50893

Now Mac shortcuts are:

  • Cmd F/G = find / next
  • Cmd L = go to line

Win/Linux:

  • Ctrl+G = go to line
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._registerShortcuts):
  • inspector/front-end/inspector.js: (WebInspector._registerShortcuts):

TBR=pfeldman@chromium.org
BUG=67282

Review URL: http://codereview.chromium.org/6006001

6:55 AM Changeset in webkit [74263] by sergio@webkit.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed, tests were skipped due to a bug in libsoup
https://bugzilla.gnome.org/show_bug.cgi?id=631679. Now that it was
fixed we can safely unskip them again.

[GTK] Failing http/tests/xmlhttprequest tests
https://bugs.webkit.org/show_bug.cgi?id=30582

  • platform/gtk/Skipped:
6:51 AM Changeset in webkit [74262] by pfeldman@chromium.org
  • 1 edit in branches/chromium/597/WebCore/inspector/front-end/ResourceManager.js

Merge 74259 - 2010-12-17 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [REGRESSION] scripts in scripts panel are not updated on reload.
https://bugs.webkit.org/show_bug.cgi?id=51101

  • inspector/front-end/ResourceManager.js: (WebInspector.ResourceTreeModel.prototype.didCommitLoadForFrame):

TBR=podivilov@chromium.org
BUG=67313

Review URL: http://codereview.chromium.org/6005001

6:47 AM Changeset in webkit [74261] by podivilov@chromium.org
  • 3 edits in trunk/WebCore

2010-12-17 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: add scripts parsed after resource load to SourceFrame.
https://bugs.webkit.org/show_bug.cgi?id=51243

  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._addScript):
  • inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype.addScript):
6:39 AM Changeset in webkit [74260] by antonm@chromium.org
  • 2 edits in trunk/WebCore

2010-12-17 Anton Muhin <antonm@chromium.org>

Reviewed by Yury Semikhatsky.

[v8] The last portion of CSS GC work: fixing fast/dom/StyleSheet/gc-stylesheet-wrapper.html
https://bugs.webkit.org/show_bug.cgi?id=51121

Properly group style elements of HTML links, style elements and processing instructions.

  • bindings/v8/V8GCController.cpp: (WebCore::NodeGrouperVisitor::visitDOMWrapper): (WebCore::NodeGrouperVisitor::addDOMObjectToGroup):
6:37 AM Changeset in webkit [74259] by podivilov@chromium.org
  • 2 edits in trunk/WebCore

2010-12-17 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [REGRESSION] scripts in scripts panel are not updated on reload.
https://bugs.webkit.org/show_bug.cgi?id=51101

  • inspector/front-end/ResourceManager.js: (WebInspector.ResourceTreeModel.prototype.didCommitLoadForFrame):
6:33 AM Changeset in webkit [74258] by tkent@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Kent Tamura <tkent@chromium.org>

Unreviewed, test expectation update.

  • platform/chromium/test_expectations.txt: Collect and correct failures about vertical writing.
6:15 AM Changeset in webkit [74257] by benjamin.poulain@nokia.com
  • 2 edits in trunk/WebCore

2010-12-17 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Laszlo Gombos.

The inspector does not compile without JAVASCRIPT_DEBUGGER
https://bugs.webkit.org/show_bug.cgi?id=51246

Fix the build, m_extraHeaders does not depend on JAVASCRIPT_DEBUGGER.

  • inspector/InspectorController.h:
5:52 AM Changeset in webkit [74256] by caseq@chromium.org
  • 2 edits in trunk/WebCore

2010-12-17 Andrey Kosyakov <caseq@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: clear extra/override headers when front-end is closed
https://bugs.webkit.org/show_bug.cgi?id=51244

  • inspector/InspectorController.cpp: (WebCore::InspectorController::disconnectFrontend): (WebCore::InspectorController::willSendRequest):
5:15 AM Changeset in webkit [74255] by levin@chromium.org
  • 3 edits in trunk/WebKitTools

2010-12-17 David Levin <levin@chromium.org>

Reviewed by Eric Seidel.

check-webkit-style should understand WTF #include guards
https://bugs.webkit.org/show_bug.cgi?id=44911

  • Scripts/webkitpy/style/checkers/cpp.py: (get_header_guard_cpp_variable): modify to suggest the WTF style of header guard when appropriate. (check_for_header_guard): handle multiple return values from get_header_guard_cpp_variable
  • Scripts/webkitpy/style/checkers/cpp_unittest.py: (CppStyleTest.test_build_header_guard): Added tests for the WTF header style.
5:07 AM Changeset in webkit [74254] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

Unreviewed.

[Qt] Web Timing related bugs
https://bugs.webkit.org/show_bug.cgi?id=51245

  • platform/qt/Skipped: http/tests/misc/webtiming-ssl.php added until fix.
4:52 AM Changeset in webkit [74253] by pfeldman@chromium.org
  • 3 edits in trunk/WebCore

2010-12-17 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: [REGRESSION] Cmd (Ctrl) + G does not search next in Scripts panel.
https://bugs.webkit.org/show_bug.cgi?id=50893

Now Mac shortcuts are:

  • Cmd F/G = find / next
  • Cmd L = go to line

Win/Linux:

  • Ctrl+G = go to line
  • inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._registerShortcuts):
  • inspector/front-end/inspector.js: (WebInspector._registerShortcuts):
4:50 AM Changeset in webkit [74252] by yurys@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Update Chromium test expectations.

  • platform/chromium/test_expectations.txt:
4:46 AM Changeset in webkit [74251] by sergio@webkit.org
  • 2 edits in trunk/WebCore

2010-12-16 Sergio Villar Senin <svillar@igalia.com>

Reviewed by Martin Robinson.

Wrong check in ResourceHandleSoup in error cases
https://bugs.webkit.org/show_bug.cgi?id=51171

Calling didReceiveData with no data causes a crash in debug
builds. Checking for soupMsg->response_body->data is not correct as libsoup
always creates a buffer for that. Instead we should check for
soupMsg->response_body->length

  • platform/network/soup/ResourceHandleSoup.cpp: (WebCore::sendRequestCallback):
4:27 AM Changeset in webkit [74250] by sergio@webkit.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Sergio Villar Senin <svillar@igalia.com>

Unreviewed, skipping a failing test in the bots.

[GTK] fast/dom/global-constructors.html failing on bots
https://bugs.webkit.org/show_bug.cgi?id=51242

  • platform/gtk/Skipped:
4:19 AM Changeset in webkit [74249] by yurys@chromium.org
  • 2 edits in trunk/LayoutTests

2010-12-17 Yury Semikhatsky <yurys@chromium.org>

Unreviewed. Fix typo in Chromium test expectations.

  • platform/chromium/test_expectations.txt:
4:05 AM Changeset in webkit [74248] by andreas.kling@nokia.com
  • 2 edits in trunk/WebCore

2010-12-17 Andreas Kling <andreas.kling@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Avoid unnecessary calls to GraphicsContextPlatformPrivate::p()
https://bugs.webkit.org/show_bug.cgi?id=49954

  • platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::pushTransparencyLayerInternal): (WebCore::GraphicsContext::beginTransparencyLayer):
3:24 AM Changeset in webkit [74247] by mrowe@apple.com
  • 20 edits in tags/Safari-534.15

Revert some changes to work around <rdar://problem/8771085>.

3:13 AM Changeset in webkit [74246] by xan@webkit.org
  • 2 edits in trunk/WebCore

2010-12-17 Carlos Garcia Campos <cgarcia@igalia.com>

Reviewed by Martin Robinson.

[GTK] Compile warning introduced in r74129
https://bugs.webkit.org/show_bug.cgi?id=51181

  • platform/gtk/RenderThemeGtk.cpp: (WebCore::RenderThemeGtk::gtkContainer):
3:05 AM Changeset in webkit [74245] by mrowe@apple.com
  • 5 edits in trunk

Versioning.

3:04 AM Changeset in webkit [74244] by mrowe@apple.com
  • 1 copy in tags/Safari-534.15

New tag.

2:51 AM Changeset in webkit [74243] by commit-queue@webkit.org
  • 4 edits in trunk/WebKit/qt

2010-12-17 Yi Shen <yi.4.shen@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] QWebPage sends out a RequestSoftwareInputPanel event
incorrectly in particular case
https://bugs.webkit.org/show_bug.cgi?id=50419

Add HitTestResult check before firing RequestSoftwareInputPanel event.

  • Api/qwebpage.cpp: (QWebPagePrivate::mouseReleaseEvent): (QWebPagePrivate::handleSoftwareInputPanel):
  • Api/qwebpage_p.h:
  • tests/qwebpage/tst_qwebpage.cpp: (clickOnPage): (tst_QWebPage::inputMethods):
2:37 AM Changeset in webkit [74242] by commit-queue@webkit.org
  • 13 edits
    3 adds in trunk

2010-12-17 James Simonsen <simonjam@chromium.org>

Reviewed by Darin Fisher.

[Web Timing] Add sslHandshakeStart to interface

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

  • fast/dom/Window/window-properties-performance-expected.txt: Added sslHandshakeStart.
  • fast/dom/script-tests/webtiming.js: Ditto. (checkTimingBeforeLoad): (checkTimingWhileDeferred): (checkWebTimingOnDOMContentLoaded): (checkWebTimingWhileAsync): (checkWebTimingOnLoad): (checkWebTimingAfterLoad):
  • fast/dom/webtiming-document-open-expected.txt: Ditto.
  • fast/dom/webtiming-expected.txt: Ditto.
  • fast/dom/webtiming-navigate-within-document-expected.txt: Ditto.
  • http/tests/misc/resources/webtiming-ssl.html: Added.
  • http/tests/misc/webtiming-ssl-expected.txt: Added.
  • http/tests/misc/webtiming-ssl.php: Added.
  • platform/gtk/Skipped: WebTiming disabled here.
  • platform/mac/Skipped: Ditto.
  • platform/win/Skipped: Ditto.

2010-12-17 James Simonsen <simonjam@chromium.org>

Reviewed by Darin Fisher.

[Web Timing] Add sslHandshakeStart to interface

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

Test: http/tests/misc/webtiming-ssl.php

  • page/PerformanceTiming.cpp: (WebCore::PerformanceTiming::connectStart): Update comment. (WebCore::PerformanceTiming::connectEnd): Remove SSL time. (WebCore::PerformanceTiming::sslHandshakeStart): Added.
  • page/PerformanceTiming.h: Added sslHandshakeStart.
  • page/PerformanceTiming.idl: Ditto.
2:19 AM Changeset in webkit [74241] by commit-queue@webkit.org
  • 8 edits in trunk

2010-12-17 James Simonsen <simonjam@chromium.org>

Reviewed by Darin Fisher.

[Web Timing] Navigation type enums should begin with TYPE_
https://bugs.webkit.org/show_bug.cgi?id=51200

  • fast/dom/Window/window-properties-performance-expected.txt: Added TYPE_ to navigation types and added TYPE_RESERVED.

2010-12-17 James Simonsen <simonjam@chromium.org>

Reviewed by Darin Fisher.

[Web Timing] Navigation type enums should begin with TYPE_
https://bugs.webkit.org/show_bug.cgi?id=51200

  • page/PerformanceNavigation.cpp: (WebCore::PerformanceNavigation::type): Added TYPE_ to navigation types.
  • page/PerformanceNavigation.h: Ditto and added TYPE_RESERVED.
  • page/PerformanceNavigation.idl: Ditto.

2010-12-17 James Simonsen <simonjam@chromium.org>

Reviewed by Darin Fisher.

[Web Timing] Navigation type enums should begin with TYPE_
https://bugs.webkit.org/show_bug.cgi?id=51200

  • src/WebPerformance.cpp: (WebKit::WebPerformance::navigationType): Added TYPE_ to navigation types.
2:05 AM Changeset in webkit [74240] by steveblock@google.com
  • 2 edits in trunk/WebCore

Fix build with Geolocation disabled.

1:48 AM Changeset in webkit [74239] by caseq@chromium.org
  • 3 edits in trunk/LayoutTests

2010-12-17 Andrey Kosyakov <caseq@chromium.org>

Unreviewed test fix: removed real user agent from test expectations.

  • http/tests/inspector/extensions-headers-expected.txt:
  • http/tests/inspector/extensions-headers.html:
1:17 AM Changeset in webkit [74238] by Patrick Gansterer
  • 2 edits in trunk/WebCore

2010-12-17 Patrick Gansterer <Patrick Gansterer>

Unreviewed. WinCE build fix.

  • platform/graphics/GraphicsContext.h:
1:13 AM Changeset in webkit [74237] by caseq@chromium.org
  • 3 edits in trunk/LayoutTests

2010-12-17 Andrey Kosyakov <caseq@chromium.org>

Unreviewed. Clean up extra headers set in test to avoid side effects on other tests.

  • http/tests/inspector/extensions-headers-expected.txt:
  • http/tests/inspector/extensions-headers.html:
12:29 AM Changeset in webkit [74236] by loislo@chromium.org
  • 5 edits
    1 delete in trunk/WebCore

2010-12-17 Ilya Tikhonovsky <loislo@chromium.org>

Reviewed by Yury Semikhatsky.

Web Inspector: remove unnecessary dependencies from InspectorBackendStub.

InspectorBackendStub is a transport-only thing but it has dependencies with
Callback.js and WebInspector namespace. Callback can be integrated into
InspectorBackendStub because it is the only client.
Without these dependencies InspectorBackendStub can be used as an API
wrapper for Inspector Protocol.

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

  • WebCore.gypi:
  • inspector/CodeGeneratorInspector.pm:
  • inspector/front-end/Callback.js: Removed.
  • inspector/front-end/WebKit.qrc:
  • inspector/front-end/inspector.html:
12:23 AM Changeset in webkit [74235] by eric@webkit.org
  • 5 edits
    2 moves in trunk

2010-12-17 Eric Seidel <eric@webkit.org>

Unreviewed, rolling out r74229.
http://trac.webkit.org/changeset/74229
https://bugs.webkit.org/show_bug.cgi?id=50536

Broken on Snow Leopard and possibly other platforms

  • platform/gtk/editing/selection/caret-mode-paragraph-keys-navigation-expected.txt: Renamed from LayoutTests/editing/selection/caret-mode-paragraph-keys-navigation-expected.txt.
  • platform/gtk/editing/selection/caret-mode-paragraph-keys-navigation.html: Renamed from LayoutTests/editing/selection/caret-mode-paragraph-keys-navigation.html.
  • platform/mac/Skipped:
  • platform/win/Skipped:

2010-12-17 Eric Seidel <eric@webkit.org>

Unreviewed, rolling out r74229.
http://trac.webkit.org/changeset/74229
https://bugs.webkit.org/show_bug.cgi?id=50536

Broken on Snow Leopard and possibly other platforms

  • WebCoreSupport/EditorClientQt.cpp: (WebCore::EditorClientQt::handleKeyboardEvent):
12:22 AM Changeset in webkit [74234] by caseq@chromium.org
  • 17 edits
    5 moves
    3 adds in trunk

2010-12-15 Andrey Kosyakov <caseq@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [Extension API] add support for adding/overriding HTTP request headers
https://bugs.webkit.org/show_bug.cgi?id=50493

Test: http/tests/inspector/extensions-headers.html

  • inspector/Inspector.idl:
  • inspector/InspectorController.cpp: (WebCore::InspectorController::willSendRequest): Apply extra headers. (WebCore::InspectorController::setExtraHeaders):
  • inspector/InspectorController.h:
  • inspector/front-end/ExtensionAPI.js: (WebInspector.injectedExtensionAPI.Resources.prototype.getHAR): (WebInspector.injectedExtensionAPI.Resources.prototype.addRequestHeaders):
  • inspector/front-end/ExtensionServer.js: (WebInspector.ExtensionServer): (WebInspector.ExtensionServer.prototype._onAddRequestHeaders):

2010-12-15 Andrey Kosyakov <caseq@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: [Extension API] add support for adding/overriding HTTP request headers
Moved extensions test frameworks under http/tests/inspector, so HTTP tests may reuse it.
https://bugs.webkit.org/show_bug.cgi?id=50493

  • http/tests/inspector/extensions-headers-expected.txt: Added.
  • http/tests/inspector/extensions-headers.html: Added.
  • http/tests/inspector/extensions-test.js: Renamed from LayoutTests/inspector/extensions-test.js. (log): (extensionFunctions): (initialize_ExtensionsTest.InspectorTest.dispatchOnMessage): (initialize_ExtensionsTest.InspectorTest.runExtensionTests): (initialize_ExtensionsTest.extensionOutput): (initialize_ExtensionsTest.dumpSidebarContent): (initialize_ExtensionsTest.reloadPage): (test):
  • http/tests/inspector/resources/echo-headers.php: Added.
  • http/tests/inspector/resources/extension-main.html: Renamed from LayoutTests/inspector/resources/extension-main.html.
  • http/tests/inspector/resources/extension-main.js: Renamed from LayoutTests/inspector/resources/extension-main.js. (fetchTests.callback): (fetchTests): (runTests): (onTestsDone): (dispatchOnFrontend.callbackWrapper): (dispatchOnFrontend): (callbackAndNextTest.callbackWrapper): (callbackAndNextTest):
  • http/tests/inspector/resources/extension-panel.html: Renamed from LayoutTests/inspector/resources/extension-panel.html.
  • http/tests/inspector/resources/extension-sidebar.html: Renamed from LayoutTests/inspector/resources/extension-sidebar.html.
  • inspector/extensions-api-expected.txt:
  • inspector/extensions-api.html:
  • inspector/extensions-audits-api.html:
  • inspector/extensions-audits.html:
  • inspector/extensions-eval.html:
  • inspector/extensions-events.html:
  • inspector/extensions-resources-expected.txt:
  • inspector/extensions-resources.html:
  • inspector/extensions.html:
  • platform/chromium/test_expectations.txt:
Note: See TracTimeline for information about the timeline view.