Timeline
Oct 26, 2015:
- 10:34 PM WebKitGTK/2.10.x edited by
- Start 2.10.4 proposals (diff)
- 10:22 PM Changeset in webkit [191620] by
-
- 18 edits in trunk/Source
Make IDBKeyData from a struct to a class.
https://bugs.webkit.org/show_bug.cgi?id=150576
Reviewed by Alex Christensen.
Source/WebCore:
No new tests (No change in behavior).
- Modules/indexeddb/IDBKeyData.cpp:
(WebCore::IDBKeyData::IDBKeyData):
(WebCore::IDBKeyData::maybeCreateIDBKey):
(WebCore::IDBKeyData::isolatedCopy):
(WebCore::IDBKeyData::encode):
(WebCore::IDBKeyData::decode):
(WebCore::IDBKeyData::compare):
(WebCore::IDBKeyData::loggingString):
(WebCore::IDBKeyData::setArrayValue):
(WebCore::IDBKeyData::setStringValue):
(WebCore::IDBKeyData::setDateValue):
(WebCore::IDBKeyData::setNumberValue):
- Modules/indexeddb/IDBKeyData.h:
(WebCore::IDBKeyData::IDBKeyData):
(WebCore::IDBKeyData::minimum):
(WebCore::IDBKeyData::maximum):
(WebCore::IDBKeyData::isNull):
(WebCore::IDBKeyData::type):
(WebCore::IDBKeyData::encode):
(WebCore::IDBKeyData::decode):
- Modules/indexeddb/legacy/IDBTransactionBackendOperations.cpp:
(WebCore::GetOperation::perform):
- bindings/js/IDBBindingUtilities.h:
- platform/CrossThreadCopier.h:
Source/WebKit2:
- DatabaseProcess/IndexedDB/DatabaseProcessIDBConnection.h:
- DatabaseProcess/IndexedDB/DatabaseProcessIDBConnection.messages.in:
- DatabaseProcess/IndexedDB/IDBSerialization.h:
- DatabaseProcess/IndexedDB/UniqueIDBDatabase.cpp:
(WebKit::UniqueIDBDatabase::putRecordInBackingStore):
- DatabaseProcess/IndexedDB/UniqueIDBDatabase.h:
- DatabaseProcess/IndexedDB/UniqueIDBDatabaseBackingStore.h:
- DatabaseProcess/IndexedDB/sqlite/SQLiteIDBCursor.cpp:
(WebKit::buildIndexStatement):
(WebKit::buildObjectStoreStatement):
(WebKit::SQLiteIDBCursor::establishStatement):
(WebKit::SQLiteIDBCursor::createSQLiteStatement):
(WebKit::SQLiteIDBCursor::resetAndRebindStatement):
(WebKit::SQLiteIDBCursor::iterate):
- DatabaseProcess/IndexedDB/sqlite/UniqueIDBDatabaseBackingStoreSQLite.cpp:
(WebKit::UniqueIDBDatabaseBackingStoreSQLite::createIndex):
- WebProcess/Databases/IndexedDB/WebIDBServerConnection.cpp:
(WebKit::WebIDBServerConnection::didPutRecord):
- WebProcess/Databases/IndexedDB/WebIDBServerConnection.h:
- WebProcess/Databases/IndexedDB/WebIDBServerConnection.messages.in:
- 10:18 PM EFLWebKit edited by
- (diff)
- 10:16 PM Changeset in webkit [191619] by
-
- 2 edits in trunk/Source/WebCore
[GTK] [Stable] Build GL texture mapper only if USE_TEXTURE_MAPPER_GL
https://bugs.webkit.org/show_bug.cgi?id=148606
Unreviewed, build-only change.
No new tests, build-only change.
Patch by Philip Chimento <philip.chimento@gmail.com> on 2015-10-26
- PlatformGTK.cmake: Remove sources requiring GL from list of
sources that are built when USE_TEXTURE_MAPPER is true, and add a
separate condition within the USE_TEXTURE_MAPPER condition to
build those sources when USE_TEXTURE_MAPPER_GL is true.
- 10:15 PM Changeset in webkit [191618] by
-
- 2 edits in trunk/Source/WebKit2
[GTK] [Stable] InstallMissingMediaPluginsPermissionRequest not defined when building without GStreamer
https://bugs.webkit.org/show_bug.cgi?id=148607
Unreviewed, build fix.
Patch by Philip Chimento <philip.chimento@gmail.com> on 2015-10-26
- UIProcess/gstreamer/InstallMissingMediaPluginsPermissionRequest.h:
Add a stub for the InstallMissingMediaPluginsPermissionRequest class
for the case when video is disabled or not using GStreamer. It's OK
that this class does nothing, because the associated C API contains
an assert_not_reached if video is disabled. We just need to define
the symbol so that the function signature will compile.
- 9:03 PM Changeset in webkit [191617] by
-
- 7 edits in trunk/Source/WebCore
Remove redundant GraphicsContext::clip(const Path&, WindRule)
https://bugs.webkit.org/show_bug.cgi?id=150584
Reviewed by Tim Horton.
GraphicsContext had both clipPath(const Path&, WindRule) and clip(const Path&, WindRule),
which were mostly the same other than GraphicsContext::clipPath() not clipping if the path
was empty (added, I think by mistake, in r72926), and not calling m_data->clip().
Make clipPath() be the winner, and have it behave like clip() with empty paths, and call m_data->clip().
- platform/graphics/GraphicsContext.cpp:
(WebCore::GraphicsContext::clipRoundedRect):
- platform/graphics/GraphicsContext.h:
- platform/graphics/cairo/GraphicsContextCairo.cpp:
(WebCore::GraphicsContext::clipPath):
(WebCore::GraphicsContext::clip): Deleted.
- platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::clipPath):
(WebCore::GraphicsContext::canvasClip):
(WebCore::GraphicsContext::clip): Deleted.
- rendering/RenderBoxModelObject.cpp:
(WebCore::RenderBoxModelObject::paintBoxShadow): Making a path, calling addRoundedRect() and then clipping
to the path is the same as context.clipRoundedRect().
- rendering/mathml/RenderMathMLRadicalOperator.cpp:
(WebCore::RenderMathMLRadicalOperator::paint):
- 5:55 PM Changeset in webkit [191616] by
-
- 2 edits in trunk/Tools
Add myself to the reviewers list
https://bugs.webkit.org/show_bug.cgi?id=150581
Unreviewed.
- Scripts/webkitpy/common/config/contributors.json:
- 5:25 PM Changeset in webkit [191615] by
-
- 2 edits in trunk/Source/WebInspectorUI
Web Inspector: WebInspector.Object can dispatch constructor-level events multiple times
https://bugs.webkit.org/show_bug.cgi?id=150579
Reviewed by Timothy Hatcher.
Use
hasOwnPropertywhen checking for constructor event listeners when walking the
prototype chain. This prevents listeners registered with a base class constructor
from being dispatched multiple times by getting picked up higher in the prototype chain.
- UserInterface/Base/Object.js:
(WebInspector.Object.prototype.dispatchEventToListeners.dispatch):
(WebInspector.Object.prototype.dispatchEventToListeners):
(WebInspector.Object):
- 5:11 PM Changeset in webkit [191614] by
-
- 2 edits in trunk/Source/WebInspectorUI
Web Inspector: Hundreds of failed assertions after switching to Rendering Frames after recording complete
https://bugs.webkit.org/show_bug.cgi?id=150568
Reviewed by Timothy Hatcher.
When the TimelineRecordingContentView responds to the current content view changing,
the TimelineOverview may be swapped out (if switching from a Timelines content view to a
Rendering Frames content view). This patch installs a new overview (if it's changing) prior
to setting the TimelineSidebarPanel's tree outline, as setting the tree outline forces
filters to run.
Filtering tree elements requires that the timeline overview is up to date, which was the
cause the assertion deluge.
- UserInterface/Views/TimelineRecordingContentView.js:
(WebInspector.TimelineRecordingContentView.prototype._currentContentViewDidChange):
- 5:08 PM Changeset in webkit [191613] by
-
- 2 edits in trunk/Source/WebInspectorUI
Web Inspector: Spacebar to start recording should not cause system beep
https://bugs.webkit.org/show_bug.cgi?id=150573
Patch by Joseph Pecoraro <Joseph Pecoraro> on 2015-10-26
Reviewed by Timothy Hatcher.
- UserInterface/Views/TimelineSidebarPanel.js:
(WebInspector.TimelineSidebarPanel.prototype._toggleRecordingOnSpacebar):
(WebInspector.TimelineSidebarPanel.prototype._toggleNewRecordingOnSpacebar):
The keyboard shortcuts do not implicitly prevent default because they may bail.
So in cases where they do handle the key, prevent default to prevent system beeps.
- 4:53 PM Changeset in webkit [191612] by
-
- 5 edits in trunk/Source/WebInspectorUI
Web Inspector: Cleanup sidebar panels, reduce
deleteand use Maps instead of objects
https://bugs.webkit.org/show_bug.cgi?id=150548
Reviewed by Timothy Hatcher.
- UserInterface/Views/LayerTreeDetailsSidebarPanel.js:
(WebInspector.LayerTreeDetailsSidebarPanel):
(WebInspector.LayerTreeDetailsSidebarPanel.prototype._updateDataGrid):
(WebInspector.LayerTreeDetailsSidebarPanel.prototype._dataGridNodeForLayer):
- UserInterface/Views/NavigationSidebarPanel.js:
(WebInspector.NavigationSidebarPanel):
(WebInspector.NavigationSidebarPanel.restoreStateFromCookie.finalAttemptToRestoreViewStateFromCookie):
(WebInspector.NavigationSidebarPanel.restoreStateFromCookie):
(WebInspector.NavigationSidebarPanel.prototype.applyFiltersToTreeElement):
(WebInspector.NavigationSidebarPanel.prototype._updateContentOverflowShadowVisibility):
(WebInspector.NavigationSidebarPanel.prototype._checkElementsForPendingViewStateCookie):
Switched to using Symbol() to set external properties on tree elements.
- UserInterface/Views/ScopeChainDetailsSidebarPanel.js:
(WebInspector.ScopeChainDetailsSidebarPanel.prototype._generateCallFramesSection):
- UserInterface/Views/StorageSidebarPanel.js:
(WebInspector.StorageSidebarPanel):
(WebInspector.StorageSidebarPanel.prototype._addDatabase):
(WebInspector.StorageSidebarPanel.prototype._addIndexedDatabase):
(WebInspector.StorageSidebarPanel.prototype._addFrameManifest):
(WebInspector.StorageSidebarPanel.prototype._storageCleared):
- 4:51 PM Changeset in webkit [191611] by
-
- 2 edits in trunk/LayoutTests
Removing duplicated test expectations and removing debug flag from flaky fast/canvas/webgl tests
https://bugs.webkit.org/show_bug.cgi?id=150367
Unreviewed test gardening.
- platform/mac-wk1/TestExpectations:
- 4:36 PM Changeset in webkit [191610] by
-
- 9 edits2 adds in trunk
Floating box is misplaced after content change.
https://bugs.webkit.org/show_bug.cgi?id=150271
Reviewed by David Hyatt.
Collapse anonymous block when as the result of a sibling removal only floating siblings are left.
Source/WebCore:
Test: fast/block/collapse-anon-block-with-float-siblings-only.html
- rendering/RenderBlock.cpp:
(WebCore::canCollapseAnonymousBlock):
(WebCore::canMergeContiguousAnonymousBlocks):
(WebCore::RenderBlock::collapseAnonymousBoxChild):
(WebCore::RenderBlock::removeChild):
(WebCore::canMergeAnonymousBlock): Deleted.
- rendering/RenderBlock.h:
- rendering/RenderElement.cpp:
(WebCore::RenderElement::removeAnonymousWrappersForInlinesIfNecessary):
LayoutTests:
- fast/block/collapse-anon-block-with-float-siblings-only-expected.html: Added.
- fast/block/collapse-anon-block-with-float-siblings-only.html: Added.
- 4:08 PM Changeset in webkit [191609] by
-
- 3 edits2 adds in trunk
Null dereference loading Blink layout test editing/execCommand/crash-replacing-list-by-list.html
https://bugs.webkit.org/show_bug.cgi?id=149288
<rdar://problem/22746310>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-26
Reviewed by Chris Dumez.
Source/WebCore:
This is a merge of Blink r170821:
https://codereview.chromium.org/220233013
Test: editing/execCommand/crash-replacing-list-by-list.html
- editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplaceSelectionCommand::insertAsListItems):
LayoutTests:
- editing/execCommand/crash-replacing-list-by-list-expected.txt: Added.
- editing/execCommand/crash-replacing-list-by-list.html: Added.
- 4:05 PM Changeset in webkit [191608] by
-
- 3 edits2 adds in trunk
Null dereference loading Blink layout test editing/execCommand/insert-image-changing-visibility-crash.html
https://bugs.webkit.org/show_bug.cgi?id=150208
<rdar://problem/23137109>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-26
Reviewed by Chris Dumez.
Source/WebCore:
This is a merge from Blink r168502:
https://codereview.chromium.org/183893018
Test: editing/execCommand/insert-image-changing-visibility-crash.html
- editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplaceSelectionCommand::doApply):
We should check again the visibility of the inserted position again since
the replacement might change the visibility.
LayoutTests:
- editing/execCommand/insert-image-changing-visibility-crash-expected.txt: Added.
- editing/execCommand/insert-image-changing-visibility-crash.html: Added.
- 3:58 PM Changeset in webkit [191607] by
-
- 1 edit in trunk/Source/WebKit2/ChangeLog
Pipe custom context menu handling through to the UIDelegate object
https://bugs.webkit.org/show_bug.cgi?id=150572
Reviewed by Tim Horton.
- UIProcess/API/APIContextMenuClient.h:
(API::ContextMenuClient::menuFromProposedMenu):
- UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView setUIDelegate:]):
- UIProcess/Cocoa/UIDelegate.h:
- UIProcess/Cocoa/UIDelegate.mm:
(WebKit::UIDelegate::createContextMenuClient):
(WebKit::UIDelegate::ContextMenuClient::ContextMenuClient):
(WebKit::UIDelegate::ContextMenuClient::~ContextMenuClient):
(WebKit::UIDelegate::ContextMenuClient::menuFromProposedMenu):
- UIProcess/mac/WebContextMenuProxyMac.mm:
(WebKit::WebContextMenuProxyMac::showContextMenu):
- 3:51 PM Changeset in webkit [191606] by
-
- 4 edits in trunk/Source/WebKit2
WKView being inside WKWebView leads to weird API issues
https://bugs.webkit.org/show_bug.cgi?id=150174
Reviewed by Anders Carlsson.
- UIProcess/API/mac/WKView.mm:
(-[WKView mouseDown:]):
(-[WKView mouseDragged:]):
(-[WKView draggedImage:endedAt:operation:]):
(-[WKView draggingEntered:]):
(-[WKView draggingUpdated:]):
(-[WKView draggingExited:]):
(-[WKView prepareForDragOperation:]):
(-[WKView performDragOperation:]):
(-[WKView _hitTest:dragTypes:]):
(-[WKView initWithFrame:processPool:configuration:webView:]):
(-[WKView applicationFlags:]): Deleted.
(maybeCreateSandboxExtensionFromPasteboard): Deleted.
(createSandboxExtensionsForFileUpload): Deleted.
(-[WKView _registerDraggedTypes]): Deleted.
- UIProcess/Cocoa/WebViewImpl.h:
(WebKit::WebViewImpl::ignoresMouseDraggedEvents):
- UIProcess/Cocoa/WebViewImpl.mm:
(WebKit::WebViewImpl::setIgnoresMouseDraggedEvents):
(WebKit::WebViewImpl::draggedImage):
(WebKit::applicationFlagsForDrag):
(WebKit::WebViewImpl::draggingEntered):
(WebKit::WebViewImpl::draggingUpdated):
(WebKit::WebViewImpl::draggingExited):
(WebKit::WebViewImpl::prepareForDragOperation):
(WebKit::maybeCreateSandboxExtensionFromPasteboard):
(WebKit::createSandboxExtensionsForFileUpload):
(WebKit::WebViewImpl::performDragOperation):
(WebKit::WebViewImpl::hitTestForDragTypes):
(WebKit::WebViewImpl::registerDraggedTypes):
Move some drag-related things to WebViewImpl.
- 3:49 PM Changeset in webkit [191605] by
-
- 3 edits2 adds in trunk
Null dereference loading Blink layout test editing/execCommand/insert-ordered-list-crash.html
https://bugs.webkit.org/show_bug.cgi?id=150209
<rdar://problem/23137198>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-26
Reviewed by Chris Dumez.
Source/WebCore:
This is a merge from Blink r168006:
https://codereview.chromium.org/181283002
Test: editing/execCommand/insert-ordered-list-crash.html
- editing/InsertListCommand.cpp:
(WebCore::InsertListCommand::doApply):
setEndingSelection() might change endingSelection(), we should check again.
LayoutTests:
- editing/execCommand/insert-ordered-list-crash-expected.txt: Added.
- editing/execCommand/insert-ordered-list-crash.html: Added.
- 3:03 PM Changeset in webkit [191604] by
-
- 3 edits2 adds in trunk
Null dereference loading Blink layout test editing/execCommand/insert-html-to-document-element-crash.html
https://bugs.webkit.org/show_bug.cgi?id=149294
<rdar://problem/22746657>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-26
Reviewed by Darin Adler.
Source/WebCore:
This is a merge of Blink r175019:
https://codereview.chromium.org/300143012
Test: editing/execCommand/insert-html-to-document-element-crash.html
- editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplaceSelectionCommand::removeRedundantStylesAndKeepStyleSpanInline):
check nullable value |element->parentNode()| before using it.
LayoutTests:
- editing/execCommand/insert-html-to-document-element-crash-expected.txt: Added.
- editing/execCommand/insert-html-to-document-element-crash.html: Added.
- 3:01 PM Changeset in webkit [191603] by
-
- 3 edits2 adds in trunk
Null dereference loading Blink layout test editing/execCommand/indent-nested-blockquotes-crash.html
https://bugs.webkit.org/show_bug.cgi?id=149291
<rdar://problem/22746473>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-26
Reviewed by Darin Adler.
Source/WebCore:
This is a merge of Blink r172967:
https://codereview.chromium.org/251723003
Test: editing/execCommand/indent-nested-blockquotes-crash.html
- editing/CompositeEditCommand.cpp:
(WebCore::CompositeEditCommand::insertNodeAfter):
LayoutTests:
- editing/execCommand/indent-nested-blockquotes-crash-expected.txt: Added.
- editing/execCommand/indent-nested-blockquotes-crash.html: Added.
- 2:45 PM Changeset in webkit [191602] by
-
- 3 edits in trunk/Source/JavaScriptCore
Add logging to warn about under-estimated FTL inline cache sizes.
https://bugs.webkit.org/show_bug.cgi?id=150570
Reviewed by Geoffrey Garen.
Added 2 options:
- JSC_dumpFailedICSizing - dumps an error message if the FTL encounters IC size estimates that are less than the actual needed code size.
This option is useful for when we add a new IC and want to compute an
estimated size for the IC. To do this:
- Build jsc for the target port with a very small IC size (enough to store the jump instruction needed for the out of line fallback implementation).
- Implement a test suite with scenarios that exercise all the code paths in the IC generator.
- Run jsc with JSC_dumpFailedICSizing=true on the test suite.
- The max value reported by the dumps will be the worst case size needed to store the IC. We should use this value for our estimate.
- Update the IC's estimated size and rebuild jsc.
- Re-run (3) and confirm that there are no more error messages about the IC sizing.
- JSC_assertICSizing - same as JSC_dumpFailedICSizing except that it also crashes the VM each time it encounters an inadequate IC size estimate.
This option is useful for regression testing to ensure that our estimates
do not regress.
- ftl/FTLCompile.cpp:
(JSC::FTL::generateInlineIfPossibleOutOfLineIfNot):
- runtime/Options.h:
- 2:45 PM Changeset in webkit [191601] by
-
- 4 edits in trunk
make analyzeshould build using the debug configuration
https://bugs.webkit.org/show_bug.cgi?id=150571
Reviewed by Lucas Forschler.
.:
- Makefile.shared:
WebKitLibraries:
- Makefile:
- 2:41 PM Changeset in webkit [191600] by
-
- 6 edits in trunk/Source/WebKit2
Pipe custom context menu handling through to the UIDelegate object
https://bugs.webkit.org/show_bug.cgi?id=150572
Reviewed by Tim Horton.
- UIProcess/API/APIContextMenuClient.h:
(API::ContextMenuClient::menuFromProposedMenu):
- UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView setUIDelegate:]):
- UIProcess/Cocoa/UIDelegate.h:
- UIProcess/Cocoa/UIDelegate.mm:
(WebKit::UIDelegate::createContextMenuClient):
(WebKit::UIDelegate::ContextMenuClient::ContextMenuClient):
(WebKit::UIDelegate::ContextMenuClient::~ContextMenuClient):
(WebKit::UIDelegate::ContextMenuClient::menuFromProposedMenu):
- UIProcess/mac/WebContextMenuProxyMac.mm:
(WebKit::WebContextMenuProxyMac::showContextMenu):
- 2:09 PM Changeset in webkit [191599] by
-
- 1 edit in trunk/LayoutTests/platform/mac-wk1/TestExpectations
2015-10-26 Ryan Haddad <Ryan Haddad>
Marking svg/repaint/add-background-property-on-root.html as flaky on mac-wk1 due to timeouts
https://bugs.webkit.org/show_bug.cgi?id=150564
Unreviewed test gardening.
- platform/mac-wk1/TestExpectations:
- 2:07 PM Changeset in webkit [191598] by
-
- 11 edits2 copies in trunk/Source/WebCore
Modern IDB: Backing store objectStores (plumbing for b/150468).
https://bugs.webkit.org/show_bug.cgi?id=150543
Reviewed by Alex Christensen.
No new tests (No change in behavior, plumbing for future testability)
- CMakeLists.txt:
- WebCore.xcodeproj/project.pbxproj:
- Modules/indexeddb/server/IDBBackingStore.h:
- Modules/indexeddb/server/MemoryBackingStoreTransaction.cpp:
(WebCore::IDBServer::MemoryBackingStoreTransaction::addNewObjectStore):
(WebCore::IDBServer::MemoryBackingStoreTransaction::abort):
(WebCore::IDBServer::MemoryBackingStoreTransaction::commit):
(WebCore::IDBServer::MemoryBackingStoreTransaction::finish):
- Modules/indexeddb/server/MemoryBackingStoreTransaction.h:
(WebCore::IDBServer::MemoryBackingStoreTransaction::isWriting):
- Modules/indexeddb/server/MemoryIDBBackingStore.cpp:
(WebCore::IDBServer::MemoryIDBBackingStore::createObjectStore):
(WebCore::IDBServer::MemoryIDBBackingStore::removeObjectStoreForVersionChangeAbort):
- Modules/indexeddb/server/MemoryIDBBackingStore.h:
- Modules/indexeddb/server/MemoryObjectStore.cpp:
(WebCore::IDBServer::MemoryObjectStore::create):
(WebCore::IDBServer::MemoryObjectStore::MemoryObjectStore):
(WebCore::IDBServer::MemoryObjectStore::~MemoryObjectStore):
(WebCore::IDBServer::MemoryObjectStore::writeTransactionStarted):
(WebCore::IDBServer::MemoryObjectStore::writeTransactionFinished):
- Modules/indexeddb/server/MemoryObjectStore.h:
(WebCore::IDBServer::MemoryObjectStore::info):
- Modules/indexeddb/server/UniqueIDBDatabase.cpp:
(WebCore::IDBServer::UniqueIDBDatabase::createObjectStore):
- Modules/indexeddb/shared/IDBError.cpp:
(WebCore::idbErrorName):
(WebCore::idbErrorDescription):
- Modules/indexeddb/shared/IDBError.h:
- 1:16 PM Changeset in webkit [191597] by
-
- 3 edits2 adds in trunk
Null dereference loading Blink layout test editing/execCommand/indent-inline-box-crash.html
https://bugs.webkit.org/show_bug.cgi?id=149290
<rdar://problem/22746435>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-26
Reviewed by Alex Christensen.
Source/WebCore:
This is a merge of Blink r174952:
https://codereview.chromium.org/297203004
Test: editing/execCommand/indent-inline-box-crash.html
- editing/IndentOutdentCommand.cpp:
(WebCore::IndentOutdentCommand::tryIndentingAsListItem):
LayoutTests:
- editing/execCommand/indent-inline-box-crash-expected.txt: Added.
- editing/execCommand/indent-inline-box-crash.html: Added.
- 1:08 PM Changeset in webkit [191596] by
-
- 3 edits2 adds in trunk
Null dereference loading Blink layout test editing/execCommand/indent-no-visible-contents-crash.html
https://bugs.webkit.org/show_bug.cgi?id=149292
<rdar://problem/22746530>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-26
Reviewed by Alex Christensen.
Source/WebCore:
This is a merge of Blink r176735:
https://codereview.chromium.org/349143002
Test: editing/execCommand/indent-no-visible-contents-crash.html
- editing/CompositeEditCommand.cpp:
(WebCore::CompositeEditCommand::moveParagraphWithClones):
Sometimes callers of this method will pass null startOfParagraphToMove endOfParagraphToMove, hence check them before proceeding.
LayoutTests:
- editing/execCommand/indent-no-visible-contents-crash-expected.txt: Added.
- editing/execCommand/indent-no-visible-contents-crash.html: Added.
- 1:01 PM Changeset in webkit [191595] by
-
- 2 edits in trunk/Source/WebKit2
Build fix when using NETWORK_SESSION after r191457.
- NetworkProcess/cocoa/NetworkSessionCocoa.mm:
(-[NetworkSessionDelegate URLSession:dataTask:didReceiveResponse:completionHandler:]):
Use resourceResponse.
- 12:48 PM Changeset in webkit [191594] by
-
- 5 edits1 add in trunk/Source/JavaScriptCore
r190735 Caused us to maybe trample the base's tag-GPR on 32-bit inline cache when the cache allocates a scratch register and then jumps to the slow path
https://bugs.webkit.org/show_bug.cgi?id=150532
Reviewed by Geoffrey Garen.
The base's tag register used to show up in the used register set
before r190735 because of how the DFG kept track of used register. I changed this
in my work on inline caching because we don't want to spill these registers
when we have a GetByIdFlush/PutByIdFlush and we use the used register set
as the metric of what to spill. That said, these registers should be locked
and not used as scratch registers by the scratch register allocator. The
reason is that our inline cache may fail and jump to the slow path. The slow
path then uses the base's tag register. If the inline cache used the base's tag
register as a scratch and the inline cache fails and jumps to the slow path, we
have a problem because the tag may now be trampled.
Note that this doesn't mean that we can't trample the base's tag register when making
a call. We can totally trample the register as long as the inline cache succeeds in a GetByIdFlush/PutByIdFlush.
The problem is only when we trample it and then jump to the slow path.
This patch fixes this bug by making StructureStubInfo keep track of the base's
tag GPR. PolymorphicAccess then locks this register when using the ScratchRegisterAllocator.
- bytecode/PolymorphicAccess.cpp:
(JSC::AccessCase::generate):
(JSC::PolymorphicAccess::regenerate):
- bytecode/StructureStubInfo.h:
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::compileIn):
- jit/JITInlineCacheGenerator.cpp:
(JSC::JITByIdGenerator::JITByIdGenerator):
- tests/stress/regress-150532.js: Added.
(assert):
(randomFunction):
(foo):
(i.switch):
- 12:20 PM Changeset in webkit [191593] by
-
- 3 edits in trunk/Source/WebKit2
Remove more dead context menu code
https://bugs.webkit.org/show_bug.cgi?id=150569
Reviewed by Tim Horton.
- UIProcess/API/APIContextMenuClient.h:
(API::ContextMenuClient::contextMenuDismissed): Deleted.
- UIProcess/API/C/WKPage.cpp:
(WKPageSetPageContextMenuClient): Deleted.
- 12:15 PM Changeset in webkit [191592] by
-
- 2 edits in trunk/Tools
2015-10-26 Ryan Haddad <Ryan Haddad>
Adding myself to contributors.json
- Scripts/webkitpy/common/config/contributors.json:
- 12:01 PM Changeset in webkit [191591] by
-
- 10 edits in trunk/Source
Remove dead context menu code
https://bugs.webkit.org/show_bug.cgi?id=150567
Reviewed by Tim Horton.
Source/WebCore:
- loader/EmptyClients.h:
- page/ContextMenuClient.h:
- page/ContextMenuController.cpp:
(WebCore::ContextMenuController::showContextMenu): Deleted.
Source/WebKit/mac:
- WebCoreSupport/WebContextMenuClient.h:
- WebCoreSupport/WebContextMenuClient.mm:
(WebContextMenuClient::getCustomMenuFromDefaultItems): Deleted.
Source/WebKit2:
- WebProcess/WebCoreSupport/WebContextMenuClient.cpp:
(WebKit::WebContextMenuClient::getCustomMenuFromDefaultItems): Deleted.
- WebProcess/WebCoreSupport/WebContextMenuClient.h:
- 11:39 AM Changeset in webkit [191590] by
-
- 4 edits6 adds in trunk
Implement 'round' and 'space' values for border-image
https://bugs.webkit.org/show_bug.cgi?id=14185
Reviewed by Tim Horton.
Source/WebCore:
Add support for "round" and "space" values for border-image-repeat.
Following "stretch" and "repeat", the code is added to Image::drawTiled().
For "round", we compute an integral number of copies of the image that fit,
and then adjust the tile scale.
For "space", we also compute an integral number N of copies that will fit,
and then divide the remaining space amongst N+1 gaps, adjusting the tiling
phase so that with an even number of images, a gap is centered.
Tests: fast/borders/border-image-round.html
fast/borders/border-image-space.html
- platform/graphics/Image.cpp:
(WebCore::Image::drawTiled):
- platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::drawPattern):
LayoutTests:
Ref tests that clip, leaving relevant parts of the images.
- fast/borders/border-image-round-expected.html: Added.
- fast/borders/border-image-round.html: Added.
- fast/borders/border-image-space-expected.html: Added.
- fast/borders/border-image-space.html: Added.
- fast/borders/resources/big-border-image-lines.png: Added.
- fast/borders/resources/big-border-image.png: Added.
- 11:26 AM Changeset in webkit [191589] by
-
- 3 edits2 adds in trunk
Incorrect repeated background-size behavior in keyframes
https://bugs.webkit.org/show_bug.cgi?id=150309
Reviewed by Zalan Bujtas.
Source/WebCore:
After computing the style for a keyframe, we failed to propagate unset
fill-layer properties to all layers, which caused incorrect behavior when
there were multiple background images, but only one value on a background
property in the keyframes.
Fix by calling adjustRenderStyle() on keyframe styles, which invokes
style.adjustBackgroundLayers() which fixes the bug.
Test: animations/multiple-backgrounds.html
- css/StyleResolver.cpp:
(WebCore::StyleResolver::styleForKeyframe):
LayoutTests:
- animations/multiple-backgrounds-expected.html: Added.
- animations/multiple-backgrounds.html: Added.
- 11:24 AM Changeset in webkit [191588] by
-
- 5 edits in trunk
Don't expose the whitelist/blacklist in _WKUserStyleSheet
https://bugs.webkit.org/show_bug.cgi?id=150566
Reviewed by Anders Carlsson.
Source/WebKit2:
- UIProcess/API/Cocoa/_WKUserStyleSheet.h:
- UIProcess/API/Cocoa/_WKUserStyleSheet.mm:
(-[_WKUserStyleSheet initWithSource:forMainFrameOnly:]):
(toWTFStrings): Deleted.
(-[_WKUserStyleSheet initWithSource:whitelistedURLPatterns:blacklistedURLPatterns:forMainFrameOnly:]): Deleted.
(-[_WKUserStyleSheet whitelistedURLPatterns]): Deleted.
(-[_WKUserStyleSheet blacklistedURLPatterns]): Deleted.
Tools:
- TestWebKitAPI/Tests/WebKit2Cocoa/UserContentController.mm:
(TEST):
- 11:08 AM Changeset in webkit [191587] by
-
- 5 edits in trunk
Indexing an object with an integer that is not a supported property index should not call the named property getter
https://bugs.webkit.org/show_bug.cgi?id=148871
<rdar://problem/22589952>
Reviewed by Darin Adler.
LayoutTests/imported/w3c:
Rebaseline W3C HTML test now that more checks are passing.
- web-platform-tests/html/semantics/forms/the-form-element/form-elements-matches-expected.txt:
Source/WebCore:
Indexing an object with an integer that is not a supported property
index should not call the named property getter, as per the Web IDL
specification:
https://heycam.github.io/webidl/#idl-indexed-properties (Note in blue)
Firefox and Chrome both already behave according to the specification
here so this patch aligns our behavior with other browsers as well.
No new tests, already covered by existing test.
- bindings/scripts/CodeGeneratorJS.pm:
(GenerateGetOwnPropertySlotBody):
(GenerateImplementation):
- bindings/scripts/test/JS/JSTestEventTarget.cpp:
(WebCore::JSTestEventTarget::getOwnPropertySlot):
(WebCore::JSTestEventTarget::getOwnPropertySlotByIndex): Deleted.
(WebCore::jsTestEventTargetConstructor): Deleted.
- 9:44 AM Changeset in webkit [191586] by
-
- 21 edits1 add in trunk/PerformanceTests
Add an option to output the results of the graphics benchmark in JSON format
https://bugs.webkit.org/show_bug.cgi?id=150484
<rdar://problem/23243721>
Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2015-10-26
Reviewed by Darin Adler.
- Animometer/resources/extensions.js:
(ResultsDashboard): A new class to hold the iterations results.
(ResultsDashboard.prototype.push): Appends an iteration results;
(ResultsDashboard.prototype.toJSON): Converts the iterations results to JSON format.
(RecordTable.prototype.clear): Clears the results table.
(RecordTable.prototype._showTitles): Shows the header titles and appends the sub-titles to a queue.
(RecordTable.prototype._showHeader): Shows the table header titles.
(RecordTable.prototype._showEmpty): Shows an empty table cell.
(RecordTable.prototype._showValue): Shows a number value in the results table.
(RecordTable.prototype._showSamples): Shows a button for the sampled data graph.
(RecordTable.prototype._showTest): Shows the results of a single test.
(RecordTable.prototype._showSuite): Shows the results of a single suite.
(RecordTable.prototype.showRecord): Shows a single iteration for a single test.
(RecordTable.prototype.showIterations): Shows the results of all the suites of the iterations.
(ResultsTable): RecordTable was renamed to ResultsTable.
(ResultsTable.prototype.clear): Clears the table element.
(ResultsTable.prototype._showHeaderRow): Shows a row in the results table header.
(ResultsTable.prototype._showHeader): Shows the results table header.
(ResultsTable.prototype._showEmpty): Shows an empty table cell.
(ResultsTable.prototype._showText): Shows a string in a new table cell.
(ResultsTable.prototype._showFixedNumber): Shows a number in a new table cell.
(ResultsTable.prototype._showGraph): Shows a button for the sampled data graph.
(ResultsTable.prototype._showJSON): Shows a button for the sampled data JSON.
(ResultsTable.prototype._showTest): Shows the results of a single test.
(ResultsTable.prototype._showSuite): Shows the results of a single suite.
(ResultsTable.prototype._showIteration): Shows the results of a single iteration.
(ResultsTable.prototype.showRecord): Shows a single iteration for a single test.
(ResultsTable.prototype.showIterations): Shows all the results.
(RecordTable): Deleted.
(RecordTable.prototype.clear): Deleted.
(RecordTable.prototype._showTitles): Deleted.
(RecordTable.prototype._showHeader): Deleted.
(RecordTable.prototype._showEmpty): Deleted.
(RecordTable.prototype._showValue): Deleted.
(RecordTable.prototype._showSamples): Deleted.
(RecordTable.prototype._showTest): Deleted.
(RecordTable.prototype._showSuite): Deleted.
(RecordTable.prototype.showRecord): Deleted.
(RecordTable.prototype.showIterations): Deleted.
- Animometer/resources/sampler.js:
(Sampler.prototype.startSampling): Use forEach.
(Sampler.prototype.sample): Use forEach.
(Sampler.prototype.toJSON): Converts the sampler data to JSON format.
- Animometer/resources/strings.js: Added.
This new file will be used to associate the strings used by the benchmark
with IDs. A string can be changed in one place without having to change
all the instances of this string in multiple files. There two groups of
strings in this file. The first one is used by the UI elements and the second
group is used when constructing the results JSON.
- Animometer/runner/animometer.html:
- Animometer/runner/resources/animometer.css:
- Animometer/runner/resources/animometer.js:
(window.benchmarkRunnerClient.willAddTestFrame):
(window.benchmarkRunnerClient.willStartFirstIteration):
(window.benchmarkRunnerClient.didRunSuites):
(window.benchmarkRunnerClient.didFinishLastIteration):
Make benchmarkRunnerClient uses ResultsDashboard instead of _iterationsSamplers
Get the JSON from ResultsDashboard.toJSON() and pass it to ResultsTable.showIterations().
Also set the textContent of the "#json" textarea with the results JSON.
(showResults): Delete unneeded code.
(showJson): Shows the "json" section.
(showTestGraph): Rename showGraph() to be showTestGraph().
(showTestJSON): Shows the JSON of a single testResults.
(showGraph): Deleted.
- Animometer/runner/resources/tests.js:
Use the string table instead of putting literal strings.
- Animometer/tests/resources/stage.js:
(StageBenchmark.prototype.showResults):
Fix the parameters which are passed to RecordTable.showRecord().
- Animometer/tests/bouncing-particles/bouncing-canvas-images.html:
- Animometer/tests/bouncing-particles/bouncing-canvas-shapes.html:
- Animometer/tests/bouncing-particles/bouncing-css-images.html:
- Animometer/tests/bouncing-particles/bouncing-css-shapes.html:
- Animometer/tests/bouncing-particles/bouncing-svg-images.html:
- Animometer/tests/bouncing-particles/bouncing-svg-shapes.html:
- Animometer/tests/examples/canvas-electrons.html:
- Animometer/tests/examples/canvas-stars.html:
- Animometer/tests/simple/simple-canvas-paths.html:
- Animometer/tests/template/template-canvas.html:
- Animometer/tests/template/template-css.html:
- Animometer/tests/template/template-svg.html:
- Animometer/tests/text/layering-text.html:
Include the new strings.js file in all the test files.
- 8:59 AM Changeset in webkit [191585] by
-
- 1 edit3 adds in trunk/Websites/webkit.org
Add images needed for shadow DOM blog post
https://bugs.webkit.org/show_bug.cgi?id=150549
Reviewed by Timothy Hatcher.
Added images.
- blog-files/introducing-shadow-dom: Added.
- blog-files/introducing-shadow-dom/commit-queue-contact.png: Added.
- blog-files/introducing-shadow-dom/progress-bar.png: Added.
- 8:09 AM Changeset in webkit [191584] by
-
- 8 edits in trunk
[Streams API] Implement abort method on writable streams
https://bugs.webkit.org/show_bug.cgi?id=150444
Reviewed by Darin Adler.
Source/WebCore:
Abort method on writable streams implemented according to the spec.
Current test set suffices. Expectations are updated accordingly.
- Modules/streams/StreamInternals.js:
(promiseInvokeOrFallbackOrNoop): Implemented according to the spec.
- Modules/streams/WritableStream.js:
(abort): Implemented according to the spec.
LayoutTests:
Test expectations updated.
- streams/reference-implementation/bad-underlying-sinks-expected.txt:
- streams/reference-implementation/brand-checks-expected.txt:
- streams/reference-implementation/pipe-to-expected.txt:
- streams/reference-implementation/writable-stream-abort-expected.txt:
- 5:04 AM Changeset in webkit [191583] by
-
- 4 edits3 adds in trunk
Unreviewed, rolling out r191576.
.:
broke the http/tests/media tests
Reverted changeset:
"[GStreamer] Bump internal jhbuild versions to 1.6.0"
https://bugs.webkit.org/show_bug.cgi?id=149594
http://trac.webkit.org/changeset/191576
Tools:
broke
Reverted changeset:
"[GStreamer] Bump internal jhbuild versions to 1.6.0"
https://bugs.webkit.org/show_bug.cgi?id=149594
http://trac.webkit.org/changeset/191576
- 3:32 AM Changeset in webkit [191582] by
-
- 1 copy in releases/WebKitGTK/webkit-2.10.3
WebKitGTK+ 2.10.3
- 3:31 AM Changeset in webkit [191581] by
-
- 4 edits in releases/WebKitGTK/webkit-2.10
Unreviewed. Update OptionsGTK.cmake and NEWS for 2.10.3 release.
.:
- Source/cmake/OptionsGTK.cmake: Bump version numbers.
Source/WebKit2:
- gtk/NEWS: Add release notes for 2.10.3
- 2:31 AM Changeset in webkit [191580] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore
Merge r191549 - [TexMap] Fix a misused flag for GstGL
https://bugs.webkit.org/show_bug.cgi?id=150545
Reviewed by Žan Doberšek.
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
(WebCore::MediaPlayerPrivateGStreamerBase::paintToTextureMapper):
We should pass TextureMapperGL::Flags to the TextureMapperGL::drawTexture instead of
BitmapTexture::Flags.
- 2:30 AM Changeset in webkit [191579] by
-
- 5 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore
Merge r191541 - [TexMap] Clean up BitmapTexture and BitmapTextureGL.
https://bugs.webkit.org/show_bug.cgi?id=143298
Reviewed by Žan Doberšek.
No new tests, this is just a refactor.
- platform/graphics/texmap/BitmapTexture.h:
(WebCore::BitmapTexture::canReuseWith): Deleted.
Reuseability of a BitmapTexture is only decided by its size.
We can use size() instead of this method.
- platform/graphics/texmap/BitmapTextureGL.h:
(WebCore::driverSupportsExternalTextureBGRA): Deleted.
We do not have to check a suitable texture format in every
update/reset. It is enough to store the formats in construction time
and reuse them.
- 2:26 AM Changeset in webkit [191578] by
-
- 3 edits2 adds in releases/WebKitGTK/webkit-2.10
Merge r191540 - REGRESSION (r187121): Delayed instantaneous animations not honouring ' forwards' fill-mode
https://bugs.webkit.org/show_bug.cgi?id=150326
Reviewed by Darin Adler.
Source/WebCore:
With a zero-duration, delayed fill-forwards animation, we'd end up trying
to interpolate between the last and first keyframes, and picking the first
because AnimationBase::progress() had a special case for zero duration. Removing
this check fixes the bug.
Test: animations/fill-mode-forwards-zero-duration.html
- page/animation/AnimationBase.cpp:
(WebCore::AnimationBase::progress):
LayoutTests:
Test with a zero-duration, delayed fill-forwards animation.
- animations/fill-mode-forwards-zero-duration-expected.txt: Added.
- animations/fill-mode-forwards-zero-duration.html: Added.
- 2:25 AM Changeset in webkit [191577] by
-
- 16 edits3 adds in releases/WebKitGTK/webkit-2.10
Merge r191530 - REGRESSION (r179357-r179359): WebContent Crash using AOL Mail @ com.apple.JavascriptCore JSC::linkPolymorphicCall(JSC::ExecState*, JSC::CallLinkInfo&, JSC::CallVariant, JSC::RegisterPreservationMode) + 1584
https://bugs.webkit.org/show_bug.cgi?id=150513
Reviewed by Saam Barati.
Source/JavaScriptCore:
Add check in linkPolymorphicCall() to make sure we have a CodeBlock for the newly added variant.
If not, we turn the call into a virtual call.
The bug was caused by a stack overflow when preparing the function for execution. This properly
threw an exception, however linkPolymorphicCall() didn't check for this error case.
Added a new test function "failNextNewCodeBlock()" to test tools to simplify the testing.
- API/JSCTestRunnerUtils.cpp:
(JSC::failNextNewCodeBlock):
(JSC::numberOfDFGCompiles):
- API/JSCTestRunnerUtils.h:
- jit/Repatch.cpp:
(JSC::linkPolymorphicCall):
- jsc.cpp:
(GlobalObject::finishCreation):
(functionTransferArrayBuffer):
(functionFailNextNewCodeBlock):
(functionQuit):
- runtime/Executable.cpp:
(JSC::ScriptExecutable::prepareForExecutionImpl):
- runtime/TestRunnerUtils.cpp:
(JSC::optimizeNextInvocation):
(JSC::failNextNewCodeBlock):
(JSC::numberOfDFGCompiles):
- runtime/TestRunnerUtils.h:
- runtime/VM.h:
(JSC::VM::setFailNextNewCodeBlock):
(JSC::VM::getAndClearFailNextNewCodeBlock):
(JSC::VM::stackPointerAtVMEntry):
Tools:
Added a new test function, failNextNewCodeBlock() to simplify the writing of a regression test.
- DumpRenderTree/TestRunner.cpp:
(simulateWebNotificationClickCallback):
(failNextCodeBlock):
(numberOfDFGCompiles):
(TestRunner::staticFunctions):
- WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl:
- WebKitTestRunner/InjectedBundle/TestRunner.cpp:
(WTR::TestRunner::setBlockAllPlugins):
(WTR::TestRunner::failNextCodeBlock):
(WTR::TestRunner::numberOfDFGCompiles):
- WebKitTestRunner/InjectedBundle/TestRunner.h:
LayoutTests:
New regression test.
- js/regress-150513-expected.txt: Added.
- js/regress-150513.html: Added.
- js/script-tests/regress-150513.js: Added.
(test):
- resources/standalone-pre.js: Added failNextNewCodeBlock to testRunner object.
- 1:57 AM Changeset in webkit [191576] by
-
- 4 edits3 deletes in trunk
[GStreamer] Bump internal jhbuild versions to 1.6.0
https://bugs.webkit.org/show_bug.cgi?id=149594
Reviewed by Philippe Normand.
.:
Bump up the minimum reqirement version of gstreamer-gl to 1.6.0.
- Source/cmake/FindGStreamer.cmake:
Tools:
Bump up whole gstreamer libraries to 1.6.0. Relevant patches are no more
useful so they are removed accordingly.
- gtk/jhbuild.modules:
- gtk/patches/gst-plugins-bad-fix-faad2-version-check.patch: Removed.
- gtk/patches/gst-plugins-bad-remove-gnustep-support.patch: Removed.
- gtk/patches/gst-plugins-base-rtp-rtcpbuffer-fix-typo-in-enum.patch: Removed.
- 1:56 AM Changeset in webkit [191575] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore
Merge r191525 - Avoid SVG-induced layouts inside Element::absoluteEventBounds()
https://bugs.webkit.org/show_bug.cgi?id=150516
Reviewed by Zalan Bujtas.
Speculative fix for a crash under RenderObject::localToContainerQuad() when
computing the wheel event handler region, which uses Element::absoluteEventHandlerBounds().
Element::absoluteEventBounds() was calling SVGElement::getBoundingBox() in a way
that could trigger a layout.
- dom/Element.cpp:
(WebCore::Element::absoluteEventBounds):
- 1:54 AM Changeset in webkit [191574] by
-
- 3 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2
Merge r191503 - [GTK] Minor web editor fixes
https://bugs.webkit.org/show_bug.cgi?id=150501
Reviewed by Carlos Garcia Campos.
- UIProcess/gtk/KeyBindingTranslator.cpp: Remove
"MoveParagraphForward/Backward" as these commands do not exist in
WebKit (anymore?).
- WebProcess/WebCoreSupport/gtk/WebEditorClientGtk.cpp:
(WebKit::WebEditorClient::executePendingEditorCommands):
Editor::Command can take a String, no need to convert to a C char.
- 1:53 AM Changeset in webkit [191573] by
-
- 4 edits2 adds in releases/WebKitGTK/webkit-2.10
Merge r191502 - REGRESSION (r187121): Multiple-keyframe animations not honouring ' forwards' fill-mode
https://bugs.webkit.org/show_bug.cgi?id=150328
Reviewed by Dean Jackson.
Source/WebCore:
AnimationBase::getElapsedTime() for a finished animation would return 1 (a progress),
rather than a time value as the caller expects. Fix it to return the total duration
if the animation has finished. This fixes the bug.
Change CompositeAnimation::pauseAnimationAtTime() to be more permissive, allowing
testing of filling-forwards animations with the pause API.
Test: animations/fill-forwards-end-state.html
- page/animation/AnimationBase.cpp:
(WebCore::AnimationBase::getElapsedTime):
- page/animation/CompositeAnimation.cpp:
(WebCore::CompositeAnimation::pauseAnimationAtTime):
LayoutTests:
Filling-forwards test with an animation whose duration is greater than one second,
which showed the bug.
- animations/fill-forwards-end-state-expected.txt: Added.
- animations/fill-forwards-end-state.html: Added.
- 1:47 AM Changeset in webkit [191572] by
-
- 5 edits2 adds in releases/WebKitGTK/webkit-2.10
Merge r191492 - ConvolverNode.buffer must have same sample-rate as the AudioContext
https://bugs.webkit.org/show_bug.cgi?id=150385
Patch by Hyemi Shin <hyemi.sin@samsung.com> on 2015-10-23
Reviewed by Chris Dumez.
ConvolverNode.buffer must be of the same sample-rate as the AudioContext
or an NOT_SUPPORTED_ERR exception MUST be thrown.
Test : webaudio/convolver-setBuffer-different-samplerate.html
- Modules/webaudio/ConvolverNode.cpp:
(WebCore::ConvolverNode::setBuffer):
- Modules/webaudio/ConvolverNode.h:
- Modules/webaudio/ConvolverNode.idl:
LayoutTests:
ConvolverNode.buffer must have same sample rate as the AudioContext
https://bugs.webkit.org/show_bug.cgi?id=150385
Patch by Hyemi Shin <hyemi.sin@samsung.com> on 2015-10-23
Reviewed by Chris Dumez.
- webaudio/convolver-setBuffer-different-samplerate-expected.txt: Added.
- webaudio/convolver-setBuffer-different-samplerate.html: Added.
- 1:37 AM Changeset in webkit [191571] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2
Merge r191481 - ERROR: Unhandled web process message 'StorageAreaMap:DispatchStorageEvent'
https://bugs.webkit.org/show_bug.cgi?id=150315
Patch by Carlos Garcia Campos <cgarcia@igalia.com> on 2015-10-22
Reviewed by Andreas Kling.
It was introduced in r184930, that keeps the session storage area
maps alive in the UI process when they are destroyed by the web
process. The problem is that we also keep the listeners, so that
events are also dispatched to the listeners of destroyed areas,
and the message handlers were removed in the web process.
- UIProcess/Storage/StorageManager.cpp:
(WebKit::StorageManager::createTransientLocalStorageMap): Add a
listener for the new storage map ID when the map is reused.
(WebKit::StorageManager::destroyStorageMap): Always remove
listeners of destroyed maps.
- 1:36 AM Changeset in webkit [191570] by
-
- 15 edits1 add in releases/WebKitGTK/webkit-2.10
Merge r191451 - REGRESSION (r181972): Scroll position changes to top of youtube page when switching tabs
https://bugs.webkit.org/show_bug.cgi?id=150428
Reviewed by Antti Koivisto.
Source/WebCore:
The bug was caused by updateFocusAppearance in WebPage::restoreSelectionInFocusedEditableElement
revealing the focused element which was added in r181972. Fixed the bug by adding an option to
suppress this behavior here.
- dom/Document.cpp:
(WebCore::Document::Document):
(WebCore::Document::updateFocusAppearanceSoon):
- dom/Document.h:
- dom/Element.cpp:
(WebCore::Element::focus):
(WebCore::Element::updateFocusAppearanceAfterAttachIfNeeded):
(WebCore::Element::updateFocusAppearance):
- dom/Element.h:
- history/CachedPage.cpp:
(WebCore::CachedPage::restore):
- html/HTMLAreaElement.cpp:
(WebCore::HTMLAreaElement::updateFocusAppearance):
- html/HTMLAreaElement.h:
- html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::updateFocusAppearance):
(WebCore::HTMLInputElement::runPostTypeUpdateTasks):
(WebCore::HTMLInputElement::didAttachRenderers):
- html/HTMLInputElement.h:
- html/HTMLTextAreaElement.cpp:
(WebCore::HTMLTextAreaElement::updateFocusAppearance):
- html/HTMLTextAreaElement.h:
Source/WebKit2:
Call updateFocusAppearance with RevealMode::DoNotReveal to avoid revealing the focused element.
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::restoreSelectionInFocusedEditableElement):
Tools:
Added a regression test using WebKit API test.
- TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
- TestWebKitAPI/Tests/mac/FirstResponderScrollingPosition.mm: Added.
(TestWebKitAPI::didFinishLoadForFrame):
(TestWebKitAPI::TEST):
- 1:18 AM Changeset in webkit [191569] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10
Merge r191442 - [GTK][Mac] ICU-related build fixes
https://bugs.webkit.org/show_bug.cgi?id=150032
Rubber-stamped by Darin Adler.
- Source/cmake/FindICU.cmake: Use pkg-config to hint at icu-i18n's library location.
- 1:16 AM Changeset in webkit [191568] by
-
- 4 edits2 adds in releases/WebKitGTK/webkit-2.10
Merge r191403 - Null dereference loading Blink layout test svg/filters/display-none-filter-primitive.html
https://bugs.webkit.org/show_bug.cgi?id=150212
<rdar://problem/23137376>
Reviewed by Brent Fulgham.
Source/WebCore:
Handle the case where a filter element doesn't have a renderer. Inspired by the Blink
commit:
https://chromium.googlesource.com/chromium/src.git/+/fb79f7fc46552d45127acd2959a23662ad8f271e
Test: svg/filters/display-none-filter-primitive.html
- rendering/svg/RenderSVGResourceFilter.cpp:
(WebCore::RenderSVGResourceFilter::buildPrimitives):
- svg/graphics/filters/SVGFilterBuilder.cpp:
(WebCore::SVGFilterBuilder::appendEffectToEffectReferences):
LayoutTests:
- svg/filters/display-none-filter-primitive-expected.txt: Added.
- svg/filters/display-none-filter-primitive.html: Added.
- 1:10 AM Changeset in webkit [191567] by
-
- 4 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore
Merge r191386 - ASSERTION FAILED: markFontData in FontCascade::emphasisMarkHeight
https://bugs.webkit.org/show_bug.cgi?id=150171
Patch by Carlos Garcia Campos <cgarcia@igalia.com> on 2015-10-21
Reviewed by Myles C. Maxfield.
It happens with several tests like fast/ruby/text-emphasis.html in
the GTK Debug bot. The tests seem to pass in Release and the rendering
looks correct as well removing the assert. The thing is that
for some reason we can get an empty GlyphData from
FontCascade::getEmphasisMarkGlyphData() when it ends up falling
back to system (FontCascadeFonts::glyphDataForSystemFallback).
- platform/graphics/FontCascade.cpp:
(WebCore::FontCascade::getEmphasisMarkGlyphData): Return
Optional<GlyphData> instead of returning a boolean and an out
parameter. If we get an invalid GlyphData, Nullopt is
returned. Also use a SurrogatePairAwareTextIterator to handle
surrogate pairs.
(WebCore::FontCascade::emphasisMarkAscent):
(WebCore::FontCascade::emphasisMarkDescent):
(WebCore::FontCascade::emphasisMarkHeight):
(WebCore::FontCascade::drawEmphasisMarks):
- platform/graphics/FontCascade.h:
- platform/graphics/GlyphPage.h:
(WebCore::GlyphData::isValid): Return whether the GlyphData is valid.
- 12:54 AM Changeset in webkit [191566] by
-
- 24 edits in releases/WebKitGTK/webkit-2.10/Source
Merge r191381 - NetworkProcess: DNS prefetch happens in the Web Process
https://bugs.webkit.org/show_bug.cgi?id=147824
Reviewed by Chris Dumez.
Source/WebCore:
Use FrameLoaderClient to do the DNS prefetch.
- html/HTMLAnchorElement.cpp:
(WebCore::HTMLAnchorElement::parseAttribute):
- loader/EmptyClients.h:
- loader/FrameLoaderClient.h:
- loader/LinkLoader.cpp:
(WebCore::LinkLoader::loadLink):
- page/Chrome.cpp:
(WebCore::Chrome::mouseDidMoveOverElement):
Source/WebKit/mac:
Implement FrameLoaderClient::prefetchDNS().
- WebCoreSupport/WebFrameLoaderClient.h:
- WebCoreSupport/WebFrameLoaderClient.mm:
Source/WebKit/win:
Implement FrameLoaderClient::prefetchDNS().
- WebCoreSupport/WebFrameLoaderClient.cpp:
(WebFrameLoaderClient::prefetchDNS):
- WebCoreSupport/WebFrameLoaderClient.h:
Source/WebKit2:
DNS prefetch requests started in the WebProcess should be sent to
the network process when it's enabled.
- NetworkProcess/NetworkConnectionToWebProcess.cpp:
(WebKit::NetworkConnectionToWebProcess::prefetchDNS): Use NetworkProcess::prefetchDNS().
- NetworkProcess/NetworkConnectionToWebProcess.h:
- NetworkProcess/NetworkConnectionToWebProcess.messages.in: Add
PrefetchDNS message.
- NetworkProcess/NetworkProcess.cpp:
(WebKit::NetworkProcess::prefetchDNS): Do the actual DNS prefetch.
- NetworkProcess/NetworkProcess.h:
- WebProcess/InjectedBundle/API/gtk/WebKitWebExtension.cpp:
(webkitWebExtensionDidReceiveMessage): Use WebProcess::prefetchDNS().
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::prefetchDNS): Use WebProcess::prefetchDNS().
- WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
- WebProcess/WebPage/ios/WebPageIOS.mm:
(WebKit::WebPage::sendTapHighlightForNodeIfNecessary): Use
FrameLoaderClient to do the DNS prefetch.
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::WebProcess): Initialize the DNS prefetched
hosts cleanup hysteresis activity. Clear the cache of DNS
prefetched when hysteresis activity stopped.
(WebKit::WebProcess::prefetchDNS): Send the request to the network
process if it's enabled, otherwise do the actual DNS prefetch.
- WebProcess/WebProcess.h:
- 12:49 AM Changeset in webkit [191565] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore
Merge r191357 - AX: CrashTracer: com.apple.WebKit.WebContent at com.apple.WebCore: WebCore::AccessibilityTable::tableElement const + 116
https://bugs.webkit.org/show_bug.cgi?id=150349
Reviewed by Brent Fulgham.
The crash point for this bug says that the parentElement of the firstBody is garbage when it's accessed.
Unfortunately, I could not reproduce this in-situ or with a test.
So my speculative solution is to recalculate those body elements to ensure that they're valid before we access.
- accessibility/AccessibilityTable.cpp:
(WebCore::AccessibilityTable::tableElement):
(WebCore::AccessibilityTable::isDataTable):
- 12:47 AM Changeset in webkit [191564] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2
Merge r191341 - [UNIX] ASSERTION FAILED: m_shouldWaitForSyncReplies in Connection::connectionDidClose()
https://bugs.webkit.org/show_bug.cgi?id=150361
Reviewed by Martin Robinson.
It doesn't always happen because it depends on how sockets are
closed, and the state of the threads. The problem is that we are
not handling the case when the read fails because we closed the
connection. In that case we log the error and call
Connection::connectionDidClose(). But it was connectionDidClose()
the one closing the socket. So, in this particular case it's not an
error but a normal termination, and we shouldn't try to close the
connection again. Something similar can happen while sending a
message, and we get a broken pipe error, but in that case we are
only printing the error, so it's harmless.
- Platform/IPC/unix/ConnectionUnix.cpp:
(IPC::Connection::readyReadHandler): Only print error and call
connectionDidClose() if we are still connected when read fails.
(IPC::Connection::sendOutgoingMessage): Only print error if we are
still connected when send fails.
- 12:44 AM Changeset in webkit [191563] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2
Merge r191338 - [GTK] Fix build for ENABLE_PLUGIN_PROCESS_GTK2=OFF
https://bugs.webkit.org/show_bug.cgi?id=150086
Reviewed by Darin Adler.
- UIProcess/cairo/BackingStoreCairo.cpp:
(WebKit::BackingStore::createBackend):
- 12:43 AM Changeset in webkit [191562] by
-
- 3 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore
Merge r191332 - ASSERTION FAILED: m_state == Initialized in SubresourceLoader::didReceiveResponse()
https://bugs.webkit.org/show_bug.cgi?id=150327
Reviewed by Antti Koivisto.
This is how it happens:
- print() is called while the document is still loading, so m_shouldPrintWhenFinishedLoading is set to true
- DataURLDecoder::decode() finishes in the work queue thread, the completion handler is scheduled in the main thread
- The load is cancelled 3.1. SubresourceLoader::willCancel sets m_state = Finishing 3.2. DOMWindow::finishedLoading() is called, and since
m_shouldPrintWhenFinishedLoading is true, it does the print.
3.3. Cancellation finishes and ResourceLoader::releaseResources()
is called that sets m_reachedTerminalState = true
So, between 3.1 and 3.3, the state is Finishing, but
m_reachedTerminalState is false. What happens, in the GTK+ port at
least, is that the nested main loop used to make print()
synchronous, processes the DataURLDecoder::decode() completion
handler that was pending. The completion handler returns early if
m_reachedTerminalState is true, but it's not yet in this
particular case. So, it ends up calling didReceiveResponse,
because the decode didn't fail, when the subresource loader state
is Finishing.
I think there are two things here. One is that we shouldn't start
a print that was waiting for the load to finish when it
failed. That would fix the problem. But it's probably a good idea
to also check for cancellation in the DataURLDecoder::decode()
completion handler.
Fixes printing/print-close-crash.html in GTK+ Debug.
- loader/ResourceLoader.cpp:
(WebCore::ResourceLoader::loadDataURL): Return early from
DataURLDecoder::decode() completion handler if the load was cancelled.
- page/DOMWindow.cpp:
(WebCore::DOMWindow::finishedLoading): Do not start a print that
was witing for the load to finish when it failed.
- 12:38 AM Changeset in webkit [191561] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2
Merge r191284 - [GTK] ASSERTION FAILED: parent in WebInspectorProxy::platformDetach()
https://bugs.webkit.org/show_bug.cgi?id=150319
Reviewed by Žan Doberšek.
This happens when the inspector is shown/closed very
quickly. Since we start the inspector attached by default, when
the web inspector is created m_isAttached is set to true, so that
when opened, it's attached to the view. If the inspector is closed
before it has been actually attached, the inspector view doesn't
have a parent, even if the m_isAttached is true. So, we should
handle this case instead of asserting. This is what happens in
test http/tests/xmlhttprequest/access-control-repeated-failed-preflight-crash.html.
- UIProcess/gtk/WebInspectorProxyGtk.cpp:
(WebKit::WebInspectorProxy::platformDetach): Remove the view from
its parent container if it was actually attached.
- 12:37 AM Changeset in webkit [191560] by
-
- 2 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2
Merge r191272 - [GTK] Remove WebKitContextMenu related missing annotation warnings
https://bugs.webkit.org/show_bug.cgi?id=150299
Patch by Joonghun Park <jh718.park@samsung.com> on 2015-10-18
Reviewed by Darin Adler.
The warnings occur currently because when executing g-ir-scanner,
it doesn't consider WebKitContextMenu related .cpp files,
but only .h files.
- PlatformGTK.cmake: Add WebKitContextMenu related cpp files.
- 12:34 AM Changeset in webkit [191559] by
-
- 3 edits2 adds in releases/WebKitGTK/webkit-2.10
Merge r191233 - Avoid to insert TAB before HTML element.
https://bugs.webkit.org/show_bug.cgi?id=149295
<rdar://problem/22746706>
Patch by Jiewen Tan <jiewen_tan@apple.com> on 2015-10-16
Reviewed by Ryosuke Niwa.
Source/WebCore:
This is a merge of Blink r175047:
https://codereview.chromium.org/306583005
This patch avoids InsertTextCommand::insertTab before HTML element because
we can't set Text node as document element.
Test: editing/execCommand/insert-tab-to-html-element-crash.html
- editing/InsertTextCommand.cpp:
(WebCore::InsertTextCommand::insertTab):
LayoutTests:
- editing/execCommand/insert-tab-to-html-element-crash-expected.txt: Added.
- editing/execCommand/insert-tab-to-html-element-crash.html: Added.
- 12:30 AM Changeset in webkit [191558] by
-
- 6 edits in releases/WebKitGTK/webkit-2.10/Source/bmalloc
Merge r191196 - bmalloc: per-thread cache data structure should be smaller
https://bugs.webkit.org/show_bug.cgi?id=150218
Reviewed by Andreas Kling.
Reduce the number of entries in the range cache because it's really
big, and the bigness only helps in cases of serious fragmentation, and
it only saves us a little bit of lock acquisition time.
- bmalloc/Allocator.cpp:
(bmalloc::Allocator::scavenge):
(bmalloc::Allocator::refillAllocatorSlowCase):
(bmalloc::Allocator::refillAllocator):
(bmalloc::Allocator::allocateLarge):
(bmalloc::Allocator::allocateSlowCase):
(bmalloc::Allocator::allocateBumpRangeSlowCase): Deleted.
(bmalloc::Allocator::allocateBumpRange): Deleted.
- bmalloc/Allocator.h: Pass through the empty allocator and the range
cache when refilling, and refill both. Otherwise, we always immediately
pop the last item in the range cache, wasting that slot of capacity.
- bmalloc/Heap.cpp:
(bmalloc::Heap::allocateSmallBumpRanges):
(bmalloc::Heap::allocateMediumBumpRanges): Account for the fact that
the range cache is no longer big enough to guarantee that it can hold
all the ranges in a page.
(bmalloc::Heap::refillSmallBumpRangeCache): Deleted.
(bmalloc::Heap::refillMediumBumpRangeCache): Deleted.
- bmalloc/Heap.h: Move VMHeap to the end of the object because it
contains a lot of unused / wasted space, and we want to pack our data
together in memory.
- bmalloc/Sizes.h: Make the range cache smaller.
- 12:28 AM Changeset in webkit [191557] by
-
- 10 edits2 adds in releases/WebKitGTK/webkit-2.10
Merge r191195 - First line box in paragraph using initial-letter overflows.
https://bugs.webkit.org/show_bug.cgi?id=147977
<rdar://problem/22901553>
Reviewed by David Hyatt.
When initial-letter float is present, we should shrink the first
line even if it's not intersected with the block's current height.
This is because of the sunken behaviour of initial-letter.
Source/WebCore:
Test: fast/css-generated-content/initial-letter-first-line-wrapping.html
- rendering/RenderBlockFlow.h:
- rendering/RenderBlockLineLayout.cpp:
(WebCore::RenderBlockFlow::positionNewFloatOnLine):
- rendering/line/BreakingContext.h:
(WebCore::BreakingContext::handleFloat):
- rendering/line/LineBreaker.cpp:
(WebCore::LineBreaker::skipLeadingWhitespace):
- rendering/line/LineBreaker.h:
(WebCore::LineBreaker::positionNewFloatOnLine):
- rendering/line/LineWidth.cpp:
(WebCore::newFloatShrinksLine):
(WebCore::LineWidth::shrinkAvailableWidthForNewFloatIfNeeded):
- rendering/line/LineWidth.h:
LayoutTests:
- fast/css-generated-content/initial-letter-first-line-wrapping-expected.html: Added.
- fast/css-generated-content/initial-letter-first-line-wrapping.html: Added.
- platform/mac/fast/css-generated-content/initial-letter-basic-expected.txt: progression.
- 12:13 AM Changeset in webkit [191556] by
-
- 4 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore
Merge r191174 - [GStreamer] ASSERTION FAILED: !m_adoptionIsRequired in MediaSourceGStreamer::addSourceBuffer
https://bugs.webkit.org/show_bug.cgi?id=150229
Reviewed by Philippe Normand.
This happens in the debug bot in all media source tests that run
that code. The problem is that we are creating a RefPtr without
adopting the reference.
- platform/graphics/gstreamer/MediaSourceGStreamer.cpp:
(WebCore::MediaSourceGStreamer::addSourceBuffer): Use
SourceBufferPrivateGStreamer::create().
- platform/graphics/gstreamer/SourceBufferPrivateGStreamer.cpp:
(WebCore::SourceBufferPrivateGStreamer::create): Added to make
sure you can't create a SourceBufferPrivateGStreamer without
adopting the reference.
(WebCore::SourceBufferPrivateGStreamer::SourceBufferPrivateGStreamer):
Takes a reference to the client instead of a PassRefPtr.
- platform/graphics/gstreamer/SourceBufferPrivateGStreamer.h:
- 12:11 AM Changeset in webkit [191555] by
-
- 6 edits in releases/WebKitGTK/webkit-2.10
Merge r191132 - CSSKeyframesRule::appendRule is deprecated, but is actually the spec
https://bugs.webkit.org/show_bug.cgi?id=150113
Reviewed by Simon Fraser.
Source/WebCore:
I stupidly deprecated the wrong function in
http://trac.webkit.org/changeset/174469
- css/CSSKeyframesRule.cpp:
(WebCore::CSSKeyframesRule::insertRule): Swap the code between these two.
(WebCore::CSSKeyframesRule::appendRule):
LayoutTests:
Update tests to deprecate the correct function.
- animations/change-keyframes-expected.txt:
- animations/keyframes-rule.html:
- animations/unprefixed-keyframes-rule.html:
Oct 25, 2015:
- 11:40 PM Changeset in webkit [191554] by
-
- 18 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2
Merge r191340 - [GTK] Graphics corruption when entering/leaving AC mode quickly
https://bugs.webkit.org/show_bug.cgi?id=150323
Reviewed by Mario Sanchez Prada.
The UI process is notified when entering accelerated compositing
mode after the layers have been flushed and rendered to avoid
flickering. However, this is producing flickering in the GTK+
port, because we use an offscreen redirected window that is
resized to a minimium size to save memory when not in AC mode. The
web process always uses the current size of the redirected window,
so when entering AC mode, contents are rendered into the 1x1
window, then the UI process is notified, the redirected window is
resized to its actual size, and we force a resize to ask the web
process to render again, now at the correct size. Rendering at 1x1
and then resizing the window is what produces the flickering when
entering AC mode, but it's also inefficient, since we need to
render again after the redirected window is resized. So, this
patch adds a WillEnterAcceleratedCompositing message that is sent
to the UI process when the layer tree host is created but before
the contents have been composited and rendered. This is
implemented by the GTK+ port to prepare for entering AC mode, by
resizing the redirected window. When we actually enter AC mode,
the contents have already been rendered in the web process at the
correct size, so we can just use the redirected window surface
instead of the drawing area one, and paint in the web view without
any flickering. We no longer need the forceResize either.
When leaving accelerated compositing mode, we now clear the redirected
window resources after a short delay. This ensures that we have
already rendered the update sent in the ExitAcceleratedCompositingMode
message, but also that entering/leaving AC mode quickly doesn't
produce any redirected window resize.
- UIProcess/API/gtk/PageClientImpl.cpp:
(WebKit::PageClientImpl::willEnterAcceleratedCompositingMode):
- UIProcess/API/gtk/PageClientImpl.h:
- UIProcess/API/gtk/WebKitWebViewBase.cpp:
(webkitWebViewBaseClearRedirectedWindowSoon):
(webkitWebViewBaseWillEnterAcceleratedCompositingMode):
(webkitWebViewBaseEnterAcceleratedCompositingMode):
(webkitWebViewBaseExitAcceleratedCompositingMode):
- UIProcess/API/gtk/WebKitWebViewBasePrivate.h:
- UIProcess/CoordinatedGraphics/WebView.h:
- UIProcess/DrawingAreaProxy.h:
(WebKit::DrawingAreaProxy::willEnterAcceleratedCompositingMode):
- UIProcess/DrawingAreaProxy.messages.in:
- UIProcess/DrawingAreaProxyImpl.cpp:
(WebKit::DrawingAreaProxyImpl::willEnterAcceleratedCompositingMode):
- UIProcess/DrawingAreaProxyImpl.h:
(WebKit::DrawingAreaProxyImpl::forceResize): Deleted.
- UIProcess/PageClient.h:
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::willEnterAcceleratedCompositingMode):
- UIProcess/WebPageProxy.h:
- UIProcess/ios/PageClientImplIOS.h:
- UIProcess/ios/PageClientImplIOS.mm:
(WebKit::PageClientImpl::willEnterAcceleratedCompositingMode):
- UIProcess/mac/PageClientImpl.h:
- UIProcess/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::willEnterAcceleratedCompositingMode):
- WebProcess/WebPage/DrawingAreaImpl.cpp:
(WebKit::DrawingAreaImpl::enterAcceleratedCompositingMode):
- 11:29 PM Changeset in webkit [191553] by
-
- 18 edits in trunk/Source/WebCore
Use modern for-loops in WebCore/editing.
https://bugs.webkit.org/show_bug.cgi?id=150354
Reviewed by Darin Adler.
No new tests because there is no behavior change.
- editing/AlternativeTextController.cpp:
(WebCore::AlternativeTextController::applyAlternativeTextToRange):
(WebCore::AlternativeTextController::applyAutocorrectionBeforeTypingIfAppropriate):
(WebCore::AlternativeTextController::rootViewRectForRange):
(WebCore::AlternativeTextController::markCorrection):
- editing/ApplyStyleCommand.cpp:
(WebCore::ApplyStyleCommand::applyRelativeFontStyleChange):
(WebCore::dummySpanAncestorForNode):
(WebCore::ApplyStyleCommand::cleanupUnstyledAppleStyleSpans):
(WebCore::ApplyStyleCommand::splitAncestorsWithUnicodeBidi):
(WebCore::ApplyStyleCommand::applyInlineStyleToNodeRange):
(WebCore::ApplyStyleCommand::removeImplicitlyStyledElement):
(WebCore::ApplyStyleCommand::pushDownInlineStyleAroundNode):
(WebCore::ApplyStyleCommand::joinChildTextNodes):
- editing/CompositeEditCommand.cpp:
(WebCore::EditCommandComposition::reapply):
(WebCore::EditCommandComposition::getNodesInCommand):
(WebCore::CompositeEditCommand::removeChildrenInRange):
(WebCore::CompositeEditCommand::removeNode):
(WebCore::copyMarkers):
(WebCore::CompositeEditCommand::replaceTextInNodePreservingMarkers):
(WebCore::CompositeEditCommand::deleteInsignificantText):
- editing/DictationCommand.cpp:
(WebCore::DictationMarkerSupplier::addMarkersToTextNode):
(WebCore::DictationCommand::collectDictationAlternativesInRange):
- editing/EditingStyle.cpp:
(WebCore::isEditingProperty):
(WebCore::EditingStyle::extractConflictingImplicitStyleOfAttributes):
(WebCore::EditingStyle::elementIsStyledSpanOrHTMLEquivalent):
(WebCore::EditingStyle::mergeInlineAndImplicitStyleOfElement):
(WebCore::styleFromMatchedRulesForElement):
(WebCore::diffTextDecorations):
- editing/Editor.cpp:
(WebCore::Editor::setComposition):
(WebCore::Editor::markAndReplaceFor):
- editing/EditorCommand.cpp:
(WebCore::createCommandMap):
- editing/MarkupAccumulator.cpp:
(WebCore::MarkupAccumulator::totalLength):
- editing/MergeIdenticalElementsCommand.cpp:
(WebCore::MergeIdenticalElementsCommand::doApply):
(WebCore::MergeIdenticalElementsCommand::doUnapply):
- editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplacementFragment::removeUnrenderedNodes):
(WebCore::ReplacementFragment::removeInterchangeNodes):
(WebCore::ReplaceSelectionCommand::removeRedundantStylesAndKeepStyleSpanInline):
(WebCore::removeHeadContents):
- editing/SpellChecker.cpp:
(WebCore::SpellChecker::~SpellChecker):
(WebCore::SpellChecker::client):
(WebCore::SpellChecker::enqueueRequest):
- editing/SplitElementCommand.cpp:
(WebCore::SplitElementCommand::executeApply):
(WebCore::SplitElementCommand::doApply):
(WebCore::SplitElementCommand::doUnapply):
- editing/TextCheckingHelper.cpp:
(WebCore::TextCheckingHelper::findFirstMisspellingOrBadGrammar):
(WebCore::TextCheckingHelper::guessesForMisspelledOrUngrammaticalRange):
- editing/WrapContentsInDummySpanCommand.cpp:
(WebCore::WrapContentsInDummySpanCommand::executeApply):
(WebCore::WrapContentsInDummySpanCommand::doUnapply):
- editing/ios/EditorIOS.mm:
(WebCore::Editor::createFragmentAndAddResources):
- editing/mac/EditorMac.mm:
(WebCore::Editor::WebContentReader::readFilenames):
(WebCore::Editor::createFragmentAndAddResources):
- editing/markup.cpp:
(WebCore::completeURLs):
- 11:23 PM Changeset in webkit [191552] by
-
- 2 edits in trunk/LayoutTests
[EFL] Unreviewed gardening. some test expectations for media should be Failure.
https://bugs.webkit.org/show_bug.cgi?id=150495
Unreviewed, EFL gardening.
Some test expectations for media should be Failure.
Patch by Sun-woo Nam <sunny.nam@samsung.com> on 2015-10-25
- platform/efl/TestExpectations:
- 9:57 PM Changeset in webkit [191551] by
-
- 17 edits6 adds in trunk
Support bezier paths in clip-path property
https://bugs.webkit.org/show_bug.cgi?id=149996
Reviewed by Darin Adler.
Source/WebCore:
Support path() in the -webkit-clip-path property, as specified in
https://drafts.csswg.org/css-shapes-2/#supported-basic-shapes
Added BasicShapePath and CSSBasicShapePath, which both represent the path
as a SVGPathByteStream and wind rule.
Make BasicShape::canBlend() a virtual function, and implement it on each subclass.
Make various BasicShape subclass function overrides private, other than windRule()
wich is called on derived classes in a few places.
Add SVGPathBlender::canBlendPaths() which returns true if the given paths can be
interpolated. Uses the same logic as blendAnimatedPath(), without doing any interpolation.
RenderElement::createsGroup() is fixed to have clip-path trigger a group,
which fixes rendering of clip-path with a descendant compositing layer.
Tests: compositing/masks/clip-path-composited-descendent.html
css3/masking/clip-path-with-path.html
transitions/clip-path-path-transitions.html
- css/BasicShapeFunctions.cpp:
(WebCore::valueForBasicShape):
(WebCore::basicShapeForValue):
- css/CSSBasicShapes.cpp:
(WebCore::CSSBasicShapePath::CSSBasicShapePath):
(WebCore::CSSBasicShapePath::pathData):
(WebCore::buildPathString):
(WebCore::CSSBasicShapePath::cssText):
(WebCore::CSSBasicShapePath::equals):
- css/CSSBasicShapes.h:
- css/CSSParser.cpp:
(WebCore::CSSParser::parseBasicShapePath):
(WebCore::CSSParser::parseBasicShape):
- css/CSSParser.h:
- rendering/RenderElement.h:
(WebCore::RenderElement::createsGroup):
- rendering/style/BasicShapes.cpp:
(WebCore::BasicShapeCircle::canBlend):
(WebCore::BasicShapeEllipse::canBlend):
(WebCore::BasicShapePolygon::canBlend):
(WebCore::BasicShapePath::BasicShapePath):
(WebCore::BasicShapePath::path):
(WebCore::BasicShapePath::operator==):
(WebCore::BasicShapePath::canBlend):
(WebCore::BasicShapePath::blend):
(WebCore::BasicShapeInset::canBlend):
(WebCore::BasicShape::canBlend): Deleted.
- rendering/style/BasicShapes.h:
- svg/SVGPathBlender.cpp:
(WebCore::SVGPathBlender::addAnimatedPath):
(WebCore::SVGPathBlender::blendAnimatedPath):
(WebCore::SVGPathBlender::canBlendPaths):
(WebCore::SVGPathBlender::SVGPathBlender):
(WebCore::SVGPathBlender::blendMoveToSegment):
(WebCore::SVGPathBlender::blendLineToSegment):
(WebCore::SVGPathBlender::blendLineToHorizontalSegment):
(WebCore::SVGPathBlender::blendLineToVerticalSegment):
(WebCore::SVGPathBlender::blendCurveToCubicSegment):
(WebCore::SVGPathBlender::blendCurveToCubicSmoothSegment):
(WebCore::SVGPathBlender::blendCurveToQuadraticSegment):
(WebCore::SVGPathBlender::blendCurveToQuadraticSmoothSegment):
(WebCore::SVGPathBlender::blendArcToSegment):
- svg/SVGPathBlender.h:
- svg/SVGPathByteStream.h:
(WebCore::SVGPathByteStream::operator==):
- svg/SVGPathUtilities.cpp:
(WebCore::canBlendSVGPathByteStreams):
- svg/SVGPathUtilities.h:
LayoutTests:
Tests for compositing with clip-path and a composited descendant,
a ref test which tests clip-paths with evenodd, comparing to SVG rendering,
and a transition test to test path blendability.
- compositing/masks/clip-path-composited-descendent-expected.txt: Added.
- compositing/masks/clip-path-composited-descendent.html: Added.
- css3/masking/clip-path-with-path-expected.html: Added.
- css3/masking/clip-path-with-path.html: Added.
- transitions/clip-path-path-transitions-expected.txt: Added.
- transitions/clip-path-path-transitions.html: Added.
- transitions/resources/transition-test-helpers.js: Add some basic parsing
support for paths.
(extractPathValues):
(parseClipPath):
- transitions/svg-transitions-expected.txt:
- 12:06 PM Changeset in webkit [191550] by
-
- 2 edits in trunk/Tools
API tests fail on El Capitan after r191543
https://bugs.webkit.org/show_bug.cgi?id=150547
Reviewed by Dan Bernstein.
- Scripts/run-api-tests: (listAllTests): Add appropriate arch arguments in one more place.
- 8:10 AM Changeset in webkit [191549] by
-
- 2 edits in trunk/Source/WebCore
[TexMap] Fix a misused flag for GstGL
https://bugs.webkit.org/show_bug.cgi?id=150545
Reviewed by Žan Doberšek.
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
(WebCore::MediaPlayerPrivateGStreamerBase::paintToTextureMapper):
We should pass TextureMapperGL::Flags to the TextureMapperGL::drawTexture instead of
BitmapTexture::Flags.
- 2:17 AM Changeset in webkit [191548] by
-
- 2 edits in trunk/Source/WebKit2
Unreviewed. Fix GTK+ build after r191543.
- UIProcess/API/gtk/WebKitWebView.cpp:
(webkit_web_view_run_javascript):
(resourcesStreamReadCallback):
- 12:42 AM Changeset in webkit [191547] by
-
- 3 edits in trunk/Source/WebCore
Use ImplementedAs for MediaDevices.getUserMediaFromJS
https://bugs.webkit.org/show_bug.cgi?id=150439
Reviewed by Darin Adler.
No change in behavior.
- Modules/mediastream/MediaDevices.h: Removing getUserMediaFromJS C++ function.
- Modules/mediastream/MediaDevices.idl: Marking getUserMediaFromJS as ImplementedAS=getUserMedia
- 12:39 AM Changeset in webkit [191546] by
-
- 6 edits7 copies406 adds in trunk/LayoutTests
Import W3C XMLHttpRequest tests
https://bugs.webkit.org/show_bug.cgi?id=142163
Reviewed by Darin Adler.
LayoutTests/imported/w3c:
- resources/ImportExpectations: skipping import of some XHR tests that are failing or timing out.
- web-platform-tests/XMLHttpRequest/FormData-append-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/FormData-append.html: Added.
- web-platform-tests/XMLHttpRequest/XMLHttpRequest-withCredentials-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/XMLHttpRequest-withCredentials.html: Added.
- web-platform-tests/XMLHttpRequest/XMLHttpRequest-withCredentials.js: Added.
(test_withCredentials.):
(test_withCredentials):
- web-platform-tests/XMLHttpRequest/XMLHttpRequest-withCredentials.worker.js: Added.
- web-platform-tests/XMLHttpRequest/abort-after-receive-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-after-receive.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-after-send-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-after-send.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-after-timeout-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-after-timeout.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-during-done-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-during-done.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-during-open-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-during-open.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-during-unsent-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-during-unsent.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-during-upload-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-during-upload.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-event-abort-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-event-abort.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-event-listeners-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-event-listeners.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-event-loadend-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-event-loadend.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-event-order-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-event-order.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-upload-event-abort-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-upload-event-abort.htm: Added.
- web-platform-tests/XMLHttpRequest/abort-upload-event-loadend-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/abort-upload-event-loadend.htm: Added.
- web-platform-tests/XMLHttpRequest/anonymous-mode-unsupported-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/anonymous-mode-unsupported.htm: Added.
- web-platform-tests/XMLHttpRequest/data-uri-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/data-uri.htm: Added.
- web-platform-tests/XMLHttpRequest/event-abort-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-abort.htm: Added.
- web-platform-tests/XMLHttpRequest/event-error-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-error.html: Added.
- web-platform-tests/XMLHttpRequest/event-load-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-load.htm: Added.
- web-platform-tests/XMLHttpRequest/event-loadend-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-loadend.htm: Added.
- web-platform-tests/XMLHttpRequest/event-loadstart-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-loadstart.htm: Added.
- web-platform-tests/XMLHttpRequest/event-progress-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-progress.htm: Added.
- web-platform-tests/XMLHttpRequest/event-readystatechange-loaded-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-readystatechange-loaded.htm: Added.
- web-platform-tests/XMLHttpRequest/event-timeout-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-timeout.htm: Added.
- web-platform-tests/XMLHttpRequest/event-upload-progress-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/event-upload-progress.htm: Added.
- web-platform-tests/XMLHttpRequest/folder.txt: Added.
- web-platform-tests/XMLHttpRequest/formdata-blob-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/formdata-blob.htm: Added.
- web-platform-tests/XMLHttpRequest/formdata-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/formdata.htm: Added.
- web-platform-tests/XMLHttpRequest/getallresponseheaders-cookies-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getallresponseheaders-cookies.htm: Added.
- web-platform-tests/XMLHttpRequest/getallresponseheaders-status-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getallresponseheaders-status.htm: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-case-insensitive-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-case-insensitive.htm: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-chunked-trailer-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-chunked-trailer.htm: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-cookies-and-more-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-cookies-and-more.htm: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-error-state-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-error-state.htm: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-server-date-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-server-date.htm: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-special-characters-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-special-characters.htm: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-unsent-opened-state-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/getresponseheader-unsent-opened-state.htm: Added.
- web-platform-tests/XMLHttpRequest/interfaces-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/interfaces.html: Added.
- web-platform-tests/XMLHttpRequest/open-after-abort-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-after-abort.htm: Added.
- web-platform-tests/XMLHttpRequest/open-after-setrequestheader-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-after-setrequestheader.htm: Added.
- web-platform-tests/XMLHttpRequest/open-during-abort-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-during-abort.htm: Added.
- web-platform-tests/XMLHttpRequest/open-method-bogus-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-method-bogus.htm: Added.
- web-platform-tests/XMLHttpRequest/open-method-case-insensitive-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-method-case-insensitive.htm: Added.
- web-platform-tests/XMLHttpRequest/open-method-case-sensitive-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-method-case-sensitive.htm: Added.
- web-platform-tests/XMLHttpRequest/open-method-insecure-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-method-insecure.htm: Added.
- web-platform-tests/XMLHttpRequest/open-method-responsetype-set-sync-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-method-responsetype-set-sync.htm: Added.
- web-platform-tests/XMLHttpRequest/open-open-send-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-open-send.htm: Added.
- web-platform-tests/XMLHttpRequest/open-open-sync-send-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-open-sync-send.htm: Added.
- web-platform-tests/XMLHttpRequest/open-referer-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-referer.htm: Added.
- web-platform-tests/XMLHttpRequest/open-send-open-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-send-open.htm: Added.
- web-platform-tests/XMLHttpRequest/open-sync-open-send-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-sync-open-send.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-about-blank-window-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-about-blank-window.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-base-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-base-inserted-after-open-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-base-inserted-after-open.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-base-inserted-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-base-inserted.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-base.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-bogus-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-bogus.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-encoding-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-encoding.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-fragment-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-fragment.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-javascript-window-2-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-javascript-window-2.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-javascript-window-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-javascript-window.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-2-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-2.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-3-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-3.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-4-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-4.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-5-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-5.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-multi-window.htm: Added.
- web-platform-tests/XMLHttpRequest/open-url-worker-simple-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-url-worker-simple.htm: Added.
- web-platform-tests/XMLHttpRequest/open-user-password-non-same-origin-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/open-user-password-non-same-origin.htm: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-done-state-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-done-state.htm: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-headers-received-state-force-shiftjis-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-headers-received-state-force-shiftjis.htm: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-invalid-mime-type-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-invalid-mime-type.htm: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-loading-state-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-loading-state.htm: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-open-state-force-utf-8-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-open-state-force-utf-8.htm: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-open-state-force-xml-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-open-state-force-xml.htm: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-unsent-state-force-shiftjis-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/overridemimetype-unsent-state-force-shiftjis.htm: Added.
- web-platform-tests/XMLHttpRequest/progress-events-response-data-gzip-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/progress-events-response-data-gzip.htm: Added.
- web-platform-tests/XMLHttpRequest/readme.txt: Added.
- web-platform-tests/XMLHttpRequest/resources/accept-language.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/accept.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth1/auth.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth1/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/w3c-import.log.
- web-platform-tests/XMLHttpRequest/resources/auth2/auth.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth2/corsenabled.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth2/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/w3c-import.log.
- web-platform-tests/XMLHttpRequest/resources/auth3/auth.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth3/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/w3c-import.log.
- web-platform-tests/XMLHttpRequest/resources/auth4/auth.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth4/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/w3c-import.log.
- web-platform-tests/XMLHttpRequest/resources/auth5/auth.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth5/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/w3c-import.log.
- web-platform-tests/XMLHttpRequest/resources/auth6/auth.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/auth6/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/w3c-import.log.
- web-platform-tests/XMLHttpRequest/resources/authentication.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/chunked.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/conditional.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/content.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/corsenabled.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/delay.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/echo-method.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/folder.txt: Added.
- web-platform-tests/XMLHttpRequest/resources/form.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/gzip.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/headers.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/image.gif: Added.
- web-platform-tests/XMLHttpRequest/resources/img.jpg: Added.
- web-platform-tests/XMLHttpRequest/resources/infinite-redirects.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/init.htm: Added.
- web-platform-tests/XMLHttpRequest/resources/inspect-headers.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/invalid-utf8-html.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/nocors/folder.txt: Added.
- web-platform-tests/XMLHttpRequest/resources/nocors/w3c-import.log: Copied from LayoutTests/imported/w3c/web-platform-tests/w3c-import.log.
- web-platform-tests/XMLHttpRequest/resources/redirect.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/requri.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/shift-jis-html.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/status.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/trickle.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/upload.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/utf16.txt: Added.
- web-platform-tests/XMLHttpRequest/resources/w3c-import.log: Added.
- web-platform-tests/XMLHttpRequest/resources/well-formed.xml: Added.
- web-platform-tests/XMLHttpRequest/resources/win-1252-xml.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/resources/workerxhr-origin-referrer.js: Added.
(xhr.new.XMLHttpRequest.xhr.onreadystatechange):
(true.xhr.send.xhr2.new.XMLHttpRequest.xhr2.onreadystatechange):
(true.xhr2.send.xhr3.new.XMLHttpRequest.xhr3.onreadystatechange):
- web-platform-tests/XMLHttpRequest/resources/workerxhr-simple.js: Added.
(xhr.new.XMLHttpRequest.xhr.onreadystatechange):
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-aborted.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-abortedonmain.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-overrides.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-overridesexpires.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-runner.js: Added.
(testResultCallbackHandler):
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-simple.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-synconmain.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-synconworker.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout-twice.js: Added.
- web-platform-tests/XMLHttpRequest/resources/xmlhttprequest-timeout.js: Added.
(catch):
(message):
(is):
(ok):
(RequestTracker):
(RequestTracker.prototype.handleEvent):
(RequestTracker.prototype.startXHR):
(RequestTracker.prototype.getMessage):
(AbortedRequest):
(AbortedRequest.prototype.handleEvent):
(AbortedRequest.prototype.abortReq):
(AbortedRequest.prototype.startXHR):
(AbortedRequest.prototype.noEventsFired):
(AbortedRequest.prototype.getMessage):
(SyncRequestSettingTimeoutAfterOpen.startXHR):
(SyncRequestSettingTimeoutBeforeOpen.startXHR):
(TestCounter.testComplete):
(TestCounter.next):
(runTestRequests):
- web-platform-tests/XMLHttpRequest/resources/zlib.py: Added.
(main):
- web-platform-tests/XMLHttpRequest/response-data-arraybuffer-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-data-arraybuffer.htm: Added.
- web-platform-tests/XMLHttpRequest/response-data-blob-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-data-blob.htm: Added.
- web-platform-tests/XMLHttpRequest/response-data-deflate-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-data-deflate.htm: Added.
- web-platform-tests/XMLHttpRequest/response-data-gzip-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-data-gzip.htm: Added.
- web-platform-tests/XMLHttpRequest/response-data-progress-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-data-progress.htm: Added.
- web-platform-tests/XMLHttpRequest/response-invalid-responsetype-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-invalid-responsetype.htm: Added.
- web-platform-tests/XMLHttpRequest/response-json-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-json.htm: Added.
- web-platform-tests/XMLHttpRequest/response-method-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/response-method.htm: Added.
- web-platform-tests/XMLHttpRequest/responseText-status-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responseText-status.html: Added.
- web-platform-tests/XMLHttpRequest/responsetext-decoding-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responsetext-decoding.htm: Added.
- web-platform-tests/XMLHttpRequest/responsetype-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responsetype.html: Added.
- web-platform-tests/XMLHttpRequest/responsexml-basic-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responsexml-basic.htm: Added.
- web-platform-tests/XMLHttpRequest/responsexml-document-properties-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responsexml-document-properties.htm: Added.
- web-platform-tests/XMLHttpRequest/responsexml-media-type-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responsexml-media-type.htm: Added.
- web-platform-tests/XMLHttpRequest/responsexml-non-document-types-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responsexml-non-document-types.htm: Added.
- web-platform-tests/XMLHttpRequest/responsexml-non-well-formed-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/responsexml-non-well-formed.htm: Added.
- web-platform-tests/XMLHttpRequest/security-consideration.sub-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/security-consideration.sub.html: Added.
- web-platform-tests/XMLHttpRequest/send-accept-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-accept-language-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-accept-language.htm: Added.
- web-platform-tests/XMLHttpRequest/send-accept.htm: Added.
- web-platform-tests/XMLHttpRequest/send-authentication-cors-basic-setrequestheader-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-authentication-cors-basic-setrequestheader.htm: Added.
- web-platform-tests/XMLHttpRequest/send-conditional-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-conditional.htm: Added.
- web-platform-tests/XMLHttpRequest/send-content-type-charset-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-content-type-charset.htm: Added.
- web-platform-tests/XMLHttpRequest/send-content-type-string-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-content-type-string.htm: Added.
- web-platform-tests/XMLHttpRequest/send-data-arraybuffer-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-data-arraybuffer.htm: Added.
- web-platform-tests/XMLHttpRequest/send-data-blob-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-data-blob.htm: Added.
- web-platform-tests/XMLHttpRequest/send-data-es-object-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-data-es-object.htm: Added.
- web-platform-tests/XMLHttpRequest/send-data-formdata-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-data-formdata.htm: Added.
- web-platform-tests/XMLHttpRequest/send-data-unexpected-tostring-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-data-unexpected-tostring.htm: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-document-bogus-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-document-bogus.htm: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-document-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-document.htm: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-empty-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-empty.htm: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-get-head-async-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-get-head-async.htm: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-get-head-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-get-head.htm: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-none-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-entity-body-none.htm: Added.
- web-platform-tests/XMLHttpRequest/send-network-error-sync-events.sub-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-network-error-sync-events.sub.htm: Added.
- web-platform-tests/XMLHttpRequest/send-no-response-event-loadend-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-no-response-event-loadend.htm: Added.
- web-platform-tests/XMLHttpRequest/send-no-response-event-loadstart-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-no-response-event-loadstart.htm: Added.
- web-platform-tests/XMLHttpRequest/send-no-response-event-order-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-no-response-event-order.htm: Added.
- web-platform-tests/XMLHttpRequest/send-non-same-origin.sub-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-non-same-origin.sub.htm: Added.
- web-platform-tests/XMLHttpRequest/send-receive-utf16-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-receive-utf16.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-bogus-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-bogus-sync-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-bogus-sync.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-bogus.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-infinite-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-infinite-sync-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-infinite-sync.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-infinite.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-no-location-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-no-location.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-to-cors-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-to-cors.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-to-non-cors-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-redirect-to-non-cors.htm: Added.
- web-platform-tests/XMLHttpRequest/send-redirect.htm: Added.
- web-platform-tests/XMLHttpRequest/send-response-event-order-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-response-event-order.htm: Added.
- web-platform-tests/XMLHttpRequest/send-response-upload-event-loadend-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-response-upload-event-loadend.htm: Added.
- web-platform-tests/XMLHttpRequest/send-response-upload-event-loadstart-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-response-upload-event-loadstart.htm: Added.
- web-platform-tests/XMLHttpRequest/send-response-upload-event-progress-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-response-upload-event-progress.htm: Added.
- web-platform-tests/XMLHttpRequest/send-send-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-send.htm: Added.
- web-platform-tests/XMLHttpRequest/send-sync-blocks-async-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-sync-blocks-async.htm: Added.
- web-platform-tests/XMLHttpRequest/send-sync-no-response-event-load-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-sync-no-response-event-load.htm: Added.
- web-platform-tests/XMLHttpRequest/send-sync-no-response-event-loadend-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-sync-no-response-event-loadend.htm: Added.
- web-platform-tests/XMLHttpRequest/send-sync-no-response-event-order-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-sync-no-response-event-order.htm: Added.
- web-platform-tests/XMLHttpRequest/send-sync-response-event-order-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-sync-response-event-order.htm: Added.
- web-platform-tests/XMLHttpRequest/send-sync-timeout-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-sync-timeout.htm: Added.
- web-platform-tests/XMLHttpRequest/send-timeout-events-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-timeout-events.htm: Added.
- web-platform-tests/XMLHttpRequest/send-usp-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/send-usp.html: Added.
- web-platform-tests/XMLHttpRequest/send-usp.js: Added.
(encode):
(do_test.):
- web-platform-tests/XMLHttpRequest/send-usp.worker.js: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-after-send-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-after-send.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-allow-empty-value-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-allow-empty-value.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-allow-whitespace-in-value-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-allow-whitespace-in-value.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-before-open-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-before-open.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-bogus-name-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-bogus-name.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-bogus-value-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-bogus-value.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-case-insensitive-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-case-insensitive.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-content-type-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-content-type.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-header-allowed-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-header-allowed.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-header-forbidden-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-header-forbidden.htm: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-open-setrequestheader-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/setrequestheader-open-setrequestheader.htm: Added.
- web-platform-tests/XMLHttpRequest/status-async-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/status-async.htm: Added.
- web-platform-tests/XMLHttpRequest/status-basic-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/status-basic.htm: Added.
- web-platform-tests/XMLHttpRequest/status-error-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/status-error.htm: Added.
- web-platform-tests/XMLHttpRequest/timeout-cors-async-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/timeout-cors-async.htm: Added.
- web-platform-tests/XMLHttpRequest/timeout-sync-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/timeout-sync.htm: Added.
- web-platform-tests/XMLHttpRequest/w3c-import.log: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-basic-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-basic.htm: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-eventtarget-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-eventtarget.htm: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-network-error-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-network-error-sync-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-network-error-sync.htm: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-network-error.htm: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-aborted-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-aborted.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-abortedonmain-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-abortedonmain.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-overrides-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-overrides.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-overridesexpires-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-overridesexpires.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-simple-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-simple.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-synconmain-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-synconmain.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-twice-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-twice.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-aborted-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-aborted.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overrides-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overrides.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overridesexpires-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-overridesexpires.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-simple-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-simple.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-synconworker-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-synconworker.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-twice-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-timeout-worker-twice.html: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-unsent-expected.txt: Added.
- web-platform-tests/XMLHttpRequest/xmlhttprequest-unsent.htm: Added.
- web-platform-tests/w3c-import.log:
LayoutTests:
- TestExpectations: Marking xhr timeout tests as slow.
- platform/gtk/TestExpectations: Marking some XHR tests as failing.timing out.