Timeline



Jan 28, 2016:

11:21 PM Changeset in webkit [195802] by bshafiei@apple.com
  • 4 edits in branches/safari-601.1.46-branch/Source/WebCore

Merged r195751 and r195761. rdar://problem/24400716

10:50 PM Changeset in webkit [195801] by beidson@apple.com
  • 4 edits in trunk

Modern IDB: SQLite backend mismanages key generator values.
https://bugs.webkit.org/show_bug.cgi?id=153625

Reviewed by Andy Estes.

Source/WebCore:

No new tests (Many failing tests pass, a few get closer).

There's mixed assumptions about whether the value stored is the current value or the next value.

Fixing those assumptions fixes tests.

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::generateKeyNumber): Store/retrieve the correct value.
(WebCore::IDBServer::SQLiteIDBBackingStore::revertGeneratedKeyNumber): Ditto.
(WebCore::IDBServer::SQLiteIDBBackingStore::maybeUpdateKeyGeneratorNumber): Ditto.

LayoutTests:

  • platform/mac-wk1/TestExpectations:
9:37 PM Changeset in webkit [195800] by Yusuke Suzuki
  • 3 edits in trunk/Source/JavaScriptCore

[B3] REGRESSION(r195395): testComplex(64, 128) asserts on Linux with GCC
https://bugs.webkit.org/show_bug.cgi?id=153422

Reviewed by Filip Pizlo.

Previously proc.values() returns ValuesCollection (Not reference!).
values.values takes const ValueCollection&.
And later it produces IndexSet<Value>::Iterable<Procedure::ValuesCollection>,
it holds const ValueCollection& as its member.
But IndexSet<Value>::Iterable<Procedure::ValuesCollection> is just an instance.
So after creating this, the lifetime of the ValueCollection const reference finished.

To fix that, we hold ValuesCollection as a member of Procedure.
And change the signature to const ValuesCollection& Procedure::values().

  • b3/B3Procedure.cpp:

(JSC::B3::Procedure::Procedure):

  • b3/B3Procedure.h:

(JSC::B3::Procedure::values):

7:46 PM Changeset in webkit [195799] by commit-queue@webkit.org
  • 62 edits in trunk

Web Inspector: InspectorTimelineAgent doesn't need to recompile functions because it now uses the sampling profiler
https://bugs.webkit.org/show_bug.cgi?id=153500
<rdar://problem/24352458>

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-28
Reviewed by Timothy Hatcher.

Source/JavaScriptCore:

Be more explicit about enabling legacy profiling.

  • jsc.cpp:
  • runtime/Executable.cpp:

(JSC::ScriptExecutable::newCodeBlockFor):

  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::hasLegacyProfiler):
(JSC::JSGlobalObject::createProgramCodeBlock):
(JSC::JSGlobalObject::createEvalCodeBlock):
(JSC::JSGlobalObject::createModuleProgramCodeBlock):
(JSC::JSGlobalObject::hasProfiler): Deleted.

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::supportsLegacyProfiling):
(JSC::JSGlobalObject::supportsProfiling): Deleted.

Source/WebCore:

  • bindings/js/JSDOMWindowBase.cpp:

(WebCore::JSDOMWindowBase::supportsLegacyProfiling):
(WebCore::JSDOMWindowBase::supportsRichSourceInfo):
(WebCore::JSDOMWindowBase::supportsProfiling): Deleted.

  • bindings/js/JSDOMWindowBase.h:
  • bindings/js/JSWorkerGlobalScopeBase.cpp:

(WebCore::JSWorkerGlobalScopeBase::supportsLegacyProfiling):
(WebCore::JSWorkerGlobalScopeBase::supportsProfiling): Deleted.

  • bindings/js/JSWorkerGlobalScopeBase.h:
  • inspector/InspectorController.h:
  • inspector/InspectorController.cpp:

(WebCore::InspectorController::legacyProfilerEnabled):
(WebCore::InspectorController::setLegacyProfilerEnabled):
Be more explicit about enabling legacy profiling.

  • inspector/InspectorTimelineAgent.cpp:

(WebCore::InspectorTimelineAgent::willDestroyFrontendAndBackend):
(WebCore::InspectorTimelineAgent::didCreateFrontendAndBackend): Deleted.
TimelineAgent doesn't need to recompile if using the sampling profiler.
This breaks console.profile, but console.profile should move to using
the sampling profiler as well.

(WebCore::InspectorTimelineAgent::startFromConsole):
(WebCore::InspectorTimelineAgent::stopFromConsole):
(WebCore::startProfiling): Deleted.
(WebCore::stopProfiling): Deleted.
Inlined the use once static functions.

  • page/PageConsoleClient.cpp:

(WebCore::PageConsoleClient::profile):
(WebCore::PageConsoleClient::profileEnd):
Added FIXMEs for improving console.profile and profileEnd.

  • testing/Internals.cpp:

(WebCore::Internals::resetToConsistentState):
(WebCore::Internals::setLegacyJavaScriptProfilingEnabled):
(WebCore::Internals::setJavaScriptProfilingEnabled): Deleted.

  • testing/Internals.h:
  • testing/Internals.idl:

Be more explicit about enabling legacy profiling.

LayoutTests:

  • fast/profiler/*.html

Be more explicit about enabling legacy profiling.

  • inspector/sampling-profiler/eval-source-url.html

Remove an inner loop that was causing tail call optimizations
to eliminate the sourceURL we were expecting.

7:42 PM Changeset in webkit [195798] by Chris Dumez
  • 5 edits in trunk

Move attributes to the prototype for List types / and types with indexed/named property getters
https://bugs.webkit.org/show_bug.cgi?id=153599

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Rebaseline W3C tests now that more checks are passing.

  • web-platform-tests/dom/interfaces-expected.txt:
  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Move attributes to the prototype for List types / and types with indexed/named property getters.

We used to keep them on the instance because:

  1. Our GetOwnProperty lookup used to be in incorrect order for interfaces with indexed/named property getters.

-> This was fixed recently and we now match the specification and other browsers.

  1. This used to regress performance when iterating over those list types

-> Local testing seems to show that this is no longer a regression (tested Speedometer and various related Bindings PerformanceTests).

No new tests, already covered by existing tests.

  • bindings/scripts/CodeGeneratorJS.pm:

(InterfaceRequiresAttributesOnInstance): Deleted.
(AttributeShouldBeOnInstanceForCompatibility): Deleted.

7:36 PM Changeset in webkit [195797] by Antti Koivisto
  • 2 edits in trunk/Source/WebKit2

Enable background tab suspension by default on OSX
https://bugs.webkit.org/show_bug.cgi?id=153629
<rdar://problem/24402895>

Reviewed by Andreas Kling.

  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:

(WebKit::registerUserDefaultsIfNeeded):

6:58 PM Changeset in webkit [195796] by beidson@apple.com
  • 2 edits in trunk/LayoutTests

Modern IDB: Enabled all of the imported IndexedDB tests that pass in the SQLite backing store.
https://bugs.webkit.org/show_bug.cgi?id=153623

Reviewed by Andy Estes.

  • platform/mac-wk1/TestExpectations: TONS of these now pass. List of failing tests is now small.
6:02 PM Changeset in webkit [195795] by mitz@apple.com
  • 25 edits
    10 deletes in trunk

[Cocoa] Use the non-Development variants of XPC services for development
https://bugs.webkit.org/show_bug.cgi?id=152545

Reviewed by Darin Adler.

Source/WebKit2:

The purpose of the Development variants of the WebKit XPC services is to allow the service
to link against the development WebKit dylibs rather than the system ones. Instead, we
accomplish this here by including dyld environment load commands in the normal services
when the WebKit dylibs are expected to be relocated. A new build setting,
WK_RELOCATABLE_FRAMEWORKS, controls this.

To make it easy to identify engineering builds of the services at runtime, they can be
given a distinctive suffix. A new build setting, WK_XPC_SERVICE_SUFFIX, controls this.

  • Configurations/DebugRelease.xcconfig: Set WK_RELOCATABLE_FRAMEWORKS to YES and WK_XPC_SERVICE_SUFFIX to ".Development".
  • Configurations/BaseTarget.xcconfig: Make the quoted value of the WK_XPC_SERVICE_SUFFIX build setting available as a preprocessor macro.
  • Configurations/BaseXPCService.xcconfig:
    • Simplify the definition of INSTALL_PATH now that there are no Development variants.
    • Define WK_RELOCATABLE_FRAMEWORKS_LDFLAGS when building relocatable frameworks to include -dyld_env options setting DYLD_FRAMEWORK_PATH to point to the directory containing WebKit.framework and DYLD_LIBRARY_PATH to the framework’€™s Frameworks subdirectory. When not building relocatable frameworks, define WK_RELOCATABLE_FRAMEWORKS_LDFLAGS to include a -headerpad option allowing dyld environment load commands to be added after the fact.
    • Add WK_RELOCATABLE_FRAMEWORKS_LDFLAGS to OTHER_LDFLAGS.
    • Define WK_XPC_SERVICE_INSERT_LIBRARIES_DIR when building relocatable frameworks to be the path to the Frameworks subdirectory of the WebKit framework containing the service. When not building relocatable frameworks, define it to the absolute path of the Frameworks subdirectory of the installed WebKit framework.
  • Configurations/DatabaseService.xcconfig: Append WK_XPC_SERVICE_SUFFIX to PRODUCT_NAME, and remove no-longer-used definition of WK_XPC_SERVICE_VARIANT.
  • Configurations/NetworkService.xcconfig: Append WK_XPC_SERVICE_SUFFIX to PRODUCT_NAME, add WK_RELOCATABLE_FRAMEWORKS_LDFLAGS to OTHER_LDFLAGS, and remove no-longer-used definition of WK_XPC_SERVICE_VARIANT.
  • Configurations/PluginService.32.xcconfig: Ditto.
  • Configurations/PluginService.64.xcconfig: Ditto.
  • Configurations/WebContentService.xcconfig: Ditto.
  • Configurations/DatabaseService.Development.xcconfig: Removed.
  • Configurations/NetworkService.Development.xcconfig: Removed.
  • Configurations/PluginService.32.Development.xcconfig: Removed.
  • Configurations/PluginService.64.Development.xcconfig: Removed.
  • Configurations/WebContentService.Development.xcconfig: Removed.
  • DatabaseProcess/EntryPoint/mac/XPCService/DatabaseService.Development: Removed.
  • DatabaseProcess/EntryPoint/mac/XPCService/DatabaseService.Development/Info.plist: Removed.
  • DatabaseProcess/EntryPoint/mac/XPCService/DatabaseService/Info.plist: Set CFBundleIdentifier to PRODUCT_NAME in order to include the optional suffix.
  • NetworkProcess/EntryPoint/mac/XPCService/NetworkService.Development: Removed.
  • NetworkProcess/EntryPoint/mac/XPCService/NetworkService.Development/Info-OSX.plist: Removed.
  • NetworkProcess/EntryPoint/mac/XPCService/NetworkService.Development/Info-iOS.plist: Removed.
  • NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX-10.9-10.10.plist: Set CFBundleIdentifier to PRODUCT_NAME in order to include the optional suffix. Use WK_XPC_SERVICE_INSERT_LIBRARIES_DIR in the value of DYLD_INSERT_LIBRARIES.
  • NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-OSX.plist: Set CFBundleIdentifier to PRODUCT_NAME in order to include the optional suffix.
  • NetworkProcess/EntryPoint/mac/XPCService/NetworkService/Info-iOS.plist: Ditto.
  • PluginProcess/EntryPoint/mac/XPCService/PluginService.32-64-10.9-10.10.Info.plist: Ditto.
  • PluginProcess/EntryPoint/mac/XPCService/PluginService.Development: Removed.
  • PluginProcess/EntryPoint/mac/XPCService/PluginService.Development/Info.plist: Removed.
  • WebProcess/EntryPoint/mac/XPCService/WebContentService.Development: Removed.
  • WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info-OSX.plist: Removed.
  • WebProcess/EntryPoint/mac/XPCService/WebContentService.Development/Info-iOS.plist: Removed.
  • WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX-10.9-10.10.plist: Set CFBundleIdentifier to PRODUCT_NAME in order to include the optional suffix. Use WK_XPC_SERVICE_INSERT_LIBRARIES_DIR in the value of DYLD_INSERT_LIBRARIES.
  • WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-OSX.plist: Set CFBundleIdentifier to PRODUCT_NAME in order to include the optional suffix.
  • WebProcess/EntryPoint/mac/XPCService/WebContentService/Info-iOS.plist: Ditto.
  • Shared/EntryPointUtilities/mac/XPCService/XPCServiceMain.Development.mm: Removed.
  • Shared/EntryPointUtilities/mac/XPCService/XPCServiceMain.mm:

(WebKit::XPCServiceEventHandler): If stdout and stderr file descriptors are included in the

bootstrap message, hook them up to the service’s stdout and stderr, like the Development
services do.

(main): Moved code from XPCServiceMain.Development.mm to handle the optional

OverrideLanguages array.

  • UIProcess/Launcher/mac/ProcessLauncherMac.mm:

(WebKit::addDYLDEnvironmentAdditions): Addressed a FIXME.
(WebKit::serviceName): Removed forDevelopment argument and .Development service names.

Added WK_XPC_SERVICE_SUFFIX to the names.

(WebKit::connectToService): Updated for removal of forDevelopment argument. Removed

"framework-executable-path" key from the bootstrap message, because it was only used in
the Development variants.

(WebKit::connectToReExecService): Deleted.
(WebKit::createService): Removed call to connectToReExecService. Instead pass forDevelopment

to connectToService.

  • WebKit2.xcodeproj/project.pbxproj: Removed references to removed files. Removed targets for Development services. Removed Development services from script build phase that copies services into the framework in engineering builds, and made it respect WK_XPC_SERVICE_SUFFIX.

Tools:

  • Scripts/webkitdirs.pm:

(setUpGuardMallocIfNeeded): Ensure that libgmalloc is loaded into XPC services as well.

  • Scripts/webkitpy/port/driver.py:

(Driver._setup_environ_for_driver): Ensure that the DYLD_LIBRARY_PATH and ASAN_OPTIONS are

set in the XPC services as well.

  • Scripts/webkitpy/port/ios.py:

(IOSSimulatorPort.setup_environ_for_server): Ensure that malloc stack logging for leaks and

Guard Malloc are enabled in XPC services as well.

  • Scripts/webkitpy/port/mac.py:

(MacPort.setup_environ_for_server): Ditto.

4:48 PM Changeset in webkit [195794] by bshafiei@apple.com
  • 5 edits in branches/safari-601-branch/Source

Versioning.

4:35 PM Changeset in webkit [195793] by bshafiei@apple.com
  • 1 copy in tags/Safari-601.5.12

New tag.

4:23 PM WebKitGTK/Gardening/Calendar edited by clopez@igalia.com
(diff)
3:44 PM Changeset in webkit [195792] by bshafiei@apple.com
  • 5 edits in branches/safari-601.1.46-branch/Source

Versioning.

3:41 PM Changeset in webkit [195791] by bshafiei@apple.com
  • 1 copy in tags/Safari-601.1.46.94

New tag.

3:30 PM Changeset in webkit [195790] by Antti Koivisto
  • 6 edits in trunk/Source/WebCore

Tab suspension code hits asserts

Reviewed by Chris Dumez.

Enabling tab suspension and navigating around in a few tabs hits an assert in
ScriptExecutionContext::suspendActiveDOMObject. This is because suspend/resume reasons don't pair properly

  • dom/Document.cpp:

(WebCore::Document::documentWillBecomeInactive):
(WebCore::Document::suspend):
(WebCore::Document::resume):

Provide the reason as argument.

  • dom/Document.h:
  • history/CachedFrame.cpp:

(WebCore::CachedFrameBase::restore):

No need to call resumeActiveDOMObjects/resumeScriptedAnimationControllerCallbacks explicitly as Document::resume does that.

(WebCore::CachedFrame::CachedFrame):

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::commitProvisionalLoad):

  • page/Page.cpp:

(WebCore::Page::canTabSuspend):
(WebCore::Page::setIsTabSuspended):

3:28 PM Changeset in webkit [195789] by Alan Bujtas
  • 416 edits in trunk/LayoutTests

[Win] gardening after r195740. (more to follow)

Unreviewed.

  • platform/win/css1/box_properties/padding_left-expected.txt:
  • platform/win/fast/dom/HTMLTableElement/colSpan-expected.txt:
  • platform/win/fast/encoding/utf-16-big-endian-expected.txt:
  • platform/win/fast/encoding/utf-16-little-endian-expected.txt:
  • platform/win/fast/forms/001-expected.txt:
  • platform/win/fast/forms/005-expected.txt:
  • platform/win/fast/forms/auto-fill-button/input-contacts-auto-fill-button-expected.txt:
  • platform/win/fast/forms/basic-buttons-expected.txt:
  • platform/win/fast/forms/button-white-space-expected.txt:
  • platform/win/fast/forms/file/file-input-direction-expected.txt:
  • platform/win/fast/forms/form-added-to-table-expected.txt:
  • platform/win/fast/forms/form-element-geometry-expected.txt:
  • platform/win/fast/forms/form-hides-table-expected.txt:
  • platform/win/fast/forms/form-in-malformed-markup-expected.txt:
  • platform/win/fast/forms/formmove3-expected.txt:
  • platform/win/fast/forms/input-appearance-spinbutton-expected.txt:
  • platform/win/fast/forms/input-double-click-selection-gap-bug-expected.txt:
  • platform/win/fast/forms/input-table-expected.txt:
  • platform/win/fast/forms/input-value-expected.txt:
  • platform/win/fast/forms/listbox-bidi-align-expected.txt:
  • platform/win/fast/forms/preserveFormDuringResidualStyle-expected.txt:
  • platform/win/fast/forms/select-dirty-parent-pref-widths-expected.txt:
  • platform/win/fast/html/details-writing-mode-expected.txt:
  • platform/win/fast/inline-block/001-expected.txt:
  • platform/win/fast/inline-block/overflow-clip-expected.txt:
  • platform/win/fast/invalid/012-expected.txt:
  • platform/win/fast/invalid/018-expected.txt:
  • platform/win/fast/invalid/table-inside-stray-table-content-expected.txt:
  • platform/win/fast/invalid/td-inside-object-expected.txt:
  • platform/win/fast/lists/004-expected.txt:
  • platform/win/fast/lists/list-marker-before-content-table-expected.txt:
  • platform/win/fast/lists/ordered-list-with-no-ol-tag-expected.txt:
  • platform/win/fast/multicol/span/before-child-anonymous-column-block-expected.txt:
  • platform/win/fast/overflow/002-expected.txt:
  • platform/win/fast/overflow/overflow-auto-table-expected.txt:
  • platform/win/fast/overflow/overflow-rtl-expected.txt:
  • platform/win/fast/overflow/overflow-rtl-vertical-expected.txt:
  • platform/win/fast/overflow/table-overflow-float-expected.txt:
  • platform/win/fast/reflections/table-cell-expected.txt:
  • platform/win/fast/repaint/block-selection-gap-in-table-cell-expected.txt:
  • platform/win/fast/repaint/float-overflow-expected.txt:
  • platform/win/fast/repaint/float-overflow-right-expected.txt:
  • platform/win/fast/repaint/subtree-root-clip-3-expected.txt:
  • platform/win/fast/repaint/table-cell-collapsed-border-expected.txt:
  • platform/win/fast/repaint/table-cell-collapsed-border-scroll-expected.txt:
  • platform/win/fast/repaint/table-cell-move-expected.txt:
  • platform/win/fast/repaint/table-cell-overflow-expected.txt:
  • platform/win/fast/repaint/table-cell-vertical-overflow-expected.txt:
  • platform/win/fast/repaint/table-col-background-expected.txt:
  • platform/win/fast/repaint/table-collapsed-border-expected.txt:
  • platform/win/fast/repaint/table-extra-bottom-grow-expected.txt:
  • platform/win/fast/repaint/table-outer-border-expected.txt:
  • platform/win/fast/repaint/table-row-expected.txt:
  • platform/win/fast/repaint/table-section-overflow-expected.txt:
  • platform/win/fast/repaint/table-section-repaint-expected.txt:
  • platform/win/fast/repaint/table-two-pass-layout-overpaint-expected.txt:
  • platform/win/fast/repaint/table-writing-modes-h-expected.txt:
  • platform/win/fast/repaint/table-writing-modes-v-expected.txt:
  • platform/win/fast/replaced/005-expected.txt:
  • platform/win/fast/replaced/percent-height-in-anonymous-block-in-table-expected.txt:
  • platform/win/fast/replaced/selection-rect-in-table-cell-expected.txt:
  • platform/win/fast/replaced/table-percent-height-positioned-expected.txt:
  • platform/win/fast/replaced/width100percent-button-expected.txt:
  • platform/win/fast/replaced/width100percent-checkbox-expected.txt:
  • platform/win/fast/replaced/width100percent-image-expected.txt:
  • platform/win/fast/replaced/width100percent-menulist-expected.txt:
  • platform/win/fast/replaced/width100percent-radio-expected.txt:
  • platform/win/fast/ruby/ruby-inline-table-expected.txt:
  • platform/win/fast/selectors/018-expected.txt:
  • platform/win/fast/selectors/018b-expected.txt:
  • platform/win/fast/selectors/032-expected.txt:
  • platform/win/fast/selectors/043-expected.txt:
  • platform/win/fast/selectors/043b-expected.txt:
  • platform/win/fast/selectors/044-expected.txt:
  • platform/win/fast/selectors/044b-expected.txt:
  • platform/win/fast/selectors/077-expected.txt:
  • platform/win/fast/selectors/077b-expected.txt:
  • platform/win/fast/selectors/078b-expected.txt:
  • platform/win/fast/table/001-expected.txt:
  • platform/win/fast/table/002-expected.txt:
  • platform/win/fast/table/003-expected.txt:
  • platform/win/fast/table/004-expected.txt:
  • platform/win/fast/table/005-expected.txt:
  • platform/win/fast/table/006-expected.txt:
  • platform/win/fast/table/007-expected.txt:
  • platform/win/fast/table/008-expected.txt:
  • platform/win/fast/table/009-expected.txt:
  • platform/win/fast/table/010-expected.txt:
  • platform/win/fast/table/011-expected.txt:
  • platform/win/fast/table/012-expected.txt:
  • platform/win/fast/table/013-expected.txt:
  • platform/win/fast/table/015-expected.txt:
  • platform/win/fast/table/016-expected.txt:
  • platform/win/fast/table/021-expected.txt:
  • platform/win/fast/table/022-expected.txt:
  • platform/win/fast/table/023-expected.txt:
  • platform/win/fast/table/024-expected.txt:
  • platform/win/fast/table/025-expected.txt:
  • platform/win/fast/table/026-expected.txt:
  • platform/win/fast/table/028-expected.txt:
  • platform/win/fast/table/028-vertical-expected.txt:
  • platform/win/fast/table/029-expected.txt:
  • platform/win/fast/table/031-expected.txt:
  • platform/win/fast/table/032-expected.txt:
  • platform/win/fast/table/033-expected.txt:
  • platform/win/fast/table/034-expected.txt:
  • platform/win/fast/table/035-expected.txt:
  • platform/win/fast/table/035-vertical-expected.txt:
  • platform/win/fast/table/037-expected.txt:
  • platform/win/fast/table/038-expected.txt:
  • platform/win/fast/table/038-vertical-expected.txt:
  • platform/win/fast/table/039-expected.txt:
  • platform/win/fast/table/040-expected.txt:
  • platform/win/fast/table/040-vertical-expected.txt:
  • platform/win/fast/table/041-expected.txt:
  • platform/win/fast/table/100-percent-cell-width-expected.txt:
  • platform/win/fast/table/add-before-anonymous-child-expected.txt:
  • platform/win/fast/table/auto-with-percent-height-expected.txt:
  • platform/win/fast/table/auto-with-percent-height-vertical-expected.txt:
  • platform/win/fast/table/border-collapsing/001-expected.txt:
  • platform/win/fast/table/border-collapsing/001-vertical-expected.txt:
  • platform/win/fast/table/border-collapsing/002-expected.txt:
  • platform/win/fast/table/border-collapsing/002-vertical-expected.txt:
  • platform/win/fast/table/border-collapsing/003-expected.txt:
  • platform/win/fast/table/border-collapsing/003-vertical-expected.txt:
  • platform/win/fast/table/border-collapsing/004-expected.txt:
  • platform/win/fast/table/border-collapsing/004-vertical-expected.txt:
  • platform/win/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt:
  • platform/win/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt:
  • platform/win/fast/table/border-collapsing/bug14274-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-69296-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-cell-append-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-cell-remove-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-cell-border-color-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-cell-border-width-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-cell-sl-border-color-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-col-border-color-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-col-border-width-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-row-border-width-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-table-border-color-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-table-border-width-expected.txt:
  • platform/win/fast/table/border-collapsing/cached-change-tbody-border-color-expected.txt:
  • platform/win/fast/table/border-collapsing/collapsed-borders-adjoining-sections-vertical-rl-expected.txt:
  • platform/win/fast/table/border-collapsing/collapsed-borders-painted-once-on-inner-cells-expected.txt:
  • platform/win/fast/table/border-collapsing/equal-precedence-resolution-expected.txt:
  • platform/win/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt:
  • platform/win/fast/table/border-collapsing/rtl-border-collapsing-expected.txt:
  • platform/win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
  • platform/win/fast/table/caption-relayout-expected.txt:
  • platform/win/fast/table/cell-absolute-child-expected.txt:
  • platform/win/fast/table/cell-coalescing-expected.txt:
  • platform/win/fast/table/cell-width-auto-expected.txt:
  • platform/win/fast/table/cellindex-expected.txt:
  • platform/win/fast/table/click-near-anonymous-table-expected.txt:
  • platform/win/fast/table/colgroup-preceded-by-caption-expected.txt:
  • platform/win/fast/table/colgroup-spanning-groups-rules-expected.txt:
  • platform/win/fast/table/colspan-with-all-percent-cells-expected.txt:
  • platform/win/fast/table/colspanMinWidth-expected.txt:
  • platform/win/fast/table/colspanMinWidth-vertical-expected.txt:
  • platform/win/fast/table/dynamic-cellpadding-expected.txt:
  • platform/win/fast/table/dynamic-descendant-percentage-height-expected.txt:
  • platform/win/fast/table/edge-offsets-expected.txt:
  • platform/win/fast/table/empty-cells-expected.txt:
  • platform/win/fast/table/floating-th-expected.txt:
  • platform/win/fast/table/frame-and-rules-expected.txt:
  • platform/win/fast/table/generated-caption-expected.txt:
  • platform/win/fast/table/giantRowspan-expected.txt:
  • platform/win/fast/table/growCellForImageQuirk-expected.txt:
  • platform/win/fast/table/growCellForImageQuirk-vertical-expected.txt:
  • platform/win/fast/table/height-percent-test-expected.txt:
  • platform/win/fast/table/height-percent-test-vertical-expected.txt:
  • platform/win/fast/table/insert-before-anonymous-ancestors-expected.txt:
  • platform/win/fast/table/insert-cell-before-form-expected.txt:
  • platform/win/fast/table/insert-row-before-form-expected.txt:
  • platform/win/fast/table/invisible-cell-background-expected.txt:
  • platform/win/fast/table/large-width-expected.txt:
  • platform/win/fast/table/max-width-integer-overflow-expected.txt:
  • platform/win/fast/table/mozilla-bug10296-vertical-align-1-expected.txt:
  • platform/win/fast/table/mozilla-bug10296-vertical-align-2-expected.txt:
  • platform/win/fast/table/multiple-captions-display-expected.txt:
  • platform/win/fast/table/nested-percent-height-table-expected.txt:
  • platform/win/fast/table/nobr-expected.txt:
  • platform/win/fast/table/overflowHidden-expected.txt:
  • platform/win/fast/table/percent-heights-expected.txt:
  • platform/win/fast/table/percent-widths-stretch-expected.txt:
  • platform/win/fast/table/percent-widths-stretch-vertical-expected.txt:
  • platform/win/fast/table/prepend-in-anonymous-table-expected.txt:
  • platform/win/fast/table/quote-text-around-iframe-expected.txt:
  • platform/win/fast/table/relative-position-containment-expected.txt:
  • platform/win/fast/table/relative-position-offsets-expected.txt:
  • platform/win/fast/table/relative-position-stacking-expected.txt:
  • platform/win/fast/table/replaced-percent-height-expected.txt:
  • platform/win/fast/table/row-height-recalc-expected.txt:
  • platform/win/fast/table/rowspan-paint-order-expected.txt:
  • platform/win/fast/table/rowspan-paint-order-vertical-expected.txt:
  • platform/win/fast/table/rtl-cell-display-none-assert-expected.txt:
  • platform/win/fast/table/rules-attr-dynchange1-expected.txt:
  • platform/win/fast/table/rules-attr-dynchange2-expected.txt:
  • platform/win/fast/table/simple_paint-expected.txt:
  • platform/win/fast/table/spanOverlapRepaint-expected.txt:
  • platform/win/fast/table/stale-grid-crash-expected.txt:
  • platform/win/fast/table/table-after-child-in-table-expected.txt:
  • platform/win/fast/table/table-and-parts-outline-expected.txt:
  • platform/win/fast/table/table-anonymous-cell-bug-expected.txt:
  • platform/win/fast/table/table-anonymous-row-bug-expected.txt:
  • platform/win/fast/table/table-anonymous-section-bug-expected.txt:
  • platform/win/fast/table/table-before-child-in-table-expected.txt:
  • platform/win/fast/table/table-before-child-style-update-expected.txt:
  • platform/win/fast/table/table-cell-after-child-in-block-expected.txt:
  • platform/win/fast/table/table-cell-after-child-in-table-expected.txt:
  • platform/win/fast/table/table-cell-before-after-content-around-table-block-expected.txt:
  • platform/win/fast/table/table-cell-before-after-content-around-table-expected.txt:
  • platform/win/fast/table/table-cell-before-after-content-around-table-row-expected.txt:
  • platform/win/fast/table/table-cell-before-child-in-block-expected.txt:
  • platform/win/fast/table/table-cell-before-child-in-table-expected.txt:
  • platform/win/fast/table/table-cell-split-expected.txt:
  • platform/win/fast/table/table-continuation-outline-paint-crash-expected.txt:
  • platform/win/fast/table/table-display-types-expected.txt:
  • platform/win/fast/table/table-display-types-strict-expected.txt:
  • platform/win/fast/table/table-display-types-vertical-expected.txt:
  • platform/win/fast/table/table-hspace-align-center-expected.txt:
  • platform/win/fast/table/table-insert-before-non-anonymous-block-expected.txt:
  • platform/win/fast/table/table-row-after-child-in-block-expected.txt:
  • platform/win/fast/table/table-row-after-child-in-table-expected.txt:
  • platform/win/fast/table/table-row-before-after-content-around-block-expected.txt:
  • platform/win/fast/table/table-row-before-after-content-around-table-cell-expected.txt:
  • platform/win/fast/table/table-row-before-after-content-around-table-expected.txt:
  • platform/win/fast/table/table-row-before-child-in-block-expected.txt:
  • platform/win/fast/table/table-row-before-child-in-table-expected.txt:
  • platform/win/fast/table/table-row-before-child-style-update-expected.txt:
  • platform/win/fast/table/table-row-outline-paint-expected.txt:
  • platform/win/fast/table/table-row-split2-expected.txt:
  • platform/win/fast/table/table-row-style-not-updated-expected.txt:
  • platform/win/fast/table/table-row-style-not-updated-with-after-content-expected.txt:
  • platform/win/fast/table/table-row-style-not-updated-with-before-content-expected.txt:
  • platform/win/fast/table/table-section-split2-expected.txt:
  • platform/win/fast/table/table-split-expected.txt:
  • platform/win/fast/table/table-split2-expected.txt:
  • platform/win/fast/table/table-style-not-updated-expected.txt:
  • platform/win/fast/table/tableInsideCaption-expected.txt:
  • platform/win/fast/table/text-field-baseline-expected.txt:
  • platform/win/fast/table/unbreakable-images-quirk-expected.txt:
  • platform/win/fast/table/vertical-align-baseline-expected.txt:
  • platform/win/fast/table/wide-colspan-expected.txt:
  • platform/win/fast/table/wide-column-expected.txt:
  • platform/win/fast/text/atsui-negative-spacing-features-expected.txt:
  • platform/win/fast/text/atsui-spacing-features-expected.txt:
  • platform/win/fast/text/basic/001-expected.txt:
  • platform/win/fast/text/basic/006-expected.txt:
  • platform/win/fast/text/basic/007-expected.txt:
  • platform/win/fast/text/basic/generic-family-reset-expected.txt:
  • platform/win/fast/text/capitalize-boundaries-expected.txt:
  • platform/win/fast/text/international/bidi-LDB-2-CSS-expected.txt:
  • platform/win/fast/text/international/bidi-LDB-2-HTML-expected.txt:
  • platform/win/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt:
  • platform/win/fast/text/international/bidi-override-expected.txt:
  • platform/win/fast/text/textIteratorNilRenderer-expected.txt:
  • platform/win/fast/text/wbr-expected.txt:
  • platform/win/fast/text/whitespace/002-expected.txt:
  • platform/win/fast/text/whitespace/003-expected.txt:
  • platform/win/fast/text/whitespace/004-expected.txt:
  • platform/win/fast/text/whitespace/005-expected.txt:
  • platform/win/fast/text/whitespace/010-expected.txt:
  • platform/win/fast/text/whitespace/011-expected.txt:
  • platform/win/fast/text/whitespace/013-expected.txt:
  • platform/win/fast/text/whitespace/014-expected.txt:
  • platform/win/fast/text/whitespace/015-expected.txt:
  • platform/win/fast/text/whitespace/016-expected.txt:
  • platform/win/fast/text/whitespace/024-expected.txt:
  • platform/win/fast/text/whitespace/025-expected.txt:
  • platform/win/fast/text/whitespace/026-expected.txt:
  • platform/win/fast/text/whitespace/027-expected.txt:
  • platform/win/fast/text/word-break-expected.txt:
  • platform/win/fast/transforms/transform-table-row-expected.txt:
  • platform/win/fast/writing-mode/table-percent-width-quirk-expected.txt:
  • platform/win/fast/writing-mode/vertical-align-table-baseline-expected.txt:
  • platform/win/http/tests/misc/acid2-expected.txt:
  • platform/win/http/tests/misc/acid2-pixel-expected.txt:
  • platform/win/http/tests/misc/generated-content-inside-table-expected.txt:
  • platform/win/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt:
  • platform/win/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt:
  • platform/win/tables/layering/paint-test-layering-1-expected.txt:
  • platform/win/tables/layering/paint-test-layering-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10009-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10036-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10269-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10269-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10296-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10296-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1055-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10565-expected.txt:
  • platform/win/tables/mozilla/bugs/bug10633-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1067-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1067-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug11321-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1163-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1188-expected.txt:
  • platform/win/tables/mozilla/bugs/bug11944-expected.txt:
  • platform/win/tables/mozilla/bugs/bug12008-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1224-expected.txt:
  • platform/win/tables/mozilla/bugs/bug12268-expected.txt:
  • platform/win/tables/mozilla/bugs/bug12384-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1261-expected.txt:
  • platform/win/tables/mozilla/bugs/bug12709-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1271-expected.txt:
  • platform/win/tables/mozilla/bugs/bug12908-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug12908-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug12910-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1296-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1302-expected.txt:
  • platform/win/tables/mozilla/bugs/bug13105-expected.txt:
  • platform/win/tables/mozilla/bugs/bug13118-expected.txt:
  • platform/win/tables/mozilla/bugs/bug13169-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1318-expected.txt:
  • platform/win/tables/mozilla/bugs/bug13484-expected.txt:
  • platform/win/tables/mozilla/bugs/bug13526-expected.txt:
  • platform/win/tables/mozilla/bugs/bug14159-3-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1430-expected.txt:
  • platform/win/tables/mozilla/bugs/bug14323-expected.txt:
  • platform/win/tables/mozilla/bugs/bug14929-expected.txt:
  • platform/win/tables/mozilla/bugs/bug15247-expected.txt:
  • platform/win/tables/mozilla/bugs/bug15544-expected.txt:
  • platform/win/tables/mozilla/bugs/bug15933-expected.txt:
  • platform/win/tables/mozilla/bugs/bug16012-expected.txt:
  • platform/win/tables/mozilla/bugs/bug16252-expected.txt:
  • platform/win/tables/mozilla/bugs/bug17130-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug17138-expected.txt:
  • platform/win/tables/mozilla/bugs/bug17548-expected.txt:
  • platform/win/tables/mozilla/bugs/bug17587-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1800-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1802-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1802s-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1809-expected.txt:
  • platform/win/tables/mozilla/bugs/bug1828-expected.txt:
  • platform/win/tables/mozilla/bugs/bug18359-expected.txt:
  • platform/win/tables/mozilla/bugs/bug18440-expected.txt:
  • platform/win/tables/mozilla/bugs/bug18558-expected.txt:
  • platform/win/tables/mozilla/bugs/bug18664-expected.txt:
  • platform/win/tables/mozilla/bugs/bug18955-expected.txt:
  • platform/win/tables/mozilla/bugs/bug19061-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug19061-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug19356-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2050-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2123-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2267-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2296-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2469-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2479-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2479-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2479-3-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2516-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2585-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2684-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2757-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2773-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2886-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2886-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2954-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2973-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2981-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2981-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug2997-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3037-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3037-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3103-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3191-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3260-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3263-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3309-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3454-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3718-expected.txt:
  • platform/win/tables/mozilla/bugs/bug3977-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4093-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4284-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4385-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4427-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4429-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4501-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4520-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4576-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4739-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4803-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4849-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug4849-expected.txt:
  • platform/win/tables/mozilla/bugs/bug5188-expected.txt:
  • platform/win/tables/mozilla/bugs/bug5538-expected.txt:
  • platform/win/tables/mozilla/bugs/bug5797-expected.txt:
  • platform/win/tables/mozilla/bugs/bug5798-expected.txt:
  • platform/win/tables/mozilla/bugs/bug5799-expected.txt:
  • platform/win/tables/mozilla/bugs/bug5835-expected.txt:
  • platform/win/tables/mozilla/bugs/bug5838-expected.txt:
  • platform/win/tables/mozilla/bugs/bug6184-expected.txt:
  • platform/win/tables/mozilla/bugs/bug6304-expected.txt:
  • platform/win/tables/mozilla/bugs/bug6404-expected.txt:
  • platform/win/tables/mozilla/bugs/bug647-expected.txt:
  • platform/win/tables/mozilla/bugs/bug650-expected.txt:
  • platform/win/tables/mozilla/bugs/bug6674-expected.txt:
  • platform/win/tables/mozilla/bugs/bug709-expected.txt:
  • platform/win/tables/mozilla/bugs/bug7112-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug7112-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug7342-expected.txt:
  • platform/win/tables/mozilla/bugs/bug7714-expected.txt:
  • platform/win/tables/mozilla/bugs/bug8032-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug8361-expected.txt:
  • platform/win/tables/mozilla/bugs/bug8381-expected.txt:
  • platform/win/tables/mozilla/bugs/bug8950-expected.txt:
  • platform/win/tables/mozilla/bugs/bug9072-expected.txt:
  • platform/win/tables/mozilla/bugs/bug9123-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug9123-2-expected.txt:
  • platform/win/tables/mozilla/bugs/bug9271-1-expected.txt:
  • platform/win/tables/mozilla/bugs/bug963-expected.txt:
  • platform/win/tables/mozilla/bugs/bug965-expected.txt:
  • platform/win/tables/mozilla/bugs/bug9879-1-expected.txt:
3:21 PM Changeset in webkit [195788] by Yusuke Suzuki
  • 2 edits in trunk/Source/JavaScriptCore

Fix the B3 build with GCC 4.9.3
https://bugs.webkit.org/show_bug.cgi?id=151624

Reviewed by Filip Pizlo.

Due to GCC 4.9's compiler issue[1], method calls inside (2 or so) nested lambdas need to use this to avoid internal compiler errors.
[1]: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62272

  • b3/air/AirIteratedRegisterCoalescing.cpp:
3:18 PM Changeset in webkit [195787] by beidson@apple.com
  • 6 edits in trunk

Modern IDB: Fix several more problems with object store changes during cursor iteration in SQLite backend.
https://bugs.webkit.org/show_bug.cgi?id=153616

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (A few failing tests pass, a few get closer).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::clearObjectStore):

  • Modules/indexeddb/server/SQLiteIDBCursor.cpp:

(WebCore::IDBServer::SQLiteIDBCursor::resetAndRebindStatement):
(WebCore::IDBServer::SQLiteIDBCursor::bindArguments):

  • Modules/indexeddb/server/UniqueIDBDatabaseTransaction.cpp:

(WebCore::IDBServer::UniqueIDBDatabaseTransaction::iterateCursor):

LayoutTests:

  • platform/mac-wk1/TestExpectations:
3:16 PM Changeset in webkit [195786] by dbates@webkit.org
  • 2 edits in trunk/Source/WebCore

Cleanup: Make DedicatedWorkerThread::create() an inline template method
https://bugs.webkit.org/show_bug.cgi?id=153612

Apply feedback given by Andy Estes in <https://bugs.webkit.org/show_bug.cgi?id=153612#c3> that
I inadvertently did not include in <http://trac.webkit.org/changeset/195785>.

  • workers/DedicatedWorkerThread.h:

(WebCore::DedicatedWorkerThread::create): Substitute typename for class.

3:04 PM Changeset in webkit [195785] by dbates@webkit.org
  • 3 edits in trunk/Source/WebCore

Cleanup: Make DedicatedWorkerThread::create() an inline template method
https://bugs.webkit.org/show_bug.cgi?id=153612

Reviewed by Andy Estes.

Make use of variadic template arguments and std::forward() to forward the arguments passed
to DedicatedWorkerThread::create() to DedicatedWorkerThread::DedicatedWorkerThread(). This
removes the need to duplicate code whenever we modify the parameter types or number of
parameters taken by DedicatedWorkerThread::DedicatedWorkerThread().

  • workers/DedicatedWorkerThread.cpp:

(WebCore::DedicatedWorkerThread::create): Deleted.

  • workers/DedicatedWorkerThread.h: Reorganized listing of member functions such that we

group the creation/constructor and destructor functions.
(WebCore::DedicatedWorkerThread::create): Modified to be an inline template with variadic
parameters that std::forward()s its arguments to DedicatedWorkerThread::DedicatedWorkerThread().

2:52 PM Changeset in webkit [195784] by beidson@apple.com
  • 8 edits in trunk

Modern IDB: SQLite backend doesn't handle mutation during cursor iteration.
https://bugs.webkit.org/show_bug.cgi?id=153614

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (A few failing tests pass, a few get closer).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::deleteRange): Call notifyCursorsOfChanges.
(WebCore::IDBServer::SQLiteIDBBackingStore::addRecord): Ditto.

  • Modules/indexeddb/server/SQLiteIDBCursor.cpp:

(WebCore::IDBServer::SQLiteIDBCursor::SQLiteIDBCursor):
(WebCore::IDBServer::SQLiteIDBCursor::~SQLiteIDBCursor):

  • Modules/indexeddb/server/SQLiteIDBCursor.h:
  • Modules/indexeddb/server/SQLiteIDBTransaction.cpp:

(WebCore::IDBServer::SQLiteIDBTransaction::maybeOpenBackingStoreCursor): Remember these transient backing

store cursors so they can be notified of changes.

(WebCore::IDBServer::SQLiteIDBTransaction::closeCursor): Handle removing the cursor from the right set.
(WebCore::IDBServer::SQLiteIDBTransaction::notifyCursorsOfChanges):

  • Modules/indexeddb/server/SQLiteIDBTransaction.h:

LayoutTests:

  • platform/mac-wk1/TestExpectations:
2:40 PM Changeset in webkit [195783] by beidson@apple.com
  • 4 edits in trunk

Modern IDB: SQLite backend doesn't support deleting ranges with more than one key.
https://bugs.webkit.org/show_bug.cgi?id=153604

Reviewed by Andy Estes.

Source/WebCore:

No new tests (A few failing tests pass, a few get closer).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::deleteRange):

LayoutTests:

  • platform/mac-wk1/TestExpectations:
2:24 PM Changeset in webkit [195782] by achristensen@apple.com
  • 2 edits in trunk/Source/WebCore

Fix Windows build after r195774.

  • platform/network/ParsedContentRange.cpp:
1:17 PM Changeset in webkit [195781] by andersca@apple.com
  • 3 edits in trunk/Source/WebCore

Add an ArrayValue::get overload that returns a string
https://bugs.webkit.org/show_bug.cgi?id=153613

Reviewed by Tim Horton.

  • bindings/js/ArrayValue.cpp:

(WebCore::ArrayValue::get):

  • bindings/js/ArrayValue.h:
1:14 PM Changeset in webkit [195780] by clopez@igalia.com
  • 1712 edits
    23 copies
    25 adds in trunk/LayoutTests

[GTK] Unreviewed gardening after r195740.

  • platform/gtk/TestExpectations
  • platform/gtk/accessibility/table-detection-expected.txt
  • platform/gtk/css1/basic/containment-expected.png
  • platform/gtk/css1/basic/containment-expected.txt
  • platform/gtk/css1/basic/contextual_selectors-expected.png
  • platform/gtk/css1/basic/contextual_selectors-expected.txt
  • platform/gtk/css1/basic/grouping-expected.png
  • platform/gtk/css1/basic/grouping-expected.txt
  • platform/gtk/css1/basic/id_as_selector-expected.png
  • platform/gtk/css1/basic/id_as_selector-expected.txt
  • platform/gtk/css1/basic/inheritance-expected.png
  • platform/gtk/css1/basic/inheritance-expected.txt
  • platform/gtk/css1/box_properties/border-expected.png
  • platform/gtk/css1/box_properties/border-expected.txt
  • platform/gtk/css1/box_properties/border_bottom-expected.png
  • platform/gtk/css1/box_properties/border_bottom-expected.txt
  • platform/gtk/css1/box_properties/border_bottom_inline-expected.png
  • platform/gtk/css1/box_properties/border_bottom_inline-expected.txt
  • platform/gtk/css1/box_properties/border_bottom_width-expected.png
  • platform/gtk/css1/box_properties/border_bottom_width-expected.txt
  • platform/gtk/css1/box_properties/border_bottom_width_inline-expected.png
  • platform/gtk/css1/box_properties/border_bottom_width_inline-expected.txt
  • platform/gtk/css1/box_properties/border_color-expected.png
  • platform/gtk/css1/box_properties/border_color-expected.txt
  • platform/gtk/css1/box_properties/border_color_inline-expected.png
  • platform/gtk/css1/box_properties/border_color_inline-expected.txt
  • platform/gtk/css1/box_properties/border_inline-expected.png
  • platform/gtk/css1/box_properties/border_inline-expected.txt
  • platform/gtk/css1/box_properties/border_left-expected.png
  • platform/gtk/css1/box_properties/border_left-expected.txt
  • platform/gtk/css1/box_properties/border_left_inline-expected.png
  • platform/gtk/css1/box_properties/border_left_inline-expected.txt
  • platform/gtk/css1/box_properties/border_left_width-expected.png
  • platform/gtk/css1/box_properties/border_left_width-expected.txt
  • platform/gtk/css1/box_properties/border_left_width_inline-expected.png
  • platform/gtk/css1/box_properties/border_left_width_inline-expected.txt
  • platform/gtk/css1/box_properties/border_right-expected.png
  • platform/gtk/css1/box_properties/border_right-expected.txt
  • platform/gtk/css1/box_properties/border_right_inline-expected.png
  • platform/gtk/css1/box_properties/border_right_inline-expected.txt
  • platform/gtk/css1/box_properties/border_right_width-expected.png
  • platform/gtk/css1/box_properties/border_right_width-expected.txt
  • platform/gtk/css1/box_properties/border_right_width_inline-expected.png
  • platform/gtk/css1/box_properties/border_right_width_inline-expected.txt
  • platform/gtk/css1/box_properties/border_style-expected.png
  • platform/gtk/css1/box_properties/border_style-expected.txt
  • platform/gtk/css1/box_properties/border_style_inline-expected.png
  • platform/gtk/css1/box_properties/border_style_inline-expected.txt
  • platform/gtk/css1/box_properties/border_top-expected.png
  • platform/gtk/css1/box_properties/border_top-expected.txt
  • platform/gtk/css1/box_properties/border_top_inline-expected.png
  • platform/gtk/css1/box_properties/border_top_inline-expected.txt
  • platform/gtk/css1/box_properties/border_top_width-expected.png
  • platform/gtk/css1/box_properties/border_top_width-expected.txt
  • platform/gtk/css1/box_properties/border_top_width_inline-expected.png
  • platform/gtk/css1/box_properties/border_top_width_inline-expected.txt
  • platform/gtk/css1/box_properties/border_width-expected.png
  • platform/gtk/css1/box_properties/border_width-expected.txt
  • platform/gtk/css1/box_properties/border_width_inline-expected.png
  • platform/gtk/css1/box_properties/border_width_inline-expected.txt
  • platform/gtk/css1/box_properties/clear-expected.png
  • platform/gtk/css1/box_properties/clear-expected.txt
  • platform/gtk/css1/box_properties/clear_float-expected.png
  • platform/gtk/css1/box_properties/clear_float-expected.txt
  • platform/gtk/css1/box_properties/float-expected.png
  • platform/gtk/css1/box_properties/float-expected.txt
  • platform/gtk/css1/box_properties/float_elements_in_series-expected.png
  • platform/gtk/css1/box_properties/float_elements_in_series-expected.txt
  • platform/gtk/css1/box_properties/float_margin-expected.png
  • platform/gtk/css1/box_properties/float_margin-expected.txt
  • platform/gtk/css1/box_properties/float_on_text_elements-expected.png
  • platform/gtk/css1/box_properties/float_on_text_elements-expected.txt
  • platform/gtk/css1/box_properties/height-expected.png
  • platform/gtk/css1/box_properties/height-expected.txt
  • platform/gtk/css1/box_properties/margin-expected.png
  • platform/gtk/css1/box_properties/margin-expected.txt
  • platform/gtk/css1/box_properties/margin_bottom-expected.png
  • platform/gtk/css1/box_properties/margin_bottom-expected.txt
  • platform/gtk/css1/box_properties/margin_bottom_inline-expected.png
  • platform/gtk/css1/box_properties/margin_bottom_inline-expected.txt
  • platform/gtk/css1/box_properties/margin_inline-expected.png
  • platform/gtk/css1/box_properties/margin_inline-expected.txt
  • platform/gtk/css1/box_properties/margin_left-expected.png
  • platform/gtk/css1/box_properties/margin_left-expected.txt
  • platform/gtk/css1/box_properties/margin_left_inline-expected.png
  • platform/gtk/css1/box_properties/margin_left_inline-expected.txt
  • platform/gtk/css1/box_properties/margin_right-expected.png
  • platform/gtk/css1/box_properties/margin_right-expected.txt
  • platform/gtk/css1/box_properties/margin_right_inline-expected.png
  • platform/gtk/css1/box_properties/margin_right_inline-expected.txt
  • platform/gtk/css1/box_properties/margin_top-expected.png
  • platform/gtk/css1/box_properties/margin_top-expected.txt
  • platform/gtk/css1/box_properties/margin_top_inline-expected.png
  • platform/gtk/css1/box_properties/margin_top_inline-expected.txt
  • platform/gtk/css1/box_properties/padding-expected.txt
  • platform/gtk/css1/box_properties/padding_bottom-expected.png
  • platform/gtk/css1/box_properties/padding_bottom-expected.txt
  • platform/gtk/css1/box_properties/padding_bottom_inline-expected.png
  • platform/gtk/css1/box_properties/padding_bottom_inline-expected.txt
  • platform/gtk/css1/box_properties/padding_inline-expected.png
  • platform/gtk/css1/box_properties/padding_inline-expected.txt
  • platform/gtk/css1/box_properties/padding_left-expected.png
  • platform/gtk/css1/box_properties/padding_left-expected.txt
  • platform/gtk/css1/box_properties/padding_left_inline-expected.png
  • platform/gtk/css1/box_properties/padding_left_inline-expected.txt
  • platform/gtk/css1/box_properties/padding_right-expected.png
  • platform/gtk/css1/box_properties/padding_right-expected.txt
  • platform/gtk/css1/box_properties/padding_right_inline-expected.png
  • platform/gtk/css1/box_properties/padding_right_inline-expected.txt
  • platform/gtk/css1/box_properties/padding_top-expected.txt
  • platform/gtk/css1/box_properties/padding_top_inline-expected.png
  • platform/gtk/css1/box_properties/padding_top_inline-expected.txt
  • platform/gtk/css1/box_properties/width-expected.png
  • platform/gtk/css1/box_properties/width-expected.txt
  • platform/gtk/css1/cascade/cascade_order-expected.png
  • platform/gtk/css1/cascade/cascade_order-expected.txt
  • platform/gtk/css1/cascade/important-expected.png
  • platform/gtk/css1/cascade/important-expected.txt
  • platform/gtk/css1/classification/display-expected.png
  • platform/gtk/css1/classification/display-expected.txt
  • platform/gtk/css1/classification/list_style-expected.png
  • platform/gtk/css1/classification/list_style-expected.txt
  • platform/gtk/css1/classification/list_style_image-expected.png
  • platform/gtk/css1/classification/list_style_image-expected.txt
  • platform/gtk/css1/classification/list_style_position-expected.png
  • platform/gtk/css1/classification/list_style_position-expected.txt
  • platform/gtk/css1/classification/list_style_type-expected.png
  • platform/gtk/css1/classification/list_style_type-expected.txt
  • platform/gtk/css1/classification/white_space-expected.png
  • platform/gtk/css1/classification/white_space-expected.txt
  • platform/gtk/css1/color_and_background/background-expected.png
  • platform/gtk/css1/color_and_background/background-expected.txt
  • platform/gtk/css1/color_and_background/background_attachment-expected.png
  • platform/gtk/css1/color_and_background/background_attachment-expected.txt
  • platform/gtk/css1/color_and_background/background_color-expected.png
  • platform/gtk/css1/color_and_background/background_color-expected.txt
  • platform/gtk/css1/color_and_background/background_image-expected.png
  • platform/gtk/css1/color_and_background/background_image-expected.txt
  • platform/gtk/css1/color_and_background/background_position-expected.png
  • platform/gtk/css1/color_and_background/background_position-expected.txt
  • platform/gtk/css1/color_and_background/background_repeat-expected.png
  • platform/gtk/css1/color_and_background/background_repeat-expected.txt
  • platform/gtk/css1/color_and_background/color-expected.png
  • platform/gtk/css1/color_and_background/color-expected.txt
  • platform/gtk/css1/conformance/forward_compatible_parsing-expected.txt
  • platform/gtk/css1/font_properties/font-expected.png
  • platform/gtk/css1/font_properties/font-expected.txt
  • platform/gtk/css1/font_properties/font_family-expected.png
  • platform/gtk/css1/font_properties/font_family-expected.txt
  • platform/gtk/css1/font_properties/font_size-expected.png
  • platform/gtk/css1/font_properties/font_size-expected.txt
  • platform/gtk/css1/font_properties/font_style-expected.png
  • platform/gtk/css1/font_properties/font_style-expected.txt
  • platform/gtk/css1/font_properties/font_variant-expected.png
  • platform/gtk/css1/font_properties/font_variant-expected.txt
  • platform/gtk/css1/font_properties/font_weight-expected.png
  • platform/gtk/css1/font_properties/font_weight-expected.txt
  • platform/gtk/css1/formatting_model/canvas-expected.png
  • platform/gtk/css1/formatting_model/canvas-expected.txt
  • platform/gtk/css1/formatting_model/floating_elements-expected.png
  • platform/gtk/css1/formatting_model/floating_elements-expected.txt
  • platform/gtk/css1/formatting_model/height_of_lines-expected.png
  • platform/gtk/css1/formatting_model/height_of_lines-expected.txt
  • platform/gtk/css1/formatting_model/inline_elements-expected.png
  • platform/gtk/css1/formatting_model/inline_elements-expected.txt
  • platform/gtk/css1/formatting_model/replaced_elements-expected.png
  • platform/gtk/css1/formatting_model/replaced_elements-expected.txt
  • platform/gtk/css1/formatting_model/vertical_formatting-expected.txt
  • platform/gtk/css1/pseudo/anchor-expected.png
  • platform/gtk/css1/pseudo/anchor-expected.txt
  • platform/gtk/css1/pseudo/firstletter-expected.png
  • platform/gtk/css1/pseudo/firstletter-expected.txt
  • platform/gtk/css1/pseudo/firstline-expected.png
  • platform/gtk/css1/pseudo/firstline-expected.txt
  • platform/gtk/css1/pseudo/multiple_pseudo_elements-expected.png
  • platform/gtk/css1/pseudo/multiple_pseudo_elements-expected.txt
  • platform/gtk/css1/pseudo/pseudo_elements_in_selectors-expected.png
  • platform/gtk/css1/pseudo/pseudo_elements_in_selectors-expected.txt
  • platform/gtk/css1/text_properties/letter_spacing-expected.txt
  • platform/gtk/css1/text_properties/line_height-expected.png
  • platform/gtk/css1/text_properties/line_height-expected.txt
  • platform/gtk/css1/text_properties/text_align-expected.png
  • platform/gtk/css1/text_properties/text_align-expected.txt
  • platform/gtk/css1/text_properties/text_decoration-expected.png
  • platform/gtk/css1/text_properties/text_decoration-expected.txt
  • platform/gtk/css1/text_properties/text_indent-expected.png
  • platform/gtk/css1/text_properties/text_indent-expected.txt
  • platform/gtk/css1/text_properties/text_transform-expected.png
  • platform/gtk/css1/text_properties/text_transform-expected.txt
  • platform/gtk/css1/text_properties/vertical_align-expected.png
  • platform/gtk/css1/text_properties/vertical_align-expected.txt
  • platform/gtk/css1/text_properties/word_spacing-expected.png
  • platform/gtk/css1/text_properties/word_spacing-expected.txt
  • platform/gtk/css1/units/color_units-expected.png
  • platform/gtk/css1/units/color_units-expected.txt
  • platform/gtk/css1/units/length_units-expected.png
  • platform/gtk/css1/units/length_units-expected.txt
  • platform/gtk/css1/units/percentage_units-expected.png
  • platform/gtk/css1/units/percentage_units-expected.txt
  • platform/gtk/css1/units/urls-expected.png
  • platform/gtk/css1/units/urls-expected.txt
  • platform/gtk/css2.1/20110323/border-collapse-offset-002-expected.png
  • platform/gtk/css2.1/20110323/border-collapse-offset-002-expected.txt
  • platform/gtk/css2.1/20110323/border-conflict-style-079-expected.png
  • platform/gtk/css2.1/20110323/border-conflict-style-079-expected.txt
  • platform/gtk/css2.1/20110323/border-conflict-style-088-expected.png
  • platform/gtk/css2.1/20110323/border-conflict-style-088-expected.txt
  • platform/gtk/css2.1/20110323/dynamic-top-change-002-expected.txt
  • platform/gtk/css2.1/20110323/dynamic-top-change-003-expected.txt
  • platform/gtk/css2.1/20110323/inline-table-001-expected.txt
  • platform/gtk/css2.1/20110323/inline-table-003-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-001-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-002-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-003-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-004-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-005-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-006-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-007-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-013-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-014-expected.txt
  • platform/gtk/css2.1/20110323/margin-applies-to-015-expected.txt
  • platform/gtk/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png
  • platform/gtk/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt
  • platform/gtk/css2.1/20110323/table-caption-001-expected.txt
  • platform/gtk/css2.1/20110323/table-caption-optional-001-expected.txt
  • platform/gtk/css2.1/20110323/table-caption-optional-002-expected.txt
  • platform/gtk/css2.1/t040302-c61-ex-len-00-b-a-expected.txt
  • platform/gtk/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt
  • platform/gtk/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt
  • platform/gtk/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt
  • platform/gtk/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt
  • platform/gtk/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt
  • platform/gtk/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt
  • platform/gtk/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-04-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-04-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-06-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-06-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-08-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-08-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-13-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-13-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-14-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-14-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-16-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-16-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-17-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-17-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-18-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-18-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-24-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-24-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-25-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-25-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-30-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-30-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-31-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-31-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-34-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-34-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-44-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-44-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-52-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-52-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-54-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-54-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-59-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-59-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-64-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-64-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-65-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-65-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-70-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-70-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-71-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-71-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-74-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-74-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-84-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-84-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-85-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-85-d-expected.txt
  • platform/gtk/css2.1/t170602-bdr-conflct-w-94-d-expected.png
  • platform/gtk/css2.1/t170602-bdr-conflct-w-94-d-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-177-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-178-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-179-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-180-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-181-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-189-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-190-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-191-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-192-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-193-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-194-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-195-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-196-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-205-expected.txt
  • platform/gtk/css2.1/tables/table-anonymous-objects-206-expected.txt
  • platform/gtk/css3/css3-modsel-33-expected.png
  • platform/gtk/css3/css3-modsel-33-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-18-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-18-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-29-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-29-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-29b-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-29b-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-33-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-33-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-73-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-73-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-73b-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-73b-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-77-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-77-expected.txt
  • platform/gtk/css3/selectors3/html/css3-modsel-77b-expected.png
  • platform/gtk/css3/selectors3/html/css3-modsel-77b-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29b-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29b-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-33-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-33-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73b-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73b-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77-expected.txt
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77b-expected.png
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77b-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-18-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-18-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-29-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-29-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-29b-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-29b-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-33-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-33-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-73-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-73-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-73b-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-73b-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-77-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-77-expected.txt
  • platform/gtk/css3/selectors3/xml/css3-modsel-77b-expected.png
  • platform/gtk/css3/selectors3/xml/css3-modsel-77b-expected.txt
  • platform/gtk/editing/deleting/4922367-expected.txt
  • platform/gtk/editing/deleting/5126166-expected.png
  • platform/gtk/editing/deleting/5126166-expected.txt
  • platform/gtk/editing/deleting/5144139-2-expected.png
  • platform/gtk/editing/deleting/5144139-2-expected.txt
  • platform/gtk/editing/deleting/5206311-1-expected.png
  • platform/gtk/editing/deleting/5206311-1-expected.txt
  • platform/gtk/editing/deleting/5433862-2-expected.png
  • platform/gtk/editing/deleting/5433862-2-expected.txt
  • platform/gtk/editing/inserting/paragraph-separator-in-table-1-expected.png
  • platform/gtk/editing/inserting/paragraph-separator-in-table-1-expected.txt
  • platform/gtk/editing/pasteboard/innerText-inline-table-expected.png
  • platform/gtk/editing/pasteboard/innerText-inline-table-expected.txt
  • platform/gtk/editing/selection/3690703-2-expected.png
  • platform/gtk/editing/selection/3690703-2-expected.txt
  • platform/gtk/editing/selection/3690703-expected.png
  • platform/gtk/editing/selection/3690703-expected.txt
  • platform/gtk/editing/selection/3690719-expected.png
  • platform/gtk/editing/selection/3690719-expected.txt
  • platform/gtk/editing/selection/5057506-2-expected.png
  • platform/gtk/editing/selection/5057506-2-expected.txt
  • platform/gtk/editing/selection/5057506-expected.png
  • platform/gtk/editing/selection/5057506-expected.txt
  • platform/gtk/editing/selection/5131716-1-expected.txt
  • platform/gtk/editing/selection/5131716-2-expected.txt
  • platform/gtk/editing/selection/5131716-3-expected.txt
  • platform/gtk/editing/selection/5131716-4-expected.txt
  • platform/gtk/editing/selection/move-by-line-001-expected.png
  • platform/gtk/editing/selection/move-by-line-001-expected.txt
  • platform/gtk/editing/selection/select-all-004-expected.png
  • platform/gtk/editing/selection/select-all-004-expected.txt
  • platform/gtk/editing/unsupported-content/table-type-after-expected.png
  • platform/gtk/editing/unsupported-content/table-type-after-expected.txt
  • platform/gtk/editing/unsupported-content/table-type-before-expected.png
  • platform/gtk/editing/unsupported-content/table-type-before-expected.txt
  • platform/gtk/fast/block/basic/016-expected.txt
  • platform/gtk/fast/block/basic/quirk-percent-height-table-cell-expected.png
  • platform/gtk/fast/block/basic/quirk-percent-height-table-cell-expected.txt
  • platform/gtk/fast/block/float/015-expected.png
  • platform/gtk/fast/block/float/015-expected.txt
  • platform/gtk/fast/block/margin-collapse/006-expected.txt
  • platform/gtk/fast/block/margin-collapse/010-expected.txt
  • platform/gtk/fast/block/margin-collapse/011-expected.txt
  • platform/gtk/fast/block/margin-collapse/012-expected.txt
  • platform/gtk/fast/block/margin-collapse/015-expected.txt
  • platform/gtk/fast/block/margin-collapse/016-expected.txt
  • platform/gtk/fast/block/margin-collapse/017-expected.txt
  • platform/gtk/fast/block/margin-collapse/018-expected.txt
  • platform/gtk/fast/block/margin-collapse/019-expected.png
  • platform/gtk/fast/block/margin-collapse/019-expected.txt
  • platform/gtk/fast/block/margin-collapse/020-expected.png
  • platform/gtk/fast/block/margin-collapse/020-expected.txt
  • platform/gtk/fast/block/margin-collapse/021-expected.txt
  • platform/gtk/fast/block/margin-collapse/022-expected.txt
  • platform/gtk/fast/block/margin-collapse/025-expected.txt
  • platform/gtk/fast/block/margin-collapse/032-expected.txt
  • platform/gtk/fast/block/margin-collapse/033-expected.txt
  • platform/gtk/fast/block/margin-collapse/034-expected.txt
  • platform/gtk/fast/block/margin-collapse/041-expected.txt
  • platform/gtk/fast/block/margin-collapse/042-expected.txt
  • platform/gtk/fast/block/margin-collapse/055-expected.txt
  • platform/gtk/fast/block/margin-collapse/056-expected.txt
  • platform/gtk/fast/block/margin-collapse/057-expected.txt
  • platform/gtk/fast/block/margin-collapse/058-expected.txt
  • platform/gtk/fast/block/margin-collapse/059-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/006-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/010-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/011-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/012-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/015-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/016-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/017-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/018-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/019-expected.png
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/019-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/020-expected.png
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/020-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/021-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/022-expected.txt
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/025-expected.txt
  • platform/gtk/fast/block/positioning/table-cell-static-position-expected.txt
  • platform/gtk/fast/borders/border-antialiasing-expected.png
  • platform/gtk/fast/borders/border-antialiasing-expected.txt
  • platform/gtk/fast/borders/border-radius-different-width-001-expected.png
  • platform/gtk/fast/borders/border-radius-different-width-001-expected.txt
  • platform/gtk/fast/borders/table-borders-expected.png
  • platform/gtk/fast/borders/table-borders-expected.txt
  • platform/gtk/fast/css-generated-content/first-letter-in-nested-before-expected.txt
  • platform/gtk/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt
  • platform/gtk/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt
  • platform/gtk/fast/css-generated-content/table-cell-before-after-child-add-expected.txt
  • platform/gtk/fast/css-generated-content/table-parts-before-and-after-expected.txt
  • platform/gtk/fast/css-generated-content/table-row-group-with-before-expected.png
  • platform/gtk/fast/css-generated-content/table-row-group-with-before-expected.txt
  • platform/gtk/fast/css-generated-content/table-row-with-before-expected.png
  • platform/gtk/fast/css-generated-content/table-row-with-before-expected.txt
  • platform/gtk/fast/css-generated-content/table-with-before-expected.png
  • platform/gtk/fast/css-generated-content/table-with-before-expected.txt
  • platform/gtk/fast/css/003-expected.txt
  • platform/gtk/fast/css/absolute-poition-in-rtl-parent-expected.txt
  • platform/gtk/fast/css/acid2-expected.png
  • platform/gtk/fast/css/acid2-expected.txt
  • platform/gtk/fast/css/acid2-pixel-expected.png
  • platform/gtk/fast/css/acid2-pixel-expected.txt
  • platform/gtk/fast/css/bidi-override-in-anonymous-block-expected.png
  • platform/gtk/fast/css/bidi-override-in-anonymous-block-expected.txt
  • platform/gtk/fast/css/box-shadow-and-border-radius-expected.png
  • platform/gtk/fast/css/box-shadow-and-border-radius-expected.txt
  • platform/gtk/fast/css/caption-width-absolute-position-expected.txt
  • platform/gtk/fast/css/caption-width-absolute-position-offset-top-expected.txt
  • platform/gtk/fast/css/caption-width-fixed-position-expected.txt
  • platform/gtk/fast/css/caption-width-fixed-position-offset-top-expected.txt
  • platform/gtk/fast/css/caption-width-relative-position-expected.txt
  • platform/gtk/fast/css/caption-width-relative-position-offset-top-expected.txt
  • platform/gtk/fast/css/css3-nth-child-expected.png
  • platform/gtk/fast/css/css3-nth-child-expected.txt
  • platform/gtk/fast/css/focus-ring-detached-expected.png
  • platform/gtk/fast/css/focus-ring-detached-expected.txt
  • platform/gtk/fast/css/focus-ring-multiline-expected.png
  • platform/gtk/fast/css/focus-ring-multiline-expected.txt
  • platform/gtk/fast/css/h1-in-section-elements-expected.png
  • platform/gtk/fast/css/h1-in-section-elements-expected.txt
  • platform/gtk/fast/css/min-width-with-spanned-cell-expected.txt
  • platform/gtk/fast/css/percentage-non-integer-expected.png
  • platform/gtk/fast/css/percentage-non-integer-expected.txt
  • platform/gtk/fast/css/table-text-align-quirk-expected.txt
  • platform/gtk/fast/css/table-text-align-strict-expected.txt
  • platform/gtk/fast/dom/34176-expected.png
  • platform/gtk/fast/dom/34176-expected.txt
  • platform/gtk/fast/dom/HTMLTableElement/colSpan-expected.png
  • platform/gtk/fast/dom/HTMLTableElement/colSpan-expected.txt
  • platform/gtk/fast/dom/HTMLTableElement/createCaption-expected.png
  • platform/gtk/fast/dom/HTMLTableElement/createCaption-expected.txt
  • platform/gtk/fast/dom/row-inner-text-expected.png
  • platform/gtk/fast/dom/row-inner-text-expected.txt
  • platform/gtk/fast/dynamic/001-expected.txt
  • platform/gtk/fast/dynamic/containing-block-change-expected.png
  • platform/gtk/fast/dynamic/containing-block-change-expected.txt
  • platform/gtk/fast/dynamic/float-withdrawal-expected.png
  • platform/gtk/fast/dynamic/float-withdrawal-expected.txt
  • platform/gtk/fast/dynamic/insert-before-table-part-in-continuation-expected.png
  • platform/gtk/fast/dynamic/insert-before-table-part-in-continuation-expected.txt
  • platform/gtk/fast/dynamic/subtree-table-cell-height-expected.txt
  • platform/gtk/fast/encoding/utf-16-big-endian-expected.png
  • platform/gtk/fast/encoding/utf-16-big-endian-expected.txt
  • platform/gtk/fast/encoding/utf-16-little-endian-expected.png
  • platform/gtk/fast/encoding/utf-16-little-endian-expected.txt
  • platform/gtk/fast/forms/001-expected.png
  • platform/gtk/fast/forms/001-expected.txt
  • platform/gtk/fast/forms/005-expected.txt
  • platform/gtk/fast/forms/basic-buttons-expected.png
  • platform/gtk/fast/forms/basic-buttons-expected.txt
  • platform/gtk/fast/forms/form-element-geometry-expected.png
  • platform/gtk/fast/forms/form-element-geometry-expected.txt
  • platform/gtk/fast/forms/form-hides-table-expected.png
  • platform/gtk/fast/forms/form-hides-table-expected.txt
  • platform/gtk/fast/forms/form-in-malformed-markup-expected.txt
  • platform/gtk/fast/forms/formmove3-expected.png
  • platform/gtk/fast/forms/formmove3-expected.txt
  • platform/gtk/fast/forms/input-table-expected.png
  • platform/gtk/fast/forms/input-table-expected.txt
  • platform/gtk/fast/forms/listbox-bidi-align-expected.png
  • platform/gtk/fast/forms/listbox-bidi-align-expected.txt
  • platform/gtk/fast/forms/preserveFormDuringResidualStyle-expected.txt
  • platform/gtk/fast/forms/select-dirty-parent-pref-widths-expected.png
  • platform/gtk/fast/forms/select-dirty-parent-pref-widths-expected.txt
  • platform/gtk/fast/html/details-writing-mode-expected.png
  • platform/gtk/fast/html/details-writing-mode-expected.txt
  • platform/gtk/fast/inline-block/001-expected.txt
  • platform/gtk/fast/inline-block/overflow-clip-expected.png
  • platform/gtk/fast/inline-block/overflow-clip-expected.txt
  • platform/gtk/fast/invalid/012-expected.txt
  • platform/gtk/fast/invalid/018-expected.txt
  • platform/gtk/fast/lists/004-expected.png
  • platform/gtk/fast/lists/004-expected.txt
  • platform/gtk/fast/lists/list-marker-before-content-table-expected.png
  • platform/gtk/fast/lists/list-marker-before-content-table-expected.txt
  • platform/gtk/fast/multicol/span/before-child-anonymous-column-block-expected.txt
  • platform/gtk/fast/multicol/table-vertical-align-expected.png
  • platform/gtk/fast/overflow/002-expected.png
  • platform/gtk/fast/overflow/002-expected.txt
  • platform/gtk/fast/overflow/overflow-rtl-expected.png
  • platform/gtk/fast/overflow/overflow-rtl-expected.txt
  • platform/gtk/fast/overflow/overflow-rtl-vertical-expected.png
  • platform/gtk/fast/overflow/overflow-rtl-vertical-expected.txt
  • platform/gtk/fast/overflow/table-overflow-float-expected.txt
  • platform/gtk/fast/reflections/table-cell-expected.txt
  • platform/gtk/fast/repaint/block-selection-gap-in-table-cell-expected.txt
  • platform/gtk/fast/repaint/float-overflow-expected.png
  • platform/gtk/fast/repaint/float-overflow-expected.txt
  • platform/gtk/fast/repaint/float-overflow-right-expected.png
  • platform/gtk/fast/repaint/float-overflow-right-expected.txt
  • platform/gtk/fast/repaint/subtree-root-clip-3-expected.txt
  • platform/gtk/fast/repaint/table-cell-collapsed-border-expected.png
  • platform/gtk/fast/repaint/table-cell-collapsed-border-expected.txt
  • platform/gtk/fast/repaint/table-cell-collapsed-border-scroll-expected.txt
  • platform/gtk/fast/repaint/table-cell-move-expected.png
  • platform/gtk/fast/repaint/table-cell-move-expected.txt
  • platform/gtk/fast/repaint/table-cell-overflow-expected.txt
  • platform/gtk/fast/repaint/table-cell-vertical-overflow-expected.png
  • platform/gtk/fast/repaint/table-cell-vertical-overflow-expected.txt
  • platform/gtk/fast/repaint/table-col-background-expected.txt
  • platform/gtk/fast/repaint/table-collapsed-border-expected.txt
  • platform/gtk/fast/repaint/table-extra-bottom-grow-expected.png
  • platform/gtk/fast/repaint/table-extra-bottom-grow-expected.txt
  • platform/gtk/fast/repaint/table-outer-border-expected.txt
  • platform/gtk/fast/repaint/table-row-expected.txt
  • platform/gtk/fast/repaint/table-section-overflow-expected.txt
  • platform/gtk/fast/repaint/table-section-repaint-expected.txt
  • platform/gtk/fast/repaint/table-two-pass-layout-overpaint-expected.png
  • platform/gtk/fast/repaint/table-two-pass-layout-overpaint-expected.txt
  • platform/gtk/fast/repaint/table-writing-modes-h-expected.txt
  • platform/gtk/fast/repaint/table-writing-modes-v-expected.txt
  • platform/gtk/fast/replaced/005-expected.png
  • platform/gtk/fast/replaced/005-expected.txt
  • platform/gtk/fast/replaced/percent-height-in-anonymous-block-in-table-expected.png
  • platform/gtk/fast/replaced/percent-height-in-anonymous-block-in-table-expected.txt
  • platform/gtk/fast/replaced/selection-rect-in-table-cell-expected.png
  • platform/gtk/fast/replaced/selection-rect-in-table-cell-expected.txt
  • platform/gtk/fast/replaced/table-percent-height-positioned-expected.txt
  • platform/gtk/fast/replaced/width100percent-checkbox-expected.png
  • platform/gtk/fast/replaced/width100percent-checkbox-expected.txt
  • platform/gtk/fast/replaced/width100percent-image-expected.png
  • platform/gtk/fast/replaced/width100percent-image-expected.txt
  • platform/gtk/fast/replaced/width100percent-menulist-expected.png
  • platform/gtk/fast/replaced/width100percent-menulist-expected.txt
  • platform/gtk/fast/replaced/width100percent-radio-expected.png
  • platform/gtk/fast/replaced/width100percent-radio-expected.txt
  • platform/gtk/fast/replaced/width100percent-searchfield-expected.png
  • platform/gtk/fast/replaced/width100percent-searchfield-expected.txt
  • platform/gtk/fast/replaced/width100percent-textarea-expected.png
  • platform/gtk/fast/replaced/width100percent-textarea-expected.txt
  • platform/gtk/fast/replaced/width100percent-textfield-expected.png
  • platform/gtk/fast/replaced/width100percent-textfield-expected.txt
  • platform/gtk/fast/selectors/077-expected.png
  • platform/gtk/fast/selectors/077-expected.txt
  • platform/gtk/fast/selectors/077b-expected.png
  • platform/gtk/fast/selectors/077b-expected.txt
  • platform/gtk/fast/table/002-expected.png
  • platform/gtk/fast/table/002-expected.txt
  • platform/gtk/fast/table/005-expected.png
  • platform/gtk/fast/table/005-expected.txt
  • platform/gtk/fast/table/007-expected.png
  • platform/gtk/fast/table/007-expected.txt
  • platform/gtk/fast/table/008-expected.txt
  • platform/gtk/fast/table/009-expected.png
  • platform/gtk/fast/table/009-expected.txt
  • platform/gtk/fast/table/012-expected.txt
  • platform/gtk/fast/table/013-expected.png
  • platform/gtk/fast/table/013-expected.txt
  • platform/gtk/fast/table/021-expected.png
  • platform/gtk/fast/table/021-expected.txt
  • platform/gtk/fast/table/023-expected.png
  • platform/gtk/fast/table/023-expected.txt
  • platform/gtk/fast/table/024-expected.txt
  • platform/gtk/fast/table/025-expected.png
  • platform/gtk/fast/table/025-expected.txt
  • platform/gtk/fast/table/028-expected.png
  • platform/gtk/fast/table/028-expected.txt
  • platform/gtk/fast/table/028-vertical-expected.png
  • platform/gtk/fast/table/028-vertical-expected.txt
  • platform/gtk/fast/table/029-expected.png
  • platform/gtk/fast/table/029-expected.txt
  • platform/gtk/fast/table/031-expected.txt
  • platform/gtk/fast/table/032-expected.txt
  • platform/gtk/fast/table/034-expected.txt
  • platform/gtk/fast/table/038-expected.png
  • platform/gtk/fast/table/038-expected.txt
  • platform/gtk/fast/table/038-vertical-expected.png
  • platform/gtk/fast/table/038-vertical-expected.txt
  • platform/gtk/fast/table/039-expected.png
  • platform/gtk/fast/table/039-expected.txt
  • platform/gtk/fast/table/040-expected.png
  • platform/gtk/fast/table/040-expected.txt
  • platform/gtk/fast/table/040-vertical-expected.png
  • platform/gtk/fast/table/040-vertical-expected.txt
  • platform/gtk/fast/table/100-percent-cell-width-expected.png
  • platform/gtk/fast/table/100-percent-cell-width-expected.txt
  • platform/gtk/fast/table/add-before-anonymous-child-expected.png
  • platform/gtk/fast/table/add-before-anonymous-child-expected.txt
  • platform/gtk/fast/table/border-collapsing/001-expected.png
  • platform/gtk/fast/table/border-collapsing/001-expected.txt
  • platform/gtk/fast/table/border-collapsing/001-vertical-expected.png
  • platform/gtk/fast/table/border-collapsing/001-vertical-expected.txt
  • platform/gtk/fast/table/border-collapsing/002-expected.png
  • platform/gtk/fast/table/border-collapsing/002-expected.txt
  • platform/gtk/fast/table/border-collapsing/002-vertical-expected.png
  • platform/gtk/fast/table/border-collapsing/002-vertical-expected.txt
  • platform/gtk/fast/table/border-collapsing/003-expected.txt
  • platform/gtk/fast/table/border-collapsing/003-vertical-expected.txt
  • platform/gtk/fast/table/border-collapsing/004-expected.png
  • platform/gtk/fast/table/border-collapsing/004-expected.txt
  • platform/gtk/fast/table/border-collapsing/004-vertical-expected.png
  • platform/gtk/fast/table/border-collapsing/004-vertical-expected.txt
  • platform/gtk/fast/table/border-collapsing/border-collapsing-head-foot-expected.png
  • platform/gtk/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt
  • platform/gtk/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.png
  • platform/gtk/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt
  • platform/gtk/fast/table/border-collapsing/bug14274-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-69296-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-69296-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-cell-append-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-cell-append-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-cell-remove-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-cell-remove-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-cell-border-color-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-cell-border-width-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-change-cell-border-width-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-cell-sl-border-color-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-col-border-color-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-col-border-width-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-change-col-border-width-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-row-border-color-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-change-row-border-color-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-row-border-width-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-table-border-color-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-table-border-width-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-tbody-border-color-expected.png
  • platform/gtk/fast/table/border-collapsing/cached-change-tbody-border-color-expected.txt
  • platform/gtk/fast/table/border-collapsing/cached-change-tbody-border-width-expected.txt
  • platform/gtk/fast/table/border-collapsing/collapsed-borders-adjoining-sections-vertical-rl-expected.txt
  • platform/gtk/fast/table/border-collapsing/collapsed-borders-painted-once-on-inner-cells-expected.txt
  • platform/gtk/fast/table/border-collapsing/equal-precedence-resolution-expected.txt
  • platform/gtk/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt
  • platform/gtk/fast/table/border-collapsing/rtl-border-collapsing-expected.png
  • platform/gtk/fast/table/border-collapsing/rtl-border-collapsing-expected.txt
  • platform/gtk/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png
  • platform/gtk/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt
  • platform/gtk/fast/table/caption-relayout-expected.txt
  • platform/gtk/fast/table/cell-absolute-child-expected.png
  • platform/gtk/fast/table/cell-absolute-child-expected.txt
  • platform/gtk/fast/table/cell-width-auto-expected.txt
  • platform/gtk/fast/table/colspan-with-all-percent-cells-expected.png
  • platform/gtk/fast/table/colspan-with-all-percent-cells-expected.txt
  • platform/gtk/fast/table/colspanMinWidth-expected.png
  • platform/gtk/fast/table/colspanMinWidth-expected.txt
  • platform/gtk/fast/table/colspanMinWidth-vertical-expected.png
  • platform/gtk/fast/table/colspanMinWidth-vertical-expected.txt
  • platform/gtk/fast/table/dynamic-cellpadding-expected.png
  • platform/gtk/fast/table/dynamic-cellpadding-expected.txt
  • platform/gtk/fast/table/edge-offsets-expected.png
  • platform/gtk/fast/table/edge-offsets-expected.txt
  • platform/gtk/fast/table/empty-cells-expected.png
  • platform/gtk/fast/table/empty-cells-expected.txt
  • platform/gtk/fast/table/frame-and-rules-expected.png
  • platform/gtk/fast/table/frame-and-rules-expected.txt
  • platform/gtk/fast/table/giantRowspan-expected.png
  • platform/gtk/fast/table/giantRowspan-expected.txt
  • platform/gtk/fast/table/growCellForImageQuirk-expected.txt
  • platform/gtk/fast/table/growCellForImageQuirk-vertical-expected.txt
  • platform/gtk/fast/table/height-percent-test-expected.txt
  • platform/gtk/fast/table/height-percent-test-vertical-expected.txt
  • platform/gtk/fast/table/invisible-cell-background-expected.txt
  • platform/gtk/fast/table/large-width-expected.png
  • platform/gtk/fast/table/large-width-expected.txt
  • platform/gtk/fast/table/max-width-integer-overflow-expected.txt
  • platform/gtk/fast/table/mozilla-bug10296-vertical-align-1-expected.txt
  • platform/gtk/fast/table/mozilla-bug10296-vertical-align-2-expected.txt
  • platform/gtk/fast/table/nobr-expected.png
  • platform/gtk/fast/table/nobr-expected.txt
  • platform/gtk/fast/table/overflowHidden-expected.png
  • platform/gtk/fast/table/overflowHidden-expected.txt
  • platform/gtk/fast/table/percent-heights-expected.png
  • platform/gtk/fast/table/percent-heights-expected.txt
  • platform/gtk/fast/table/percent-widths-stretch-expected.png
  • platform/gtk/fast/table/percent-widths-stretch-expected.txt
  • platform/gtk/fast/table/percent-widths-stretch-vertical-expected.txt
  • platform/gtk/fast/table/prepend-in-anonymous-table-expected.png
  • platform/gtk/fast/table/prepend-in-anonymous-table-expected.txt
  • platform/gtk/fast/table/relative-position-containment-expected.txt
  • platform/gtk/fast/table/relative-position-offsets-expected.txt
  • platform/gtk/fast/table/relative-position-stacking-expected.txt
  • platform/gtk/fast/table/replaced-percent-height-expected.png
  • platform/gtk/fast/table/replaced-percent-height-expected.txt
  • platform/gtk/fast/table/row-height-recalc-expected.png
  • platform/gtk/fast/table/row-height-recalc-expected.txt
  • platform/gtk/fast/table/rowspan-paint-order-expected.png
  • platform/gtk/fast/table/rowspan-paint-order-expected.txt
  • platform/gtk/fast/table/rowspan-paint-order-vertical-expected.png
  • platform/gtk/fast/table/rowspan-paint-order-vertical-expected.txt
  • platform/gtk/fast/table/simple_paint-expected.txt
  • platform/gtk/fast/table/spanOverlapRepaint-expected.png
  • platform/gtk/fast/table/spanOverlapRepaint-expected.txt
  • platform/gtk/fast/table/stale-grid-crash-expected.png
  • platform/gtk/fast/table/stale-grid-crash-expected.txt
  • platform/gtk/fast/table/table-anonymous-cell-bug-expected.txt
  • platform/gtk/fast/table/table-anonymous-row-bug-expected.txt
  • platform/gtk/fast/table/table-anonymous-section-bug-expected.txt
  • platform/gtk/fast/table/table-before-child-style-update-expected.txt
  • platform/gtk/fast/table/table-cell-before-after-content-around-table-block-expected.txt
  • platform/gtk/fast/table/table-cell-before-after-content-around-table-expected.txt
  • platform/gtk/fast/table/table-cell-before-after-content-around-table-row-expected.txt
  • platform/gtk/fast/table/table-cell-before-child-in-table-expected.txt
  • platform/gtk/fast/table/table-cell-split-expected.txt
  • platform/gtk/fast/table/table-display-types-expected.txt
  • platform/gtk/fast/table/table-display-types-strict-expected.txt
  • platform/gtk/fast/table/table-display-types-vertical-expected.txt
  • platform/gtk/fast/table/table-insert-before-non-anonymous-block-expected.txt
  • platform/gtk/fast/table/table-row-before-after-content-around-block-expected.txt
  • platform/gtk/fast/table/table-row-before-after-content-around-table-cell-expected.txt
  • platform/gtk/fast/table/table-row-before-after-content-around-table-expected.txt
  • platform/gtk/fast/table/table-row-before-child-style-update-expected.txt
  • platform/gtk/fast/table/table-row-outline-paint-expected.png
  • platform/gtk/fast/table/table-row-outline-paint-expected.txt
  • platform/gtk/fast/table/table-row-split2-expected.txt
  • platform/gtk/fast/table/table-row-style-not-updated-expected.txt
  • platform/gtk/fast/table/table-row-style-not-updated-with-after-content-expected.txt
  • platform/gtk/fast/table/table-row-style-not-updated-with-before-content-expected.txt
  • platform/gtk/fast/table/table-section-split2-expected.txt
  • platform/gtk/fast/table/table-split-expected.txt
  • platform/gtk/fast/table/table-split2-expected.txt
  • platform/gtk/fast/table/table-style-not-updated-expected.txt
  • platform/gtk/fast/table/wide-colspan-expected.txt
  • platform/gtk/fast/table/wide-column-expected.txt
  • platform/gtk/fast/text/atsui-negative-spacing-features-expected.png
  • platform/gtk/fast/text/atsui-negative-spacing-features-expected.txt
  • platform/gtk/fast/text/atsui-spacing-features-expected.png
  • platform/gtk/fast/text/atsui-spacing-features-expected.txt
  • platform/gtk/fast/text/basic/generic-family-reset-expected.png
  • platform/gtk/fast/text/basic/generic-family-reset-expected.txt
  • platform/gtk/fast/text/international/003-expected.png
  • platform/gtk/fast/text/international/003-expected.txt
  • platform/gtk/fast/text/international/bidi-LDB-2-CSS-expected.png
  • platform/gtk/fast/text/international/bidi-LDB-2-CSS-expected.txt
  • platform/gtk/fast/text/international/bidi-LDB-2-HTML-expected.png
  • platform/gtk/fast/text/international/bidi-LDB-2-HTML-expected.txt
  • platform/gtk/fast/text/international/bidi-LDB-2-formatting-characters-expected.png
  • platform/gtk/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt
  • platform/gtk/fast/text/international/bidi-override-expected.txt
  • platform/gtk/fast/text/wbr-expected.txt
  • platform/gtk/fast/text/whitespace/002-expected.txt
  • platform/gtk/fast/text/whitespace/003-expected.txt
  • platform/gtk/fast/text/whitespace/004-expected.txt
  • platform/gtk/fast/text/whitespace/005-expected.txt
  • platform/gtk/fast/text/whitespace/010-expected.txt
  • platform/gtk/fast/text/whitespace/011-expected.txt
  • platform/gtk/fast/text/whitespace/013-expected.txt
  • platform/gtk/fast/text/whitespace/014-expected.txt
  • platform/gtk/fast/text/whitespace/015-expected.txt
  • platform/gtk/fast/text/whitespace/016-expected.txt
  • platform/gtk/fast/text/whitespace/025-expected.txt
  • platform/gtk/fast/text/whitespace/026-expected.txt
  • platform/gtk/fast/writing-mode/table-percent-width-quirk-expected.txt
  • platform/gtk/fast/writing-mode/vertical-align-table-baseline-expected.png
  • platform/gtk/fast/writing-mode/vertical-align-table-baseline-expected.txt
  • platform/gtk/http/tests/misc/acid2-expected.png
  • platform/gtk/http/tests/misc/acid2-pixel-expected.png
  • platform/gtk/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png
  • platform/gtk/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.png
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.txt
  • platform/gtk/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.txt
  • platform/gtk/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png
  • platform/gtk/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt
  • platform/gtk/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png
  • platform/gtk/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.txt
  • platform/gtk/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png
  • platform/gtk/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt
  • platform/gtk/tables/layering/paint-test-layering-1-expected.png
  • platform/gtk/tables/layering/paint-test-layering-1-expected.txt
  • platform/gtk/tables/layering/paint-test-layering-2-expected.png
  • platform/gtk/tables/layering/paint-test-layering-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug10009-expected.png
  • platform/gtk/tables/mozilla/bugs/bug10009-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug101201-expected.png
  • platform/gtk/tables/mozilla/bugs/bug101201-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug101674-expected.png
  • platform/gtk/tables/mozilla/bugs/bug101674-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug10296-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1055-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1055-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug10565-expected.png
  • platform/gtk/tables/mozilla/bugs/bug10565-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug10633-expected.png
  • platform/gtk/tables/mozilla/bugs/bug10633-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1067-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1067-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1067-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug106795-expected.png
  • platform/gtk/tables/mozilla/bugs/bug106795-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug106816-expected.png
  • platform/gtk/tables/mozilla/bugs/bug106816-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug113235-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug113235-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug113424-expected.png
  • platform/gtk/tables/mozilla/bugs/bug113424-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1163-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1188-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1188-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug12008-expected.png
  • platform/gtk/tables/mozilla/bugs/bug12008-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug120107-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug120364-expected.png
  • platform/gtk/tables/mozilla/bugs/bug120364-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1224-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1224-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug12268-expected.png
  • platform/gtk/tables/mozilla/bugs/bug12268-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug12709-expected.png
  • platform/gtk/tables/mozilla/bugs/bug12709-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1271-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug12908-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug12908-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug12908-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug12910-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1296-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1296-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1302-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1302-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug13169-expected.png
  • platform/gtk/tables/mozilla/bugs/bug13169-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1318-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1318-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug137388-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug137388-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug137388-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug137388-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug137388-3-expected.png
  • platform/gtk/tables/mozilla/bugs/bug137388-3-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug139524-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug139524-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug139524-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug139524-3-expected.png
  • platform/gtk/tables/mozilla/bugs/bug139524-3-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug139524-4-expected.png
  • platform/gtk/tables/mozilla/bugs/bug139524-4-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1430-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1430-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug14323-expected.png
  • platform/gtk/tables/mozilla/bugs/bug14323-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1474-expected.png
  • platform/gtk/tables/mozilla/bugs/bug14929-expected.png
  • platform/gtk/tables/mozilla/bugs/bug14929-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug15247-expected.png
  • platform/gtk/tables/mozilla/bugs/bug15247-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug154780-expected.png
  • platform/gtk/tables/mozilla/bugs/bug154780-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug15544-expected.png
  • platform/gtk/tables/mozilla/bugs/bug15544-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug159108-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug15933-expected.png
  • platform/gtk/tables/mozilla/bugs/bug15933-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug16012-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug16252-expected.png
  • platform/gtk/tables/mozilla/bugs/bug16252-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug17138-expected.png
  • platform/gtk/tables/mozilla/bugs/bug17138-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug175455-4-expected.png
  • platform/gtk/tables/mozilla/bugs/bug175455-4-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug17548-expected.png
  • platform/gtk/tables/mozilla/bugs/bug17548-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug17587-expected.png
  • platform/gtk/tables/mozilla/bugs/bug17587-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1800-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1800-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1802-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1802-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1802s-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1802s-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug1809-expected.png
  • platform/gtk/tables/mozilla/bugs/bug1809-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug18440-expected.png
  • platform/gtk/tables/mozilla/bugs/bug18440-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug18664-expected.png
  • platform/gtk/tables/mozilla/bugs/bug18664-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug18955-expected.png
  • platform/gtk/tables/mozilla/bugs/bug18955-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug19061-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug19061-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug19061-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug19061-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug19356-expected.png
  • platform/gtk/tables/mozilla/bugs/bug19356-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug20804-expected.png
  • platform/gtk/tables/mozilla/bugs/bug20804-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2123-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug215629-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug219693-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug219693-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug219693-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug219693-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug22019-expected.png
  • platform/gtk/tables/mozilla/bugs/bug22019-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug220536-expected.png
  • platform/gtk/tables/mozilla/bugs/bug220536-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug222336-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug22246-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug22246-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug22246-2a-expected.png
  • platform/gtk/tables/mozilla/bugs/bug22246-2a-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug22246-3-expected.png
  • platform/gtk/tables/mozilla/bugs/bug22246-3-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug22246-3a-expected.png
  • platform/gtk/tables/mozilla/bugs/bug22246-3a-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug22513-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2296-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2296-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug23235-expected.png
  • platform/gtk/tables/mozilla/bugs/bug23235-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug24200-expected.png
  • platform/gtk/tables/mozilla/bugs/bug24200-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2479-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2479-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2479-3-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug25004-expected.png
  • platform/gtk/tables/mozilla/bugs/bug25004-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug25074-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug25663-expected.png
  • platform/gtk/tables/mozilla/bugs/bug25663-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug26553-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2684-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2684-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug269566-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug277062-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2773-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2773-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug27993-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug27993-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2886-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2886-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug28933-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug29058-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug29058-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug29314-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug29429-expected.png
  • platform/gtk/tables/mozilla/bugs/bug29429-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2954-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2981-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2981-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2981-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2981-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug2997-expected.png
  • platform/gtk/tables/mozilla/bugs/bug2997-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug30273-expected.png
  • platform/gtk/tables/mozilla/bugs/bug30273-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug30559-expected.png
  • platform/gtk/tables/mozilla/bugs/bug30559-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug3103-expected.png
  • platform/gtk/tables/mozilla/bugs/bug3103-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug32205-3-expected.png
  • platform/gtk/tables/mozilla/bugs/bug32205-3-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug3260-expected.png
  • platform/gtk/tables/mozilla/bugs/bug3260-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug32841-expected.png
  • platform/gtk/tables/mozilla/bugs/bug33137-expected.png
  • platform/gtk/tables/mozilla/bugs/bug33137-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug33855-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug3454-expected.png
  • platform/gtk/tables/mozilla/bugs/bug3454-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug38916-expected.png
  • platform/gtk/tables/mozilla/bugs/bug38916-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug3977-expected.png
  • platform/gtk/tables/mozilla/bugs/bug3977-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4093-expected.png
  • platform/gtk/tables/mozilla/bugs/bug4093-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug42187-expected.png
  • platform/gtk/tables/mozilla/bugs/bug42187-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4385-expected.png
  • platform/gtk/tables/mozilla/bugs/bug4385-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4427-expected.png
  • platform/gtk/tables/mozilla/bugs/bug4427-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug44505-expected.png
  • platform/gtk/tables/mozilla/bugs/bug44505-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4501-expected.png
  • platform/gtk/tables/mozilla/bugs/bug4501-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4527-expected.png
  • platform/gtk/tables/mozilla/bugs/bug4527-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug45350-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug45486-expected.png
  • platform/gtk/tables/mozilla/bugs/bug45486-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4576-expected.png
  • platform/gtk/tables/mozilla/bugs/bug4576-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug46268-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug46268-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug46268-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug46268-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug46368-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug46368-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug46623-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug46623-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug46623-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug46623-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug47432-expected.png
  • platform/gtk/tables/mozilla/bugs/bug47432-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4803-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4849-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug4849-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug51727-expected.png
  • platform/gtk/tables/mozilla/bugs/bug51727-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug5188-expected.png
  • platform/gtk/tables/mozilla/bugs/bug5188-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug52505-expected.png
  • platform/gtk/tables/mozilla/bugs/bug52505-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug52506-expected.png
  • platform/gtk/tables/mozilla/bugs/bug52506-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug53690-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug53690-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug53690-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug53690-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug53891-expected.png
  • platform/gtk/tables/mozilla/bugs/bug53891-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug5538-expected.png
  • platform/gtk/tables/mozilla/bugs/bug5538-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug55789-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug56201-expected.png
  • platform/gtk/tables/mozilla/bugs/bug56201-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug57828-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug57828-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug5797-expected.png
  • platform/gtk/tables/mozilla/bugs/bug5797-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug5835-expected.png
  • platform/gtk/tables/mozilla/bugs/bug5835-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug59354-expected.png
  • platform/gtk/tables/mozilla/bugs/bug59354-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug60804-expected.png
  • platform/gtk/tables/mozilla/bugs/bug60804-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug60807-expected.png
  • platform/gtk/tables/mozilla/bugs/bug60807-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug6184-expected.png
  • platform/gtk/tables/mozilla/bugs/bug6184-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug6304-expected.png
  • platform/gtk/tables/mozilla/bugs/bug6304-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug6404-expected.png
  • platform/gtk/tables/mozilla/bugs/bug6404-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug647-expected.png
  • platform/gtk/tables/mozilla/bugs/bug647-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug6674-expected.png
  • platform/gtk/tables/mozilla/bugs/bug6674-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug68998-expected.png
  • platform/gtk/tables/mozilla/bugs/bug68998-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug69382-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug69382-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug69382-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug69382-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug72359-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug7342-expected.png
  • platform/gtk/tables/mozilla/bugs/bug7342-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug7714-expected.png
  • platform/gtk/tables/mozilla/bugs/bug7714-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug78162-expected.png
  • platform/gtk/tables/mozilla/bugs/bug78162-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug82946-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug82946-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug86708-expected.png
  • platform/gtk/tables/mozilla/bugs/bug86708-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug8950-expected.png
  • platform/gtk/tables/mozilla/bugs/bug8950-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug9123-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug9123-1-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug9123-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug9123-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug92143-expected.png
  • platform/gtk/tables/mozilla/bugs/bug92143-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug92647-2-expected.png
  • platform/gtk/tables/mozilla/bugs/bug92647-2-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug963-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug96334-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug97383-expected.png
  • platform/gtk/tables/mozilla/bugs/bug97383-expected.txt
  • platform/gtk/tables/mozilla/bugs/bug9879-1-expected.png
  • platform/gtk/tables/mozilla/bugs/bug9879-1-expected.txt
  • platform/gtk/tables/mozilla/collapsing_borders/bug41262-3-expected.png
  • platform/gtk/tables/mozilla/collapsing_borders/bug41262-3-expected.txt
  • platform/gtk/tables/mozilla/core/bloomberg-expected.png
  • platform/gtk/tables/mozilla/core/bloomberg-expected.txt
  • platform/gtk/tables/mozilla/core/borders-expected.png
  • platform/gtk/tables/mozilla/core/borders-expected.txt
  • platform/gtk/tables/mozilla/core/cell_heights-expected.png
  • platform/gtk/tables/mozilla/core/cell_heights-expected.txt
  • platform/gtk/tables/mozilla/core/col_span-expected.png
  • platform/gtk/tables/mozilla/core/col_span-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_auto_autoFix-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_auto_autoFix-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_auto_fix-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_auto_fix-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_auto_fixPer-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_auto_fixPer-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_auto_per-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_auto_per-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_fix_autoFix-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_fix_autoFix-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_fix_fix-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_fix_fix-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_fix_fixPer-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_fix_fixPer-expected.txt
  • platform/gtk/tables/mozilla/core/col_widths_fix_per-expected.png
  • platform/gtk/tables/mozilla/core/col_widths_fix_per-expected.txt
  • platform/gtk/tables/mozilla/core/margins-expected.txt
  • platform/gtk/tables/mozilla/core/misc-expected.png
  • platform/gtk/tables/mozilla/core/misc-expected.txt
  • platform/gtk/tables/mozilla/core/nested1-expected.png
  • platform/gtk/tables/mozilla/core/nested1-expected.txt
  • platform/gtk/tables/mozilla/core/one_row-expected.png
  • platform/gtk/tables/mozilla/core/one_row-expected.txt
  • platform/gtk/tables/mozilla/core/table_frame-expected.png
  • platform/gtk/tables/mozilla/core/table_frame-expected.txt
  • platform/gtk/tables/mozilla/core/table_heights-expected.png
  • platform/gtk/tables/mozilla/core/table_heights-expected.txt
  • platform/gtk/tables/mozilla/core/table_rules-expected.txt
  • platform/gtk/tables/mozilla/core/table_widths-expected.png
  • platform/gtk/tables/mozilla/core/table_widths-expected.txt
  • platform/gtk/tables/mozilla/dom/insertColGroups1-expected.png
  • platform/gtk/tables/mozilla/dom/insertColGroups1-expected.txt
  • platform/gtk/tables/mozilla/dom/insertColGroups2-expected.png
  • platform/gtk/tables/mozilla/dom/insertColGroups2-expected.txt
  • platform/gtk/tables/mozilla/dom/insertCols1-expected.png
  • platform/gtk/tables/mozilla/dom/insertCols1-expected.txt
  • platform/gtk/tables/mozilla/dom/insertCols2-expected.png
  • platform/gtk/tables/mozilla/dom/insertCols2-expected.txt
  • platform/gtk/tables/mozilla/dom/insertCols3-expected.png
  • platform/gtk/tables/mozilla/dom/insertCols3-expected.txt
  • platform/gtk/tables/mozilla/dom/insertCols4-expected.png
  • platform/gtk/tables/mozilla/dom/insertCols4-expected.txt
  • platform/gtk/tables/mozilla/dom/insertCols5-expected.png
  • platform/gtk/tables/mozilla/dom/insertCols5-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_layers-opacity-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_layers-opacity-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_position-table-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_position-table-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-cell-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-group-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-expected.txt
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-group-expected.png
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt
  • platform/gtk/tables/mozilla/marvin/body_thead-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_align_center-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_align_center-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_align_justify-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_align_justify-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_align_left-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_align_left-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_align_right-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_align_right-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_span-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_span-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_width_pct-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_width_pct-expected.txt
  • platform/gtk/tables/mozilla/marvin/colgroup_width_px-expected.png
  • platform/gtk/tables/mozilla/marvin/colgroup_width_px-expected.txt
  • platform/gtk/tables/mozilla/marvin/table_overflow_hidden_td-expected.png
  • platform/gtk/tables/mozilla/marvin/table_overflow_hidden_td-expected.txt
  • platform/gtk/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.png
  • platform/gtk/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt
  • platform/gtk/tables/mozilla/marvin/table_row_align_center-expected.png
  • platform/gtk/tables/mozilla/marvin/table_row_align_center-expected.txt
  • platform/gtk/tables/mozilla/marvin/table_row_align_left-expected.png
  • platform/gtk/tables/mozilla/marvin/table_row_align_left-expected.txt
  • platform/gtk/tables/mozilla/marvin/table_row_align_right-expected.png
  • platform/gtk/tables/mozilla/marvin/table_row_align_right-expected.txt
  • platform/gtk/tables/mozilla/marvin/table_rules_groups-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_black-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_black-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_blue-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_gray-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_green-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_green-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_lime-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_navy-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_olive-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_purple-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_red-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_red-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_silver-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_teal-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_white-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_white-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_cellpadding_pct-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_td_width-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_td_width-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_th_colspan-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_th_colspan-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_th_width-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_th_width-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_width_percent-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_width_percent-expected.txt
  • platform/gtk/tables/mozilla/marvin/tables_width_px-expected.png
  • platform/gtk/tables/mozilla/marvin/tables_width_px-expected.txt
  • platform/gtk/tables/mozilla/marvin/tbody_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/tbody_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/tbody_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/tbody_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/tbody_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/tbody_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/tbody_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/tbody_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/td_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/td_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/td_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/td_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/td_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/td_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/td_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/td_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/tfoot_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/th_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/th_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/th_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/th_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/th_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/th_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/th_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/th_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/thead_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/thead_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/thead_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/thead_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/thead_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/thead_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/thead_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/thead_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_black-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_black-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_blue-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_gray-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_green-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_green-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_lime-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_navy-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_olive-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_purple-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_red-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_red-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_silver-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_teal-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_white-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_white-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/tr_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/tr_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_align_char-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_align_char-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_span-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_span-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_width_px-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_width_px-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_col_width_rel-expected.png
  • platform/gtk/tables/mozilla/marvin/x_col_width_rel-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_colgroup_align_char-expected.png
  • platform/gtk/tables/mozilla/marvin/x_colgroup_align_char-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_colgroup_span-expected.png
  • platform/gtk/tables/mozilla/marvin/x_colgroup_span-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_colgroup_width_rel-expected.png
  • platform/gtk/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tbody_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_align_center-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_align_center-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_align_char-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_align_char-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_align_justify-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_align_justify-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_align_left-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_align_left-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_align_right-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_align_right-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_td_width-expected.png
  • platform/gtk/tables/mozilla/marvin/x_td_width-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_align_center-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_align_center-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_align_char-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_align_char-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_align_justify-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_align_justify-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_align_left-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_align_left-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_align_right-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_align_right-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_rowspan-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_rowspan-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_th_width-expected.png
  • platform/gtk/tables/mozilla/marvin/x_th_width-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_thead_valign_top-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tr_align_char-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tr_align_char-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_baseline-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_baseline-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_bottom-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_middle-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_middle-expected.txt
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_top-expected.png
  • platform/gtk/tables/mozilla/marvin/x_tr_valign_top-expected.txt
  • platform/gtk/tables/mozilla/other/cell_widths-expected.png
  • platform/gtk/tables/mozilla/other/cell_widths-expected.txt
  • platform/gtk/tables/mozilla/other/ms-expected.png
  • platform/gtk/tables/mozilla/other/ms-expected.txt
  • platform/gtk/tables/mozilla/other/nested2-expected.png
  • platform/gtk/tables/mozilla/other/nested2-expected.txt
  • platform/gtk/tables/mozilla/other/nestedTables-expected.png
  • platform/gtk/tables/mozilla/other/nestedTables-expected.txt
  • platform/gtk/tables/mozilla/other/slashlogo-expected.png
  • platform/gtk/tables/mozilla/other/slashlogo-expected.txt
  • platform/gtk/tables/mozilla/other/test3-expected.png
  • platform/gtk/tables/mozilla/other/test3-expected.txt
  • platform/gtk/tables/mozilla/other/test6-expected.png
  • platform/gtk/tables/mozilla/other/test6-expected.txt
  • platform/gtk/tables/mozilla/other/wa_table_thtd_rowspan-expected.png
  • platform/gtk/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt
  • platform/gtk/tables/mozilla/other/wa_table_tr_align-expected.png
  • platform/gtk/tables/mozilla/other/wa_table_tr_align-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/97619-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/97619-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1010-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1010-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1128-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1128-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1164-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1164-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug128876-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-1-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14159-2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1647-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1647-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1725-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug1725-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug17826-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug17826-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug21518-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug21518-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug22122-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug22122-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug23847-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug23847-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3105-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3105-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug56024-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug56024-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug59252-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug59252-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug72393-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug72393-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug7243-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug7243-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug8499-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug8499-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug85016-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug85016-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug91057-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.png
  • platform/gtk/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/core/captions1-expected.png
  • platform/gtk/tables/mozilla_expected_failures/core/captions1-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/core/captions2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/core/captions2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/core/col_span2-expected.png
  • platform/gtk/tables/mozilla_expected_failures/core/col_span2-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/core/cols1-expected.png
  • platform/gtk/tables/mozilla_expected_failures/core/cols1-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/core/columns-expected.png
  • platform/gtk/tables/mozilla_expected_failures/core/columns-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/core/standards1-expected.png
  • platform/gtk/tables/mozilla_expected_failures/core/standards1-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png
  • platform/gtk/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png
  • platform/gtk/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/other/empty_cells-expected.png
  • platform/gtk/tables/mozilla_expected_failures/other/empty_cells-expected.txt
  • platform/gtk/tables/mozilla_expected_failures/other/test4-expected.png
  • platform/gtk/tables/mozilla_expected_failures/other/test4-expected.txt
1:06 PM Changeset in webkit [195779] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebInspectorUI

Web Inspector: Avoid recreating Timeline's DataGridNode data multiple times
https://bugs.webkit.org/show_bug.cgi?id=153608

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-28
Reviewed by Timothy Hatcher.

  • UserInterface/Views/LayoutTimelineDataGridNode.js:

(WebInspector.LayoutTimelineDataGridNode.prototype.get data):

  • UserInterface/Views/RenderingFrameTimelineDataGridNode.js:

(WebInspector.RenderingFrameTimelineDataGridNode.prototype.get data):

  • UserInterface/Views/ScriptTimelineDataGridNode.js:

(WebInspector.ScriptTimelineDataGridNode.prototype.get data):
Cache the data when we create it the first time.

12:50 PM FTLJIT edited by fpizlo@apple.com
(diff)
12:46 PM FTLJIT edited by fpizlo@apple.com
(diff)
12:35 PM Changeset in webkit [195778] by Chris Dumez
  • 8 edits in trunk

EventHandler IDL attributes should be enumerable
https://bugs.webkit.org/show_bug.cgi?id=153595

Reviewed by Sam Weinig.

LayoutTests/imported/w3c:

Rebaseline W3C HTML test now that EventHandler attributes are enumerable,
as per the specification.

  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Most of our EventHandler IDL attributes were marked as [NotEnumerable]
but should not have been according to the specification:

Firefox and Chrome behave according to the specification.
This patch aligns our behavior.

No new tests, already covered by existing tests.

  • dom/Document.idl:
  • dom/GlobalEventHandlers.idl:
  • page/WindowEventHandlers.idl:

LayoutTests:

Rebaseline test now that more EventHandler attributes are enumerable.

  • js/dom/dom-static-property-for-in-iteration-expected.txt:
12:20 PM Changeset in webkit [195777] by bshafiei@apple.com
  • 2 edits in branches/safari-601-branch/Source/WebCore

Merged r192700. rdar://problem/19861992

12:18 PM Changeset in webkit [195776] by bshafiei@apple.com
  • 2 edits in branches/safari-601-branch/Source/WebCore

Merged r194235. rdar://problem/23944407

12:16 PM Changeset in webkit [195775] by bshafiei@apple.com
  • 3 edits in branches/safari-601-branch/Source/WebCore

Merged r192166. rdar://problem/22956040

12:13 PM Changeset in webkit [195774] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

Windows build fix; PRId64 formatting macro for int64_t undefined, so provide Windows-specific alternative.

  • platform/network/ParsedContentRange.cpp:
12:13 PM Changeset in webkit [195773] by bshafiei@apple.com
  • 2 edits in branches/safari-601-branch/Source/WebKit/win

Merge patch for rdar://problem/23025615.

12:11 PM Changeset in webkit [195772] by bshafiei@apple.com
  • 3 edits in branches/safari-601-branch/Source/WebKit/win

Merge patch for rdar://problem/23025615.

12:03 PM Changeset in webkit [195771] by ChangSeok Oh
  • 2 edits in trunk/Source/WebCore

[ThreadedCompositor] Fix flickers happening on video when entering/leaving fullscreen.
https://bugs.webkit.org/show_bug.cgi?id=153585

Reviewed by Michael Catanzaro.

Video thumbnail flickers where threaded compositor is enabled. This is because
a content buffer is not set to a target layer which changes before swapBuffer.
This is a very rare case though, it happens where video size changes many times in a short period.

  • platform/graphics/texmap/TextureMapperPlatformLayerProxy.cpp:

(WebCore::TextureMapperPlatformLayerProxy::activateOnCompositingThread):

11:52 AM Changeset in webkit [195770] by jer.noble@apple.com
  • 11 edits in trunk/Source/WebCore

Allow CachedResourceLoader clients to opt out of the MemoryCache.
https://bugs.webkit.org/show_bug.cgi?id=153549

Reviewed by Darin Adler.

Add a flag to ResourceLoaderOptions which allow loader clients to opt out of having
resources stored in the MemoryCache.

  • loader/ResourceLoaderOptions.h:

(WebCore::ResourceLoaderOptions::ResourceLoaderOptions):
(WebCore::ResourceLoaderOptions::cachingPolicy):

Existing clients will have to add the (default) AllowCaching flag when they create a
ResourceLoaderOptions object.

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::startLoadingMainResource):

  • loader/MediaResourceLoader.cpp:

(WebCore::MediaResourceLoader::start):

  • loader/NetscapePlugInStreamLoader.cpp:

(WebCore::NetscapePlugInStreamLoader::NetscapePlugInStreamLoader):
(WebCore::ResourceLoaderOptions::setCachingPolicy):

  • loader/icon/IconLoader.cpp:

(WebCore::IconLoader::startLoading):

  • platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm:

(WebCore::WebCoreAVFResourceLoader::startLoading):

Every time the CachedResource or CachedResourceLoader accesses the MemoryCache, check
to see whether the resource or the request have allowed caching before adding resources
to, removing resources from, or sourcing resource data from the MemoryCache.

  • loader/cache/CachedResource.cpp:

(WebCore::CachedResource::~CachedResource):
(WebCore::CachedResource::failBeforeStarting):
(WebCore::CachedResource::addClientToSet):
(WebCore::CachedResource::removeClient):
(WebCore::CachedResource::setDecodedSize):
(WebCore::CachedResource::setEncodedSize):
(WebCore::CachedResource::didAccessDecodedData):

  • loader/cache/CachedResource.h:

(WebCore::CachedResource::allowsCaching):

  • loader/cache/CachedResourceLoader.cpp:

(WebCore::CachedResourceLoader::requestUserCSSStyleSheet):
(WebCore::CachedResourceLoader::requestResource):
(WebCore::CachedResourceLoader::revalidateResource):
(WebCore::CachedResourceLoader::loadResource):
(WebCore::CachedResourceLoader::printPreloadStats):
(WebCore::CachedResourceLoader::defaultCachedResourceOptions):

  • loader/cache/CachedResourceRequest.h:

(WebCore::CachedResourceRequest::allowsCaching):

11:40 AM Changeset in webkit [195769] by enrica@apple.com
  • 11 edits in trunk/Source

Should avoid navigation for some data detector urls.
https://bugs.webkit.org/show_bug.cgi?id=153600

Reviewed by Tim Horton.

Source/WebCore:

Adding helper function to decide whether the default action should be performed.

  • editing/cocoa/DataDetection.h:
  • editing/cocoa/DataDetection.mm:

(WebCore::DataDetection::shouldCancelDefaultAction):

Source/WebKit2:

When a tap is commited, we normally generate a synthetic click if
the node responds to click events.
This patch adds the logic to prevent that from happening if the node
is a data detector link with certain characteristics (calendar event, telephone, etc.).
If this is the case, we compute the interaction information as position, send it
over to the UI process and notify that we did not handle the tap.
The page client is now also notified of this event and can show the data detector sheet if
appropriate.

  • UIProcess/PageClient.h:
  • UIProcess/ios/PageClientImplIOS.h:
  • UIProcess/ios/PageClientImplIOS.mm:

(WebKit::PageClientImpl::toolTipChanged):
(WebKit::PageClientImpl::didNotHandleTapAsClick):
(WebKit::PageClientImpl::decidePolicyForGeolocationPermissionRequest):

  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView clearSelection]):
(-[WKContentView _didNotHandleTapAsClick:]):
(-[WKContentView _positionInformationDidChange:]):

  • UIProcess/ios/WebPageProxyIOS.mm:

(WebKit::WebPageProxy::didNotHandleTapAsClick):

  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::commitPotentialTap):

11:34 AM Changeset in webkit [195768] by Csaba Osztrogonác
  • 2 edits in trunk/Tools

Unreviewed buildfix after r195743.

  • WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:

(WTR::AccessibilityUIElement::isPressActionSupported):

11:30 AM Changeset in webkit [195767] by bshafiei@apple.com
  • 9 edits
    3 adds in branches/safari-601.1.46-branch

Merged r195607. rdar://problem/23962929

11:21 AM Changeset in webkit [195766] by hyatt@apple.com
  • 2 edits in trunk/Source/WebCore

Roll out r194555, as it introduced some bad regressions and was not
correct.

  • rendering/RenderText.cpp:

(WebCore::RenderText::computePreferredLogicalWidths):

11:20 AM Changeset in webkit [195765] by beidson@apple.com
  • 5 edits in trunk

Modern IDB: Index uniqueness broken in the SQLite backend.
https://bugs.webkit.org/show_bug.cgi?id=153596

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (Many failing tests now pass, others improve).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::createIndex):
(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedHasIndexRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedPutIndexKey):
(WebCore::IDBServer::SQLiteIDBBackingStore::updateOneIndexForAddRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::updateAllIndexesForAddRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::addRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::updateIndexesForAddRecord): Deleted.

  • Modules/indexeddb/server/SQLiteIDBBackingStore.h:

LayoutTests:

  • platform/mac-wk1/TestExpectations:
11:17 AM Changeset in webkit [195764] by jer.noble@apple.com
  • 16 edits
    5 adds in trunk

Custom protocol loading through AVFoundation does not support byte-range requests.
https://bugs.webkit.org/show_bug.cgi?id=152919
<rdar://problem/23664657>

Reviewed by Alex Christensen.

Source/WebCore:

Tests: http/tests/xmlhttprequest/blob-request-byte-range.html

TestWebkitAPI/Tests/WebCore/ParsedContentRange.cpp

When loading data through the AVAssetResourceLoaderDelegateProtocol, AVFoundation will issue
requests for specific byte-ranges by adding a "Range:" HTTP header to the NSURLRequest it
passes to the delegate. WebCore ignores this header, loads the entire resource, and replies
to the callback with the requested subset of the entire resource.

For byte-range requests near the end of a resource, this is inefficient, as the entire
resource up to, and including, the requested range must be loaded before any data can be
returned. Explicitly handle byte-range requests by creating a CachedResourceRequest with the
underlying NSURLRequest (which includes the "Range:" header) rather than just the request's
URL. BlobResourceHandle must be modified to add the "Content-Range:" response header to the
ResourceResponse.

To facilitate both generating and parsing the "Content-Range:" header, add a new
ParsedContentRange class for use by ResourceResponse and its clients. This class provides
methods both for parsing a "Content-Range" header value string, and for generating the
header value from elemental values.

  • platform/graphics/avfoundation/objc/WebCoreAVFResourceLoader.mm:

(WebCore::WebCoreAVFResourceLoader::startLoading):
(WebCore::WebCoreAVFResourceLoader::responseReceived):
(WebCore::WebCoreAVFResourceLoader::fulfillRequestWithResource):

  • platform/network/BlobResourceHandle.cpp:

(WebCore::BlobResourceHandle::BlobResourceHandle):
(WebCore::BlobResourceHandle::didGetSize):
(WebCore::BlobResourceHandle::seek):
(WebCore::BlobResourceHandle::notifyResponseOnSuccess):

  • platform/network/BlobResourceHandle.h:
  • platform/network/HTTPHeaderNames.in:
  • platform/network/ParsedContentRange.cpp: Added.

(WebCore::areContentRangeValuesValid):
(WebCore::parseContentRange):
(WebCore::ParsedContentRange::ParsedContentRange):
(WebCore::ParsedContentRange::headerValue):

  • platform/network/ParsedContentRange.h: Added.

(WebCore::ParsedContentRange::ParsedContentRange):
(WebCore::ParsedContentRange::isValid):
(WebCore::ParsedContentRange::firstBytePosition):
(WebCore::ParsedContentRange::lastBytePosition):
(WebCore::ParsedContentRange::instanceLength):

  • platform/network/ResourceResponseBase.cpp:

(WebCore::ResourceResponseBase::updateHeaderParsedState):
(WebCore::parseContentRangeInHeader):
(WebCore::ResourceResponseBase::contentRange):

  • platform/network/ResourceResponseBase.h:
  • CMakeLists.txt:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:

Tools:

Add tests for new ParsedContntRange class.

  • TestWebKitAPI/PlatformWin.cmake:
  • TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj:
  • TestWebKitAPI/TestWebKitAPI.vcxproj/TestWebKitAPI.vcxproj.filters:
  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebCore/ParsedContentRange.cpp: Added.

(TestWebKitAPI::TEST):

11:07 AM Changeset in webkit [195763] by bshafiei@apple.com
  • 2 edits in branches/safari-601.1.46-branch/Source/WebKit2

Merge follow-up fix for r194750.

11:04 AM Changeset in webkit [195762] by bshafiei@apple.com
  • 2 edits in branches/safari-601.1.46-branch/Source/WebCore

Merge follow-up fix for r195625.

11:00 AM Changeset in webkit [195761] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/Source/WebCore/html/HTMLImageElement.h

Follow-up fix to r195751. rdar://problem/24192280

10:55 AM Changeset in webkit [195760] by Chris Dumez
  • 7 edits in trunk

Storage interface's attributes / operations should be enumerable
https://bugs.webkit.org/show_bug.cgi?id=153573

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Rebaseline W3C HTML test now that more checks are passing.

  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Storage interface's attributes / operations should be enumerable:

Firefox matches the specification.

No new tests, already covered by existing test.

  • storage/Storage.idl:
10:41 AM Changeset in webkit [195759] by commit-queue@webkit.org
  • 3 edits in trunk/Tools
Use isAnyWindows() instead of isCygwin()
isWindows() in Perl scripts.

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

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-28
Reviewed by Alex Christensen.

  • Scripts/webkitdirs.pm:

(determineNumberOfCPUs):
(jscPath):
(checkFrameworks):
(setupCygwinEnv):
(wrapperPrefixIfNeeded):
(cmakeGeneratedBuildfile):
(generateBuildSystemFromCMakeProject):

  • Scripts/webkitperl/features.pm:

(libraryContainsSymbol):

10:41 AM Changeset in webkit [195758] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/Source/WebCore/bindings/js/JSHistoryCustom.cpp

Follow-up fix for rdar://problem/24337870

10:40 AM Changeset in webkit [195757] by Nikita Vasilyev
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Tabs height should be 2px less to match Safari
https://bugs.webkit.org/show_bug.cgi?id=153581
<rdar://problem/24383501>

Reviewed by Darin Adler.

  • UserInterface/Views/TabBar.css:

(.tab-bar):

(.tab-bar > .item):
(.tab-bar > .item.pinned):
Make the new tab button ("+") a square.

10:33 AM Changeset in webkit [195756] by Brent Fulgham
  • 2 edits in trunk/Source/WebKit2

[iOS] Update Web Process sandbox profile for audiodeviceclock access
https://bugs.webkit.org/show_bug.cgi?id=153571
<rdar://problem/24134612>

Reviewed by Alexey Proskuryakov.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
10:28 AM Changeset in webkit [195755] by adachan@apple.com
  • 25 edits
    2 copies
    1 add in trunk/Source

Get WebVideoFullscreenManager and related classes to also compile for Mac platform
with video presentation mode support.
https://bugs.webkit.org/show_bug.cgi?id=153221

Reviewed by Eric Carlson.

Source/WebCore:

No new tests, no actual behavior change with a stub implementation of WebVideoFullscreenInterfaceMac.

  • WebCore.xcodeproj/project.pbxproj:

Add PlatformView.h, WebVideoFullscreenChangeObserver.h, and WebVideoFullscreenInterfaceMac.h.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::HTMLMediaElement):
(WebCore::HTMLMediaElement::mediaPlayerEngineUpdated):
(WebCore::HTMLMediaElement::shouldOverrideBackgroundPlaybackRestriction):

  • html/HTMLMediaElement.h:

Enable the code that deals with the video fullscreen layer also for Mac platform with
video presentation mode support.

  • platform/cocoa/PlatformView.h:

Header file for declaring the view types for each Cocoa platform.

  • platform/cocoa/WebVideoFullscreenChangeObserver.h:

(WebCore::WebVideoFullscreenChangeObserver::~WebVideoFullscreenChangeObserver):
Interface declaration moved from WebVideoFullscreenInterfaceAVKit.h.

  • platform/cocoa/WebVideoFullscreenInterface.h:

Stop guarding the declaration of WebVideoFullscreenInterface to be iOS specific. It is now
enabled for iOS and Mac platform with video presentation mode support.

  • platform/cocoa/WebVideoFullscreenModel.h:
  • platform/cocoa/WebVideoFullscreenModelVideoElement.h:
  • platform/cocoa/WebVideoFullscreenModelVideoElement.mm:

Enable also for Mac platform with video presentation mode support.
(WebVideoFullscreenModelVideoElement::setVideoFullscreenLayer):
Set the video fullscreen layer's anchor point to (0, 0) since we are not changing the position of
the video layer on Mac.

  • platform/ios/WebVideoFullscreenControllerAVKit.mm:

Import WebVideoFullscreenChangeObserver.h now that the interface declaration has been moved to that file.

  • platform/ios/WebVideoFullscreenInterfaceAVKit.h:

Move the declaration of WebVideoFullscreenChangeObserver to a separate header.

  • platform/ios/WebVideoFullscreenInterfaceAVKit.mm:

Import WebVideoFullscreenChangeObserver.h now that the interface declaration has been moved to that file.

  • platform/mac/WebVideoFullscreenInterfaceMac.h: Added.
  • platform/mac/WebVideoFullscreenInterfaceMac.mm:

(WebCore::WebVideoFullscreenInterfaceMac::~WebVideoFullscreenInterfaceMac):
(WebCore::WebVideoFullscreenInterfaceMac::setWebVideoFullscreenModel):
(WebCore::WebVideoFullscreenInterfaceMac::setWebVideoFullscreenChangeObserver):
(WebCore::WebVideoFullscreenInterfaceMac::resetMediaState):
(WebCore::WebVideoFullscreenInterfaceMac::setDuration):
(WebCore::WebVideoFullscreenInterfaceMac::setCurrentTime):
(WebCore::WebVideoFullscreenInterfaceMac::setBufferedTime):
(WebCore::WebVideoFullscreenInterfaceMac::setRate):
(WebCore::WebVideoFullscreenInterfaceMac::setVideoDimensions):
(WebCore::WebVideoFullscreenInterfaceMac::setSeekableRanges):
(WebCore::WebVideoFullscreenInterfaceMac::setCanPlayFastReverse):
(WebCore::WebVideoFullscreenInterfaceMac::setAudioMediaSelectionOptions):
(WebCore::WebVideoFullscreenInterfaceMac::setLegibleMediaSelectionOptions):
(WebCore::WebVideoFullscreenInterfaceMac::setExternalPlayback):
(WebCore::WebVideoFullscreenInterfaceMac::setWirelessVideoPlaybackDisabled):
(WebCore::WebVideoFullscreenInterfaceMac::setupFullscreen):
(WebCore::WebVideoFullscreenInterfaceMac::enterFullscreen):
(WebCore::WebVideoFullscreenInterfaceMac::exitFullscreen):
(WebCore::WebVideoFullscreenInterfaceMac::cleanupFullscreen):
(WebCore::WebVideoFullscreenInterfaceMac::invalidate):
(WebCore::WebVideoFullscreenInterfaceMac::requestHideAndExitFullscreen):
(WebCore::WebVideoFullscreenInterfaceMac::preparedToReturnToInline):
(WebCore::WebVideoFullscreenInterfaceMac::setMode):
(WebCore::WebVideoFullscreenInterfaceMac::clearMode):
(WebCore::WebVideoFullscreenInterfaceMac::mayAutomaticallyShowVideoPictureInPicture):
(WebCore::WebVideoFullscreenInterfaceMac::applicationDidBecomeActive):
(WebCore::supportsPictureInPicture):
Add a stub implementation of WebVideoFullscreenInterfaceMac.

Source/WebKit2:

  • UIProcess/Cocoa/WebVideoFullscreenManagerProxy.h:
  • UIProcess/Cocoa/WebVideoFullscreenManagerProxy.messages.in:
  • UIProcess/Cocoa/WebVideoFullscreenManagerProxy.mm:

Enabled also for Mac with video presentation mode support.
(-[WKLayerHostView makeBackingLayer]):
Make sure this view uses CALayerHost for its layer.
(WebKit::WebVideoFullscreenManagerProxy::invalidate):
(WebKit::WebVideoFullscreenManagerProxy::createModelAndInterface):
(WebKit::WebVideoFullscreenManagerProxy::ensureInterface):
(WebKit::WebVideoFullscreenManagerProxy::setupFullscreenWithID):
Replace WebCore::WebVideoFullscreenInterfaceAVKit with PlatformWebVideoFullscreenInterface.
(WebKit::WebVideoFullscreenManagerProxy::setVideoLayerFrame):
+[UIWindow _synchronizeDrawingAcrossProcesses] is not available on Mac.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::WebPageProxy):
(WebKit::WebPageProxy::reattachToWebProcess):
(WebKit::WebPageProxy::viewDidLeaveWindow):
(WebKit::WebPageProxy::resetState):

  • UIProcess/WebPageProxy.h:

The code that creates m_videoFullscreenManager is now enabled also on Mac with video
presentation mode support.

  • WebProcess/WebCoreSupport/WebChromeClient.cpp:
  • WebProcess/WebCoreSupport/WebChromeClient.h:

Enable the API related to the video fullscreen layer also on Mac with video presentation
mode support.

  • WebProcess/WebPage/WebPage.cpp:
  • WebProcess/WebPage/WebPage.h:

The code that creates m_videoFullscreenManager is now enabled also on Mac with video
presentation mode support.

  • WebProcess/cocoa/WebVideoFullscreenManager.h:
  • WebProcess/cocoa/WebVideoFullscreenManager.messages.in:
  • WebProcess/cocoa/WebVideoFullscreenManager.mm:

Enabled also for Mac with video presentation mode support.
(WebKit::WebVideoFullscreenManager::supportsVideoFullscreen):
Return false for now on Mac.

10:18 AM Changeset in webkit [195754] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/LayoutTests/TestExpectations

Skip test that rely on ES6. rdar://problem/24190123

10:15 AM Changeset in webkit [195753] by matthew_hanson@apple.com
  • 2 deletes in branches/safari-601-branch/LayoutTests/svg/custom

Remove pattern-content-inheritance-cycle tests. rdar://problem/23910829

10:08 AM Changeset in webkit [195752] by Alan Bujtas
  • 491 edits in trunk/LayoutTests

[Win] gardening after r195740. (more to follow)

Unreviewed.

  • platform/win/css1/basic/containment-expected.txt:
  • platform/win/css1/basic/contextual_selectors-expected.txt:
  • platform/win/css1/basic/grouping-expected.txt:
  • platform/win/css1/basic/id_as_selector-expected.txt:
  • platform/win/css1/basic/inheritance-expected.txt:
  • platform/win/css1/box_properties/border-expected.txt:
  • platform/win/css1/box_properties/border_bottom-expected.txt:
  • platform/win/css1/box_properties/border_bottom_inline-expected.txt:
  • platform/win/css1/box_properties/border_bottom_width-expected.txt:
  • platform/win/css1/box_properties/border_bottom_width_inline-expected.txt:
  • platform/win/css1/box_properties/border_color-expected.txt:
  • platform/win/css1/box_properties/border_color_inline-expected.txt:
  • platform/win/css1/box_properties/border_inline-expected.txt:
  • platform/win/css1/box_properties/border_left-expected.txt:
  • platform/win/css1/box_properties/border_left_inline-expected.txt:
  • platform/win/css1/box_properties/border_left_width-expected.txt:
  • platform/win/css1/box_properties/border_left_width_inline-expected.txt:
  • platform/win/css1/box_properties/border_right-expected.txt:
  • platform/win/css1/box_properties/border_right_inline-expected.txt:
  • platform/win/css1/box_properties/border_right_width-expected.txt:
  • platform/win/css1/box_properties/border_right_width_inline-expected.txt:
  • platform/win/css1/box_properties/border_style-expected.txt:
  • platform/win/css1/box_properties/border_style_inline-expected.txt:
  • platform/win/css1/box_properties/border_top-expected.txt:
  • platform/win/css1/box_properties/border_top_inline-expected.txt:
  • platform/win/css1/box_properties/border_top_width-expected.txt:
  • platform/win/css1/box_properties/border_top_width_inline-expected.txt:
  • platform/win/css1/box_properties/border_width-expected.txt:
  • platform/win/css1/box_properties/border_width_inline-expected.txt:
  • platform/win/css1/box_properties/clear-expected.txt:
  • platform/win/css1/box_properties/clear_float-expected.txt:
  • platform/win/css1/box_properties/float-expected.txt:
  • platform/win/css1/box_properties/float_elements_in_series-expected.txt:
  • platform/win/css1/box_properties/float_margin-expected.txt:
  • platform/win/css1/box_properties/float_on_text_elements-expected.txt:
  • platform/win/css1/box_properties/height-expected.txt:
  • platform/win/css1/box_properties/margin-expected.txt:
  • platform/win/css1/box_properties/margin_bottom-expected.txt:
  • platform/win/css1/box_properties/margin_bottom_inline-expected.txt:
  • platform/win/css1/box_properties/margin_inline-expected.txt:
  • platform/win/css1/box_properties/margin_left-expected.txt:
  • platform/win/css1/box_properties/margin_left_inline-expected.txt:
  • platform/win/css1/box_properties/margin_right-expected.txt:
  • platform/win/css1/box_properties/margin_right_inline-expected.txt:
  • platform/win/css1/box_properties/margin_top-expected.txt:
  • platform/win/css1/box_properties/margin_top_inline-expected.txt:
  • platform/win/css1/box_properties/padding-expected.txt:
  • platform/win/css1/box_properties/padding_bottom-expected.txt:
  • platform/win/css1/box_properties/padding_bottom_inline-expected.txt:
  • platform/win/css1/box_properties/padding_inline-expected.txt:
  • platform/win/css1/box_properties/padding_left_inline-expected.txt:
  • platform/win/css1/box_properties/padding_right-expected.txt:
  • platform/win/css1/box_properties/padding_right_inline-expected.txt:
  • platform/win/css1/box_properties/padding_top-expected.txt:
  • platform/win/css1/box_properties/padding_top_inline-expected.txt:
  • platform/win/css1/box_properties/width-expected.txt:
  • platform/win/css1/cascade/cascade_order-expected.txt:
  • platform/win/css1/cascade/important-expected.txt:
  • platform/win/css1/classification/display-expected.txt:
  • platform/win/css1/classification/list_style-expected.txt:
  • platform/win/css1/classification/list_style_image-expected.txt:
  • platform/win/css1/classification/list_style_position-expected.txt:
  • platform/win/css1/classification/list_style_type-expected.txt:
  • platform/win/css1/classification/white_space-expected.txt:
  • platform/win/css1/color_and_background/background-expected.txt:
  • platform/win/css1/color_and_background/background_attachment-expected.txt:
  • platform/win/css1/color_and_background/background_color-expected.txt:
  • platform/win/css1/color_and_background/background_image-expected.txt:
  • platform/win/css1/color_and_background/background_position-expected.txt:
  • platform/win/css1/color_and_background/background_repeat-expected.txt:
  • platform/win/css1/color_and_background/color-expected.txt:
  • platform/win/css1/conformance/forward_compatible_parsing-expected.txt:
  • platform/win/css1/font_properties/font-expected.txt:
  • platform/win/css1/font_properties/font_family-expected.txt:
  • platform/win/css1/font_properties/font_size-expected.txt:
  • platform/win/css1/font_properties/font_style-expected.txt:
  • platform/win/css1/font_properties/font_variant-expected.txt:
  • platform/win/css1/font_properties/font_weight-expected.txt:
  • platform/win/css1/formatting_model/canvas-expected.txt:
  • platform/win/css1/formatting_model/floating_elements-expected.txt:
  • platform/win/css1/formatting_model/height_of_lines-expected.txt:
  • platform/win/css1/formatting_model/inline_elements-expected.txt:
  • platform/win/css1/formatting_model/replaced_elements-expected.txt:
  • platform/win/css1/formatting_model/vertical_formatting-expected.txt:
  • platform/win/css1/pseudo/anchor-expected.txt:
  • platform/win/css1/pseudo/firstletter-expected.txt:
  • platform/win/css1/pseudo/firstline-expected.txt:
  • platform/win/css1/pseudo/multiple_pseudo_elements-expected.txt:
  • platform/win/css1/pseudo/pseudo_elements_in_selectors-expected.txt:
  • platform/win/css1/text_properties/letter_spacing-expected.txt:
  • platform/win/css1/text_properties/line_height-expected.txt:
  • platform/win/css1/text_properties/text_align-expected.txt:
  • platform/win/css1/text_properties/text_decoration-expected.txt:
  • platform/win/css1/text_properties/text_indent-expected.txt:
  • platform/win/css1/text_properties/text_transform-expected.txt:
  • platform/win/css1/text_properties/vertical_align-expected.txt:
  • platform/win/css1/text_properties/word_spacing-expected.txt:
  • platform/win/css1/units/color_units-expected.txt:
  • platform/win/css1/units/length_units-expected.txt:
  • platform/win/css1/units/percentage_units-expected.txt:
  • platform/win/css1/units/urls-expected.txt:
  • platform/win/css2.1/20110323/border-collapse-offset-002-expected.txt:
  • platform/win/css2.1/20110323/border-conflict-style-079-expected.txt:
  • platform/win/css2.1/20110323/border-conflict-style-088-expected.txt:
  • platform/win/css2.1/20110323/dynamic-top-change-002-expected.txt:
  • platform/win/css2.1/20110323/dynamic-top-change-003-expected.txt:
  • platform/win/css2.1/20110323/inline-table-001-expected.txt:
  • platform/win/css2.1/20110323/inline-table-002a-expected.txt:
  • platform/win/css2.1/20110323/inline-table-003-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-001-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-002-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-003-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-004-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-005-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-006-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-007-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-013-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-014-expected.txt:
  • platform/win/css2.1/20110323/margin-applies-to-015-expected.txt:
  • platform/win/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt:
  • platform/win/css2.1/20110323/table-caption-001-expected.txt:
  • platform/win/css2.1/20110323/table-caption-optional-001-expected.txt:
  • platform/win/css2.1/20110323/table-caption-optional-002-expected.txt:
  • platform/win/css2.1/20110323/table-height-algorithm-023-expected.txt:
  • platform/win/css2.1/20110323/table-height-algorithm-024-expected.txt:
  • platform/win/css2.1/t040302-c61-ex-len-00-b-a-expected.txt:
  • platform/win/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt:
  • platform/win/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt:
  • platform/win/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt:
  • platform/win/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt:
  • platform/win/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt:
  • platform/win/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt:
  • platform/win/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt:
  • platform/win/css2.1/t0805-c5518-brdr-t-01-e-expected.txt:
  • platform/win/css2.1/t0805-c5519-brdr-r-01-e-expected.txt:
  • platform/win/css2.1/t0805-c5520-brdr-b-01-e-expected.txt:
  • platform/win/css2.1/t0805-c5521-brdr-l-01-e-expected.txt:
  • platform/win/css2.1/t0805-c5522-brdr-02-e-expected.txt:
  • platform/win/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt:
  • platform/win/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-00-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-01-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-02-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-03-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-04-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-05-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-06-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-07-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-08-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-09-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-10-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-11-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-12-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-13-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-14-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-15-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-16-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-17-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-18-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-19-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-20-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-21-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-22-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-23-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-24-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-25-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-26-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-27-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-28-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-29-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-30-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-31-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-32-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-33-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-34-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-35-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-36-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-37-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-38-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-39-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-40-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-41-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-42-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-43-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-44-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-45-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-46-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-47-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-48-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-49-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-50-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-51-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-52-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-53-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-54-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-55-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-56-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-57-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-58-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-59-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-60-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-61-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-62-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-63-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-64-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-65-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-66-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-67-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-68-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-69-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-70-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-71-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-72-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-73-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-74-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-75-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-76-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-77-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-78-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-79-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-80-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-81-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-82-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-83-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-84-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-85-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-86-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-87-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-88-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-89-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-90-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-91-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-92-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-93-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-94-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-95-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-96-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-97-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-98-d-expected.txt:
  • platform/win/css2.1/t170602-bdr-conflct-w-99-d-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-015-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-016-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-023-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-024-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-035-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-036-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-037-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-038-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-045-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-046-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-047-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-048-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-049-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-050-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-055-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-056-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-091-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-092-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-099-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-100-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-103-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-104-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-105-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-106-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-107-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-108-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-109-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-110-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-111-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-112-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-113-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-114-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-123-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-124-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-139-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-140-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-149-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-150-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-155-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-156-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-159-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-160-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-165-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-166-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-177-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-178-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-179-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-180-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-181-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-189-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-190-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-191-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-192-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-193-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-194-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-195-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-196-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-205-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-206-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-207-expected.txt:
  • platform/win/css2.1/tables/table-anonymous-objects-208-expected.txt:
  • platform/win/css3/css3-modsel-33-expected.txt:
  • platform/win/css3/flexbox/flexbox-baseline-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-161-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-18-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-18b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-28-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-28b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-29-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-29b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-32-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-33-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-43-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-43b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-44-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-44b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-73-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-73b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-74-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-74b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-77-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-77b-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-78-expected.txt:
  • platform/win/css3/selectors3/html/css3-modsel-78b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-161-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-18-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-18b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-28-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-28b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-29-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-29b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-32-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-33-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-43-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-43b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-44-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-44b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-73-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-73b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-74-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-74b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-77-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-77b-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-78-expected.txt:
  • platform/win/css3/selectors3/xhtml/css3-modsel-78b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-161-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-18-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-18b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-28-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-28b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-29-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-29b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-32-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-33-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-43-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-43b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-44-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-44b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-73-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-73b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-74-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-74b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-77-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-77b-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-78-expected.txt:
  • platform/win/css3/selectors3/xml/css3-modsel-78b-expected.txt:
  • platform/win/editing/deleting/4922367-expected.txt:
  • platform/win/editing/deleting/5099303-expected.txt:
  • platform/win/editing/deleting/5126166-expected.txt:
  • platform/win/editing/deleting/5144139-2-expected.txt:
  • platform/win/editing/deleting/5206311-1-expected.txt:
  • platform/win/editing/deleting/5433862-2-expected.txt:
  • platform/win/editing/deleting/5483370-expected.txt:
  • platform/win/editing/deleting/delete-to-select-table-expected.txt:
  • platform/win/editing/deleting/table-cells-expected.txt:
  • platform/win/editing/execCommand/5481523-expected.txt:
  • platform/win/editing/inserting/5058163-1-expected.txt:
  • platform/win/editing/inserting/insert-paragraph-01-expected.txt:
  • platform/win/editing/inserting/insert-paragraph-02-expected.txt:
  • platform/win/editing/inserting/paragraph-separator-in-table-1-expected.txt:
  • platform/win/editing/inserting/paragraph-separator-in-table-2-expected.txt:
  • platform/win/editing/style/5017613-1-expected.txt:
  • platform/win/editing/style/5017613-2-expected.txt:
  • platform/win/editing/style/apple-style-editable-mix-expected.txt:
  • platform/win/editing/style/table-selection-expected.txt:
  • platform/win/editing/unsupported-content/table-type-after-expected.txt:
  • platform/win/editing/unsupported-content/table-type-before-expected.txt:
  • platform/win/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.txt:
  • platform/win/fast/block/basic/016-expected.txt:
  • platform/win/fast/block/basic/quirk-percent-height-table-cell-expected.txt:
  • platform/win/fast/block/float/011-expected.txt:
  • platform/win/fast/block/float/015-expected.txt:
  • platform/win/fast/block/margin-collapse/001-expected.txt:
  • platform/win/fast/block/margin-collapse/005-expected.txt:
  • platform/win/fast/block/margin-collapse/006-expected.txt:
  • platform/win/fast/block/margin-collapse/010-expected.txt:
  • platform/win/fast/block/margin-collapse/011-expected.txt:
  • platform/win/fast/block/margin-collapse/012-expected.txt:
  • platform/win/fast/block/margin-collapse/015-expected.txt:
  • platform/win/fast/block/margin-collapse/016-expected.txt:
  • platform/win/fast/block/margin-collapse/017-expected.txt:
  • platform/win/fast/block/margin-collapse/018-expected.txt:
  • platform/win/fast/block/margin-collapse/019-expected.txt:
  • platform/win/fast/block/margin-collapse/020-expected.txt:
  • platform/win/fast/block/margin-collapse/022-expected.txt:
  • platform/win/fast/block/margin-collapse/025-expected.txt:
  • platform/win/fast/block/margin-collapse/032-expected.txt:
  • platform/win/fast/block/margin-collapse/033-expected.txt:
  • platform/win/fast/block/margin-collapse/034-expected.txt:
  • platform/win/fast/block/margin-collapse/041-expected.txt:
  • platform/win/fast/block/margin-collapse/042-expected.txt:
  • platform/win/fast/block/margin-collapse/055-expected.txt:
  • platform/win/fast/block/margin-collapse/056-expected.txt:
  • platform/win/fast/block/margin-collapse/057-expected.txt:
  • platform/win/fast/block/margin-collapse/058-expected.txt:
  • platform/win/fast/block/margin-collapse/059-expected.txt:
  • platform/win/fast/block/margin-collapse/104-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/001-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/005-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/006-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/010-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/011-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/012-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/015-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/016-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/017-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/018-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/019-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/020-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/021-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/022-expected.txt:
  • platform/win/fast/block/margin-collapse/block-inside-inline/025-expected.txt:
  • platform/win/fast/block/positioning/053-expected.txt:
  • platform/win/fast/block/positioning/negative-right-pos-expected.txt:
  • platform/win/fast/block/positioning/table-cell-static-position-expected.txt:
  • platform/win/fast/borders/bidi-009a-expected.txt:
  • platform/win/fast/borders/border-antialiasing-expected.txt:
  • platform/win/fast/borders/border-radius-different-width-001-expected.txt:
  • platform/win/fast/borders/table-borders-expected.txt:
  • platform/win/fast/box-shadow/basic-shadows-expected.txt:
  • platform/win/fast/css-generated-content/015-expected.txt:
  • platform/win/fast/css-generated-content/first-letter-in-nested-before-expected.txt:
  • platform/win/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt:
  • platform/win/fast/css-generated-content/inline-display-types-expected.txt:
  • platform/win/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt:
  • platform/win/fast/css-generated-content/table-before-after-child-add-expected.txt:
  • platform/win/fast/css-generated-content/table-cell-before-after-child-add-expected.txt:
  • platform/win/fast/css-generated-content/table-cell-before-content-expected.txt:
  • platform/win/fast/css-generated-content/table-parts-before-and-after-expected.txt:
  • platform/win/fast/css-generated-content/table-row-before-after-child-add-expected.txt:
  • platform/win/fast/css-generated-content/table-row-before-after-expected.txt:
  • platform/win/fast/css-generated-content/table-row-group-with-before-expected.txt:
  • platform/win/fast/css-generated-content/table-row-with-before-expected.txt:
  • platform/win/fast/css-generated-content/table-table-before-after-child-add-expected.txt:
  • platform/win/fast/css-generated-content/table-with-before-expected.txt:
  • platform/win/fast/css/003-expected.txt:
  • platform/win/fast/css/absolute-poition-in-rtl-parent-expected.txt:
  • platform/win/fast/css/acid2-expected.txt:
  • platform/win/fast/css/acid2-pixel-expected.txt:
  • platform/win/fast/css/bidi-override-in-anonymous-block-expected.txt:
  • platform/win/fast/css/box-shadow-and-border-radius-expected.txt:
  • platform/win/fast/css/caption-width-absolute-position-expected.txt:
  • platform/win/fast/css/caption-width-absolute-position-offset-top-expected.txt:
  • platform/win/fast/css/caption-width-fixed-position-expected.txt:
  • platform/win/fast/css/caption-width-fixed-position-offset-top-expected.txt:
  • platform/win/fast/css/caption-width-relative-position-expected.txt:
  • platform/win/fast/css/caption-width-relative-position-offset-top-expected.txt:
  • platform/win/fast/css/css3-nth-child-expected.txt:
  • platform/win/fast/css/first-letter-float-expected.txt:
  • platform/win/fast/css/focus-ring-detached-expected.txt:
  • platform/win/fast/css/focus-ring-multiline-expected.txt:
  • platform/win/fast/css/h1-in-section-elements-expected.txt:
  • platform/win/fast/css/image-rendering-expected.txt:
  • platform/win/fast/css/layerZOrderCrash-expected.txt:
  • platform/win/fast/css/min-width-with-spanned-cell-expected.txt:
  • platform/win/fast/css/percentage-non-integer-expected.txt:
  • platform/win/fast/css/table-text-align-quirk-expected.txt:
  • platform/win/fast/css/table-text-align-strict-expected.txt:
  • platform/win/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt:
  • platform/win/fast/dom/HTMLTableElement/createCaption-expected.txt:
  • platform/win/fast/dom/row-inner-text-expected.txt:
  • platform/win/fast/dynamic/001-expected.txt:
  • platform/win/fast/dynamic/007-expected.txt:
  • platform/win/fast/dynamic/014-expected.txt:
  • platform/win/fast/dynamic/015-expected.txt:
  • platform/win/fast/dynamic/containing-block-change-expected.txt:
  • platform/win/fast/dynamic/create-renderer-for-whitespace-only-text-expected.txt:
  • platform/win/fast/dynamic/float-withdrawal-expected.txt:
  • platform/win/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
  • platform/win/fast/dynamic/subtree-table-cell-height-expected.txt:
10:07 AM Changeset in webkit [195751] by matthew_hanson@apple.com
  • 3 edits in branches/safari-601-branch/Source/WebCore/html

Fix failing fast/picture tests.

10:00 AM Changeset in webkit [195750] by matthew_hanson@apple.com
  • 2 edits in branches/safari-601-branch/LayoutTests

Merge r191322. rdar://problem/24190923

9:59 AM Changeset in webkit [195749] by matthew_hanson@apple.com
  • 1 edit
    1 add in branches/safari-601-branch/LayoutTests

Merge r193931. rdar://problem/24190799

9:59 AM Changeset in webkit [195748] by matthew_hanson@apple.com
  • 3 edits in branches/safari-601-branch/LayoutTests

Merge r194237. rdar://problem/24268438

9:46 AM Changeset in webkit [195747] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/LayoutTests/css3/font-feature-settings-parsing.html

Fix Font Features test failures.

9:44 AM Changeset in webkit [195746] by Chris Dumez
  • 2 edits in trunk/Tools

Unreviewed, rolling out r195742.

Broke EWS

Reverted changeset:

"[webkitdirs] Clarify logic behind is{PortName} functions."
https://bugs.webkit.org/show_bug.cgi?id=153554
http://trac.webkit.org/changeset/195742

9:33 AM Changeset in webkit [195745] by commit-queue@webkit.org
  • 7 edits
    2 adds in trunk

[SVG] Add support for 'lighter' operator in feComposite
https://bugs.webkit.org/show_bug.cgi?id=141376

Patch by Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au> on 2016-01-28
Reviewed by Darin Adler.

Source/WebCore:

Added new cases where needed to support the lighter (aka 'plus')
Porter Duff operator in SVG Filter Effects.
https://www.w3.org/TR/filter-effects/#valdef-operator-lighter
Note that in the specification, no constant was added to the IDL for
the lighter operator.

Test: svg/filters/feCompositeOpaque.html

svg/dom/script-tests/SVGAnimatedEnumeration-SVGFECompositeElement.js

  • platform/graphics/filters/FEComposite.cpp:

(WebCore::FEComposite::platformApplySoftware):

Add case to support lighter.

(WebCore::operator<<):

Add case to support lighter for text stream operations.

  • platform/graphics/filters/FEComposite.h: Add case for lighter to CompositeOperationType enum.
  • svg/SVGFECompositeElement.h:

(WebCore::SVGIDLEnumLimits<CompositeOperationType>::highestExposedEnumValue):

Higest exposed value is arithmetic - do not expose lighter.

(WebCore::SVGPropertyTraits<CompositeOperationType>::highestEnumValue):

Highest possible value is now lighter.

(WebCore::SVGPropertyTraits<CompositeOperationType>::toString):

Add case to support lighter.

(WebCore::SVGPropertyTraits<CompositeOperationType>::fromString):

Add case to support lighter.

LayoutTests:

Add case to support lighter to DOM manipulation test for feComposite.
Add a new reftest that tests lighter case and supercedes older
pixel test for other modes.

  • svg/dom/script-tests/SVGAnimatedEnumeration-SVGFECompositeElement.js: Test DOM read/write of SVGFEComposite operator property with new lighter mode.
  • svg/dom/SVGAnimatedEnumeration-SVGFECompositeElement-expected.txt:
  • svg/filters/feCompositeOpaque.html: Added. A reftest that supersedes svg/filters/feComposite.svg That test used opacity 0.5 which resulted in differing colors across platforms. This makes it very hard to maintain the references but it's probably still useful as a regression test. This new test uses solid colors which result in consistency across platforms and allow a reftest to be used.
  • svg/filters/feCompositeOpaque-expected.html: Added.
9:30 AM Changeset in webkit [195744] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

LowerToAir::preferRightForResult() should resolve use count ties by selecting the child that is closest in an idom walk
https://bugs.webkit.org/show_bug.cgi?id=153583

Reviewed by Benjamin Poulain.

This undoes the AsmBench/n-body regression in r195654 while preserving that revision's
Kraken progression.

  • b3/B3LowerToAir.cpp:

(JSC::B3::Air::LowerToAir::LowerToAir):
(JSC::B3::Air::LowerToAir::preferRightForResult):

9:26 AM Changeset in webkit [195743] by Darin Adler
  • 74 edits
    7 adds in trunk

Remove equalIgnoringCase since all callers really wanted equalIgnoringASCIICase
https://bugs.webkit.org/show_bug.cgi?id=153411

Reviewed by Ryosuke Niwa.

Source/WebCore:

Tests: fast/media/media-query-non-ASCII-case-folding.html

fast/dom/HTMLAnchorElement/anchor-non-ASCII-case-folding.html
fast/xpath/xpath-non-ASCII-case-folding.html

No tests included that cover the minor behavior changes in Document::setDomain,
CSPSource::schemeMatches, CSPSource::hostMatches, OriginAccessEntry::operator==,
UserContentURLPattern::matches, UserContentURLPattern::matchesHost,
ContentFilterUnblockHandler::canHandleRequest. Would like to add tests for those
if possible, but it seems clear all are progressions.

For background on why this is the right thing to do in almost every case:

  • Modules/webdatabase/DatabaseAuthorizer.cpp:

(WebCore::DatabaseAuthorizer::denyBasedOnTableName): Use equalIgnoringASCIICase.
No change in behavior since the string we are comparing with is always
"WebKitDatabaseInfoTable" in practice.

  • accessibility/AccessibilityNodeObject.cpp:

(WebCore::siblingWithAriaRole): Changed argument type to take a const char*,
added some FIXMEs and use equalIgnoringCase. No change in behavior since the
strings we are comparing with are "menu" and "menuitem".
(WebCore::AccessibilityNodeObject::menuElementForMenuButton): Updated to pass
arguments in reverse order.
(WebCore::AccessibilityNodeObject::menuItemElementForMenu): Ditto.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseFontFaceValue): Use equalIgnoringASCIICase.
No change in behavior because the property names are all ASCII constants.

  • css/CSSParserValues.h: Removed unused equalIgnoringCase function.
  • css/MediaQueryEvaluator.cpp:

(WebCore::MediaQueryEvaluator::mediaTypeMatch): Use equalIgnoringASCIICase.
Changes behavior: No non-ASCII case folding when matching media types.
Covered by new test.
(WebCore::MediaQueryEvaluator::mediaTypeMatchSpecific): Use equalIgnoringASCIICase.
No change in behavior since the only string this is ever called with is "print".

  • dom/DataTransfer.cpp:

(WebCore::DataTransfer::hasFileOfType): Use equalIgnoringASCIICase.
No change in behavior because local files will not have content types with
non-ASCII characters in them. In the extremely unlikely case that this is incorrect,
the change in behavior is a progression.

  • dom/Document.cpp:

(WebCore::Document::setDomain): Use equalIgnoringASCIICase.
Changes behavior: Domains considered equal because of non-ASCII case folding
would get through without an error before, and now will properly throw an exception.

  • dom/Element.cpp:

(WebCore::isStyleAttribute): Refactored into a helper function. Use
equalLettersIgnoringASCIICase. No change in behavior.
(WebCore::Element::synchronizeAttribute): Use isStyleAttribute.

  • dom/TreeScope.cpp:

(WebCore::TreeScope::findAnchor): Use equalIgnoringASCIICase.
Changes behavior: Could go to an anchor and it would be considered a match because
of non-ASCII case folding. Covered by new test.

  • html/HiddenInputType.cpp:

(WebCore::HiddenInputType::appendFormData): Use equalIgnoringASCIICase.
No change in behavior: comparing with an ASCII literal.

  • html/canvas/WebGL2RenderingContext.cpp:

(WebCore::WebGL2RenderingContext::getExtension): Ditto.

  • html/canvas/WebGLRenderingContext.cpp:

(WebCore::WebGLRenderingContext::getExtension): Ditto.

  • html/parser/CSSPreloadScanner.cpp:

(WebCore::CSSPreloadScanner::emitRule): Use equalLettersIgnoringASCIICase and
StringView to avoid needing a special ruleEqualIgnoringCase function.
No change in behavior.

  • inspector/InspectorNodeFinder.cpp:

(WebCore::InspectorNodeFinder::matchesElement): Use equalIgnoringASCIICase.
Changes behavior, but it's an inspector UI thing, not a web behavior thing,
so I don't think a new regression test is needed.

  • loader/HistoryController.cpp:

(WebCore::HistoryController::currentItemShouldBeReplaced): Use
equalIgnoringASCIICase. No change in behavior because we are comparing
with "about:blank".

  • loader/SubframeLoader.cpp:

(WebCore::findPluginMIMETypeFromURL): Use equalIgnoringASCIICase.
No change in behavior unless a plug-in claims an extension with non-ASCII
characters. I don't think a new regression test is needed.

  • loader/appcache/ApplicationCacheHost.cpp:

(WebCore::ApplicationCacheHost::shouldLoadResourceFromApplicationCache):
Use equalIgnoringASCIICase. No change in behavior because both strings are
protocols from URLs and we don't parse non-ASCII characters into protocol strings;
non-ASCII are already encoding as punycode.

  • loader/appcache/ManifestParser.cpp:

(WebCore::parseManifest): Ditto.

  • page/ContentSecurityPolicy.cpp:

(WebCore::isExperimentalDirectiveName): Added. Used by isDirectiveName.
Uses equalLettersIgnoringASCIICase. No change in behavior.
(WebCore::isDirectiveName): Use equalLettersIgnoringASCIICase.
No change in behavior.
(WebCore::isSourceListNone): Use equalLettersIgnoringASCIICase. No
change in behavior.
(WebCore::CSPSource::schemeMatches): Use equalLettersIgnoringASCIICase
and equalIgnoringASCIICase. It's all about comparing URL protocols. The
old code might have done something strange if someone specified a protocol
with a non-ASCII character in it.
(WebCore::CSPSource::hostMatches): Use equalIgnoringASCIICase.
(WebCore::CSPSourceList::parseSource): Use equalLettersIgnoringASCIICase.
No change in behavior.
(WebCore::CSPDirectiveList::checkSourceAndReportViolation): Tweaked code
to do less unnecessary String allocation.
(WebCore::CSPDirectiveList::parseReflectedXSS): Use
equalLettersIgnoringASCIICase. No change in behavior.
(WebCore::CSPDirectiveList::addDirective): Ditto.
(WebCore::ContentSecurityPolicy::reportUnsupportedDirective): Use
equalLettersIgnoringASCIICase and remove unneeded global constant strings.
No change in behavior.
(WebCore::ContentSecurityPolicy::reportDirectiveAsSourceExpression):
Tweak code to eliminate unneeded local.
(WebCore::ContentSecurityPolicy::reportDuplicateDirective): Ditto.
(WebCore::ContentSecurityPolicy::reportInvalidSourceExpression): Use
equalLettersIgnoringASCIICase. No change in behavior.

  • page/OriginAccessEntry.h:

(WebCore::operator==): Use equalLettersIgnoringASCIICase.

  • page/Performance.cpp:

(WebCore::Performance::webkitGetEntriesByName): Use equalLettersIgnoringASCIICase.
No change in behavior.

  • page/UserContentURLPattern.cpp:

(WebCore::UserContentURLPattern::matches): Use equalIgnoringASCIICase to match
schemes.
(WebCore::UserContentURLPattern::matchesHost): Use equalIgnoringASCIICase to
match host names.

  • platform/URL.cpp:

(WebCore::URL::init): Use equalIgnoringASCIICase, and also use StringView to
avoid having to allocate a second string just for comparison purposes. Should be
better for efficiency with no change in behavior.

  • platform/cocoa/ContentFilterUnblockHandlerCocoa.mm:

(WebCore::ContentFilterUnblockHandler::canHandleRequest): Use equalIgnoringASCIICase
to compare hosts.

  • platform/efl/PlatformSpeechSynthesisProviderEfl.cpp:

(WebCore::PlatformSpeechSynthesisProviderEfl::voiceName): Use StringView and
equalIgnoringASCIICase to compare language tags. No test needed because there are
no language tags with non-ASCII characters in them.

  • platform/graphics/FontCache.cpp:

(WebCore::FontPlatformDataCacheKey::operator==): Changed to use the equal
function from CaseFoldingHash. In a subsequent patch we will change this to be
ASCIICaseFoldingHash since font names don't need to compare non-ASCII characters
in a case folding manner, but for now preserve behavior.
(WebCore::alternateFamilyName): Use equalLettersIgnoringASCIICase to avoid having
to use a special familyNameEqualIgnoringCase function. This does mean there will
be a null check and a length check that wasn't there before, but the actual
comparison function will be tighter. Guessing it will be a wash. Also improved
the comments and sorted the Windows cases in with the others. No behavior change.

  • platform/graphics/FontCascade.cpp:

(WebCore::operator==): Changed to use the equal function from CaseFoldingHash.
Same rationale as above in FontPlatformDataCacheKey.

  • platform/graphics/FontDescription.cpp:

(WebCore::FontCascadeDescription::familiesEqualForTextAutoSizing): Use
equalIgnoringASCIICase to compare font family names. Only possible change in
behavior would be if actual fonts with non-ASCII names but that were specified
with different case in style sheets. Highly unlikely this exists.

  • platform/graphics/MediaPlayer.cpp:

(WebCore::MediaPlayer::supportsType): Use equalLettersIgnoringASCIICase.
No change in behavior.

  • platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:

(WebCore::keySystemIsSupported): Ditto.

  • platform/graphics/freetype/FontCacheFreeType.cpp:

(WebCore::isCommonlyUsedGenericFamily): Added.
(WebCore::FontCache::createFontPlatformData): Moved code into the
isCommonlyUsedGenericFamily helper and used equalIgnoringASCIICase.

  • platform/graphics/freetype/FontCustomPlatformDataFreeType.cpp:

(WebCore::FontCustomPlatformData::supportsFormat): Use
equalLettersIgnoringASCIICase. No change in behavior.

  • platform/graphics/win/FontCacheWin.cpp:

(WebCore::adjustedGDIFontWeight): Ditto.
(WebCore::FontCache::createFontPlatformData): Ditto.

  • platform/graphics/win/FontCustomPlatformData.cpp:

(WebCore::FontCustomPlatformData::supportsFormat): Ditto.

  • platform/graphics/win/FontCustomPlatformDataCairo.cpp:

(WebCore::FontCustomPlatformData::supportsFormat): Ditto.

  • platform/mac/PlatformSpeechSynthesizerMac.mm:

(-[WebSpeechSynthesisWrapper speakUtterance:]): Use equalIgnoringASCIICase to
compare languages. No change in behavior because languages have all-ASCII names.

  • platform/network/CacheValidation.cpp:

(WebCore::shouldUpdateHeaderAfterRevalidation): Use equalIgnoringASCIICase.
No change in behavior since it's a fixed list of all ASCII headers.

  • platform/network/curl/ResourceHandleManager.cpp:

(WebCore::isAppendableHeader): Ditto.

  • platform/network/mac/ResourceHandleMac.mm:

(WebCore::ResourceHandle::willSendRequest): Use equalIgnoringASCIICase.
No change in behavior because HTTP methods are all ASCII letters.

  • platform/text/mac/LocaleMac.mm:

(WebCore::determineLocale): Use equalIgnoringASCIICase. No change in behavior
because locale languages identifiers are all ASCII.

  • platform/text/win/LocaleWin.cpp:

(WebCore::LCIDFromLocaleInternal): Ditto.

  • svg/SVGToOTFFontConversion.cpp:

(WebCore::SVGToOTFFontConverter::appendArabicReplacementSubtable):
Use equalIgnoringASCIICase. No change in behavior because Arabic form attribute
values are all ASCII.

  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::uppercaseKnownHTTPMethod): Use equalIgnoringASCIICase.
No change in behavior because these are all fixed known ASCII HTTP method names.

  • xml/XPathFunctions.cpp:

(WebCore::XPath::FunLang::evaluate): Use equalIgnoringASCIICase. Changes behavior
if specifying a non-ASCII character. Covered by new test.

  • xml/XPathStep.cpp:

(WebCore::XPath::nodeMatchesBasicTest): Use equalIgnoringASCIICase. Changes
behavior if an element local name or XPath predicate has a non-ASCII character.
Covered by new test.

Source/WebKit/mac:

  • WebCoreSupport/WebFrameLoaderClient.mm:

(parameterValue): Use equalIgnoringASCIICase. No behavior change because the
only name we ever search for with this is "pluginspage".

Source/WebKit/win:

  • Plugins/PluginDatabase.cpp:

(WebCore::PluginDatabase::MIMETypeForExtension): Use equalIgnoringASCIICase to compare
file extensions.

  • Plugins/PluginDatabaseWin.cpp:

(WebCore::PluginDatabase::getPluginPathsInDirectories): Use equalLettersIgnoringASCIICase
to compare filenames.

  • Plugins/PluginPackageWin.cpp:

(WebCore::PluginPackage::isPluginBlacklisted): Use equalLettersIgnoringASCIICase to
compare DLL filenames.

  • Plugins/PluginStream.cpp:

(WebCore::PluginStream::destroyStream): Use equalLettersIgnoringASCIICase to check HTTP method.

  • Plugins/PluginView.cpp:

(WebCore::PluginView::setParameters): Use equalLettersIgnoringASCIICase to check
plug-in parameter name.

  • WebView.cpp:

(WebView::canHandleRequest): Use URL::protocolIs instead of equalIgnoringCase.

Source/WebKit2:

  • Shared/API/c/WKString.cpp:

(WKStringIsEqualToUTF8CStringIgnoringCase): Use equalIgnoringASCIICase.
This is a change in behavior for callers who passed non-ASCII letters to
this function and expected case insensitive comparison.

  • WebProcess/Plugins/PDF/DeprecatedPDFPlugin.mm:

(WebKit::PDFPlugin::streamDidReceiveResponse): Use equalIgnoringASCIICase.
No change in behavior because this is just checking a fixed ASCII MIME type.
(WebKit::PDFPlugin::manualStreamDidReceiveResponse): Ditto.

  • WebProcess/Plugins/PDF/PDFPlugin.mm:

(WebKit::PDFPlugin::streamDidReceiveResponse): Ditto.
(WebKit::PDFPlugin::manualStreamDidReceiveResponse): Ditto.

Source/WTF:

  • wtf/text/AtomicString.h: Removed equalIgnoringCase.

Added some overloads for equalIgnoringASCIICase and moved the function bodies to
bottom of the file to make the function declarations easier to read and scan through.
I plan to do this for more of the functions in this class in the future.

  • wtf/text/StringCommon.h: Added overloads for equalIgnoringASCIICase,

equalPossiblyIgnoringASCIICase, and a helper named equalIgnoringASCIICaseCommon.
Added an overload for equalLettersIgnoringASCIICase.

  • wtf/text/StringImpl.cpp:

(WTF::equalIgnoringCase): Made the few remaining versions of this function private
to this file. Once we get done moving every client that should be using ASCII case
instead to new functions, these will almost certainly be deleted.
(WTF::equalIgnoringASCIICaseNonNull): Tweaked implementation a tiny bit.

  • wtf/text/StringImpl.h: Sorted forward declarations at the top of the file.

Fixed some small formatting mistakes. Removed equalIgnoringCase, but left
equalIgnoringCaseNonNull behind for use by CaseFoldingHash until it is replaced
with ASCIICaseFoldingHash. Improved equalIgnoringASCIICase implementation.
Removed unneeded using for equalIgnoringASCIICase now that StringCommon.h takes
care of it.

  • wtf/text/StringView.cpp:

(WTF::equalIgnoringASCIICase): Deleted. We no longer pass in the length for this,
so the arguments have changed and the implementation is also now in ASCIICommon.h
so it's an inline in the header file.

  • wtf/text/StringView.h: Added an overload of equalIgnoringASCIICase,while

removing another.

  • wtf/text/WTFString.h: Removed some unneeded forward delcarations. Fixed formatting

of the type name NSString *. Improved some comments. Removed equalIgnoringCase.
Separated declaration from implementation in a few cases to start making the
function declarations easier to read and scan through. I plan to do more in the future.

Tools:

  • Scripts/do-webcore-rename: Removed rename of equalIgnoringCase since we

have removed the function instead.

  • TestWebKitAPI/Tests/WTF/StringImpl.cpp:

(TestWebKitAPI::TEST): Updated test since nullptr is now ambiguous since we
added overloads for const char*.

  • WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:

(WTR::AccessibilityUIElement::isPressActionSupported): Use equalLettersIgnoringASCIICase.
(WTR::AccessibilityUIElement::hasPopup): Ditto.

  • WebKitTestRunner/cocoa/CrashReporterInfo.mm:

(WTR::testPathFromURL): Ditto.

LayoutTests:

  • fast/dom/HTMLAnchorElement/anchor-non-ASCII-case-folding-expected.txt: Added.
  • fast/dom/HTMLAnchorElement/anchor-non-ASCII-case-folding.html: Added.
  • fast/dom/HTMLAnchorElement/resources/iframe-with-non-ASCII-matching-anchor.html: Added.
  • fast/media/media-query-non-ASCII-case-folding-expected.txt: Added.
  • fast/media/media-query-non-ASCII-case-folding.html: Added.
  • fast/xpath/xpath-non-ASCII-case-folding-expected.txt: Added.
  • fast/xpath/xpath-non-ASCII-case-folding.html: Added.
9:18 AM Changeset in webkit [195742] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[webkitdirs] Clarify logic behind is{PortName} functions.
https://bugs.webkit.org/show_bug.cgi?id=153554

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-28
Reviewed by Darin Adler.

  • Scripts/webkitdirs.pm:

(determinePortName): Added new function which decides which port are
we building based on command line switches and platform defaults.
(portName): Added getter for determined $portName.
(isEfl): Modified to use portName().
(isGtk): Ditto.
(isWinCairo): Ditto.
(isAppleMacWebKit): Ditto.
(isAppleWinWebKit): Ditto.
(isIOSWebKit): Ditto.
(cmakeBasedPortName): Code replaced with portName() call.
(determineIsEfl): Deleted.
(determineIsGtk): Deleted.
(determineIsWinCairo): Deleted.

8:56 AM Changeset in webkit [195741] by matthew_hanson@apple.com
  • 6 edits
    26 adds in branches/safari-601-branch

Merge r195710. rdar://problem/24337780

8:31 AM Changeset in webkit [195740] by Alan Bujtas
  • 1833 edits
    2 adds in trunk

Unexpected content wrapping at http://email.osh.com/H/2/v100000152474feb8ec7c1a1f4bbe5c7c0/HTML
https://bugs.webkit.org/show_bug.cgi?id=153430

Reviewed by Simon Fraser.

Ensure that min/max preferred and computed widths never shrink while converting LayoutUnit to float and back.

Source/WebCore:

Test: fast/table/fixed-size-table-with-fixed-size-content.html

  • rendering/AutoTableLayout.cpp:

(WebCore::AutoTableLayout::recalcColumn):
(WebCore::AutoTableLayout::calcEffectiveLogicalWidth):
(WebCore::AutoTableLayout::layout):

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::computePreferredLogicalWidths): Deleted.

LayoutTests:

  • fast/table/fixed-size-table-with-fixed-size-content-expected.html: Added.
  • fast/table/fixed-size-table-with-fixed-size-content.html: Added.
  • platform/ios-simulator/css1/basic/containment-expected.txt:
  • platform/ios-simulator/css1/basic/contextual_selectors-expected.txt:
  • platform/ios-simulator/css1/basic/grouping-expected.txt:
  • platform/ios-simulator/css1/basic/id_as_selector-expected.txt:
  • platform/ios-simulator/css1/basic/inheritance-expected.txt:
  • platform/ios-simulator/css1/box_properties/border-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_bottom-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_bottom_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_bottom_width-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_bottom_width_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_color-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_color_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_left-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_left_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_left_width-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_left_width_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_right-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_right_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_right_width-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_right_width_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_style-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_style_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_top-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_top_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_top_width-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_top_width_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_width-expected.txt:
  • platform/ios-simulator/css1/box_properties/border_width_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/clear-expected.txt:
  • platform/ios-simulator/css1/box_properties/clear_float-expected.txt:
  • platform/ios-simulator/css1/box_properties/float-expected.txt:
  • platform/ios-simulator/css1/box_properties/float_elements_in_series-expected.txt:
  • platform/ios-simulator/css1/box_properties/float_margin-expected.txt:
  • platform/ios-simulator/css1/box_properties/height-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_bottom-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_bottom_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_left-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_left_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_right-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_right_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_top-expected.txt:
  • platform/ios-simulator/css1/box_properties/margin_top_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_bottom-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_bottom_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_left-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_left_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_right-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_right_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_top-expected.txt:
  • platform/ios-simulator/css1/box_properties/padding_top_inline-expected.txt:
  • platform/ios-simulator/css1/box_properties/width-expected.txt:
  • platform/ios-simulator/css1/cascade/cascade_order-expected.txt:
  • platform/ios-simulator/css1/cascade/important-expected.txt:
  • platform/ios-simulator/css1/classification/display-expected.txt:
  • platform/ios-simulator/css1/classification/list_style-expected.txt:
  • platform/ios-simulator/css1/classification/list_style_image-expected.txt:
  • platform/ios-simulator/css1/classification/list_style_position-expected.txt:
  • platform/ios-simulator/css1/classification/list_style_type-expected.txt:
  • platform/ios-simulator/css1/classification/white_space-expected.txt:
  • platform/ios-simulator/css1/color_and_background/background-expected.txt:
  • platform/ios-simulator/css1/color_and_background/background_attachment-expected.txt:
  • platform/ios-simulator/css1/color_and_background/background_color-expected.txt:
  • platform/ios-simulator/css1/color_and_background/background_image-expected.txt:
  • platform/ios-simulator/css1/color_and_background/background_position-expected.txt:
  • platform/ios-simulator/css1/color_and_background/background_repeat-expected.txt:
  • platform/ios-simulator/css1/color_and_background/color-expected.txt:
  • platform/ios-simulator/css1/conformance/forward_compatible_parsing-expected.txt:
  • platform/ios-simulator/css1/font_properties/font-expected.txt:
  • platform/ios-simulator/css1/font_properties/font_family-expected.txt:
  • platform/ios-simulator/css1/font_properties/font_size-expected.txt:
  • platform/ios-simulator/css1/font_properties/font_style-expected.txt:
  • platform/ios-simulator/css1/font_properties/font_variant-expected.txt:
  • platform/ios-simulator/css1/font_properties/font_weight-expected.txt:
  • platform/ios-simulator/css1/formatting_model/canvas-expected.txt:
  • platform/ios-simulator/css1/formatting_model/height_of_lines-expected.txt:
  • platform/ios-simulator/css1/formatting_model/inline_elements-expected.txt:
  • platform/ios-simulator/css1/formatting_model/replaced_elements-expected.txt:
  • platform/ios-simulator/css1/formatting_model/vertical_formatting-expected.txt:
  • platform/ios-simulator/css1/pseudo/anchor-expected.txt:
  • platform/ios-simulator/css1/pseudo/firstletter-expected.txt:
  • platform/ios-simulator/css1/pseudo/firstline-expected.txt:
  • platform/ios-simulator/css1/pseudo/multiple_pseudo_elements-expected.txt:
  • platform/ios-simulator/css1/pseudo/pseudo_elements_in_selectors-expected.txt:
  • platform/ios-simulator/css1/text_properties/letter_spacing-expected.txt:
  • platform/ios-simulator/css1/text_properties/line_height-expected.txt:
  • platform/ios-simulator/css1/text_properties/text_align-expected.txt:
  • platform/ios-simulator/css1/text_properties/text_decoration-expected.txt:
  • platform/ios-simulator/css1/text_properties/text_indent-expected.txt:
  • platform/ios-simulator/css1/text_properties/text_transform-expected.txt:
  • platform/ios-simulator/css1/text_properties/vertical_align-expected.txt:
  • platform/ios-simulator/css1/text_properties/word_spacing-expected.txt:
  • platform/ios-simulator/css1/units/color_units-expected.txt:
  • platform/ios-simulator/css1/units/length_units-expected.txt:
  • platform/ios-simulator/css1/units/percentage_units-expected.txt:
  • platform/ios-simulator/css1/units/urls-expected.txt:
  • platform/ios-simulator/css2.1/20110323/border-collapse-offset-002-expected.txt:
  • platform/ios-simulator/css2.1/20110323/border-conflict-style-079-expected.txt:
  • platform/ios-simulator/css2.1/20110323/border-conflict-style-088-expected.txt:
  • platform/ios-simulator/css2.1/20110323/dynamic-top-change-002-expected.txt:
  • platform/ios-simulator/css2.1/20110323/dynamic-top-change-003-expected.txt:
  • platform/ios-simulator/css2.1/20110323/inline-table-001-expected.txt:
  • platform/ios-simulator/css2.1/20110323/inline-table-003-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-001-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-002-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-003-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-004-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-005-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-006-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-007-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-013-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-014-expected.txt:
  • platform/ios-simulator/css2.1/20110323/margin-applies-to-015-expected.txt:
  • platform/ios-simulator/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt:
  • platform/ios-simulator/css2.1/20110323/table-caption-001-expected.txt:
  • platform/ios-simulator/css2.1/20110323/table-caption-optional-001-expected.txt:
  • platform/ios-simulator/css2.1/20110323/table-caption-optional-002-expected.txt:
  • platform/ios-simulator/css2.1/t040302-c61-ex-len-00-b-a-expected.txt:
  • platform/ios-simulator/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt:
  • platform/ios-simulator/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt:
  • platform/ios-simulator/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt:
  • platform/ios-simulator/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt:
  • platform/ios-simulator/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt:
  • platform/ios-simulator/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt:
  • platform/ios-simulator/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-04-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-06-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-08-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-13-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-14-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-16-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-17-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-18-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-24-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-25-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-30-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-31-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-34-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-44-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-52-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-54-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-59-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-64-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-65-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-70-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-71-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-74-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-84-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-85-d-expected.txt:
  • platform/ios-simulator/css2.1/t170602-bdr-conflct-w-94-d-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-177-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-178-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-179-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-180-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-181-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-189-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-190-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-191-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-192-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-193-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-194-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-195-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-196-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-205-expected.txt:
  • platform/ios-simulator/css2.1/tables/table-anonymous-objects-206-expected.txt:
  • platform/ios-simulator/css3/css3-modsel-33-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-18-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-29-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-29b-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-33-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-73-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-73b-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-77-expected.txt:
  • platform/ios-simulator/css3/selectors3/html/css3-modsel-77b-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-18-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-29-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-29b-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-33-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-73-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-73b-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-77-expected.txt:
  • platform/ios-simulator/css3/selectors3/xhtml/css3-modsel-77b-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-18-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-29-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-29b-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-33-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-73-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-73b-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-77-expected.txt:
  • platform/ios-simulator/css3/selectors3/xml/css3-modsel-77b-expected.txt:
  • platform/ios-simulator/editing/deleting/4922367-expected.txt:
  • platform/ios-simulator/editing/deleting/5126166-expected.txt:
  • platform/ios-simulator/editing/deleting/5206311-1-expected.txt:
  • platform/ios-simulator/editing/deleting/5433862-2-expected.txt:
  • platform/ios-simulator/editing/inserting/paragraph-separator-in-table-1-expected.txt:
  • platform/ios-simulator/editing/selection/5057506-2-expected.txt:
  • platform/ios-simulator/editing/selection/5057506-expected.txt:
  • platform/ios-simulator/editing/selection/5131716-1-expected.txt:
  • platform/ios-simulator/editing/selection/5131716-2-expected.txt:
  • platform/ios-simulator/editing/selection/5131716-3-expected.txt:
  • platform/ios-simulator/editing/selection/5131716-4-expected.txt:
  • platform/ios-simulator/fast/block/basic/quirk-percent-height-table-cell-expected.txt:
  • platform/ios-simulator/fast/block/float/015-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/006-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/010-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/011-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/012-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/015-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/016-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/017-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/018-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/019-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/020-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/021-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/022-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/025-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/032-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/033-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/034-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/041-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/042-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/055-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/056-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/057-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/058-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/059-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/006-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/010-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/011-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/012-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/015-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/016-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/017-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/018-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/019-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/020-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/021-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/022-expected.txt:
  • platform/ios-simulator/fast/block/margin-collapse/block-inside-inline/025-expected.txt:
  • platform/ios-simulator/fast/block/positioning/negative-right-pos-expected.txt:
  • platform/ios-simulator/fast/block/positioning/table-cell-static-position-expected.txt:
  • platform/ios-simulator/fast/borders/border-antialiasing-expected.txt:
  • platform/ios-simulator/fast/borders/border-radius-different-width-001-expected.txt:
  • platform/ios-simulator/fast/borders/table-borders-expected.txt:
  • platform/ios-simulator/fast/css-generated-content/first-letter-in-nested-before-expected.txt:
  • platform/ios-simulator/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt:
  • platform/ios-simulator/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt:
  • platform/ios-simulator/fast/css-generated-content/table-cell-before-after-child-add-expected.txt:
  • platform/ios-simulator/fast/css-generated-content/table-row-group-with-before-expected.txt:
  • platform/ios-simulator/fast/css-generated-content/table-row-with-before-expected.txt:
  • platform/ios-simulator/fast/css-generated-content/table-with-before-expected.txt:
  • platform/ios-simulator/fast/css/003-expected.txt:
  • platform/ios-simulator/fast/css/absolute-poition-in-rtl-parent-expected.txt:
  • platform/ios-simulator/fast/css/acid2-expected.txt:
  • platform/ios-simulator/fast/css/acid2-pixel-expected.txt:
  • platform/ios-simulator/fast/css/bidi-override-in-anonymous-block-expected.txt:
  • platform/ios-simulator/fast/css/box-shadow-and-border-radius-expected.txt:
  • platform/ios-simulator/fast/css/css3-nth-child-expected.txt:
  • platform/ios-simulator/fast/css/focus-ring-detached-expected.txt:
  • platform/ios-simulator/fast/css/focus-ring-multiline-expected.txt:
  • platform/ios-simulator/fast/css/h1-in-section-elements-expected.txt:
  • platform/ios-simulator/fast/css/percentage-non-integer-expected.txt:
  • platform/ios-simulator/fast/css/table-text-align-quirk-expected.txt:
  • platform/ios-simulator/fast/css/table-text-align-strict-expected.txt:
  • platform/ios-simulator/fast/dom/34176-expected.txt:
  • platform/ios-simulator/fast/dom/HTMLTableElement/colSpan-expected.txt:
  • platform/ios-simulator/fast/dom/HTMLTableElement/createCaption-expected.txt:
  • platform/ios-simulator/fast/dom/row-inner-text-expected.txt:
  • platform/ios-simulator/fast/dynamic/001-expected.txt:
  • platform/ios-simulator/fast/dynamic/containing-block-change-expected.txt:
  • platform/ios-simulator/fast/dynamic/float-withdrawal-expected.txt:
  • platform/ios-simulator/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
  • platform/ios-simulator/fast/dynamic/subtree-table-cell-height-expected.txt:
  • platform/ios-simulator/fast/forms/001-expected.txt:
  • platform/ios-simulator/fast/forms/005-expected.txt:
  • platform/ios-simulator/fast/forms/form-element-geometry-expected.txt:
  • platform/ios-simulator/fast/forms/form-hides-table-expected.txt:
  • platform/ios-simulator/fast/forms/formmove3-expected.txt:
  • platform/ios-simulator/fast/forms/input-table-expected.txt:
  • platform/ios-simulator/fast/forms/listbox-bidi-align-expected.txt:
  • platform/ios-simulator/fast/forms/preserveFormDuringResidualStyle-expected.txt:
  • platform/ios-simulator/fast/forms/select-dirty-parent-pref-widths-expected.txt:
  • platform/ios-simulator/fast/html/details-writing-mode-expected.txt:
  • platform/ios-simulator/fast/inline-block/001-expected.txt:
  • platform/ios-simulator/fast/inline-block/overflow-clip-expected.txt:
  • platform/ios-simulator/fast/invalid/012-expected.txt:
  • platform/ios-simulator/fast/lists/004-expected.txt:
  • platform/ios-simulator/fast/multicol/span/before-child-anonymous-column-block-expected.txt:
  • platform/ios-simulator/fast/multicol/table-vertical-align-expected.txt:
  • platform/ios-simulator/fast/overflow/002-expected.txt:
  • platform/ios-simulator/fast/overflow/overflow-rtl-expected.txt:
  • platform/ios-simulator/fast/overflow/overflow-rtl-vertical-expected.txt:
  • platform/ios-simulator/fast/overflow/table-overflow-float-expected.txt:
  • platform/ios-simulator/fast/reflections/table-cell-expected.txt:
  • platform/ios-simulator/fast/replaced/005-expected.txt:
  • platform/ios-simulator/fast/replaced/percent-height-in-anonymous-block-in-table-expected.txt:
  • platform/ios-simulator/fast/replaced/selection-rect-in-table-cell-expected.txt:
  • platform/ios-simulator/fast/replaced/table-percent-height-positioned-expected.txt:
  • platform/ios-simulator/fast/replaced/width100percent-checkbox-expected.txt:
  • platform/ios-simulator/fast/replaced/width100percent-image-expected.txt:
  • platform/ios-simulator/fast/replaced/width100percent-menulist-expected.txt:
  • platform/ios-simulator/fast/replaced/width100percent-radio-expected.txt:
  • platform/ios-simulator/fast/replaced/width100percent-searchfield-expected.txt:
  • platform/ios-simulator/fast/replaced/width100percent-textarea-expected.txt:
  • platform/ios-simulator/fast/replaced/width100percent-textfield-expected.txt:
  • platform/ios-simulator/fast/selectors/077-expected.txt:
  • platform/ios-simulator/fast/selectors/077b-expected.txt:
  • platform/ios-simulator/fast/table/002-expected.txt:
  • platform/ios-simulator/fast/table/003-expected.txt:
  • platform/ios-simulator/fast/table/005-expected.txt:
  • platform/ios-simulator/fast/table/007-expected.txt:
  • platform/ios-simulator/fast/table/008-expected.txt:
  • platform/ios-simulator/fast/table/009-expected.txt:
  • platform/ios-simulator/fast/table/012-expected.txt:
  • platform/ios-simulator/fast/table/013-expected.txt:
  • platform/ios-simulator/fast/table/021-expected.txt:
  • platform/ios-simulator/fast/table/023-expected.txt:
  • platform/ios-simulator/fast/table/028-expected.txt:
  • platform/ios-simulator/fast/table/028-vertical-expected.txt:
  • platform/ios-simulator/fast/table/029-expected.txt:
  • platform/ios-simulator/fast/table/038-expected.txt:
  • platform/ios-simulator/fast/table/038-vertical-expected.txt:
  • platform/ios-simulator/fast/table/039-expected.txt:
  • platform/ios-simulator/fast/table/040-expected.txt:
  • platform/ios-simulator/fast/table/040-vertical-expected.txt:
  • platform/ios-simulator/fast/table/100-percent-cell-width-expected.txt:
  • platform/ios-simulator/fast/table/add-before-anonymous-child-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/001-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/001-vertical-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/002-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/002-vertical-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/003-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/003-vertical-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/cached-69296-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/cached-change-row-border-width-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/cached-change-tbody-border-width-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/equal-precedence-resolution-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/rtl-border-collapsing-expected.txt:
  • platform/ios-simulator/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
  • platform/ios-simulator/fast/table/caption-relayout-expected.txt:
  • platform/ios-simulator/fast/table/cell-absolute-child-expected.txt:
  • platform/ios-simulator/fast/table/cell-width-auto-expected.txt:
  • platform/ios-simulator/fast/table/colspanMinWidth-expected.txt:
  • platform/ios-simulator/fast/table/dynamic-cellpadding-expected.txt:
  • platform/ios-simulator/fast/table/edge-offsets-expected.txt:
  • platform/ios-simulator/fast/table/empty-cells-expected.txt:
  • platform/ios-simulator/fast/table/frame-and-rules-expected.txt:
  • platform/ios-simulator/fast/table/giantRowspan-expected.txt:
  • platform/ios-simulator/fast/table/growCellForImageQuirk-expected.txt:
  • platform/ios-simulator/fast/table/growCellForImageQuirk-vertical-expected.txt:
  • platform/ios-simulator/fast/table/invisible-cell-background-expected.txt:
  • platform/ios-simulator/fast/table/large-width-expected.txt:
  • platform/ios-simulator/fast/table/max-width-integer-overflow-expected.txt:
  • platform/ios-simulator/fast/table/mozilla-bug10296-vertical-align-1-expected.txt:
  • platform/ios-simulator/fast/table/mozilla-bug10296-vertical-align-2-expected.txt:
  • platform/ios-simulator/fast/table/nobr-expected.txt:
  • platform/ios-simulator/fast/table/overflowHidden-expected.txt:
  • platform/ios-simulator/fast/table/percent-heights-expected.txt:
  • platform/ios-simulator/fast/table/percent-widths-stretch-expected.txt:
  • platform/ios-simulator/fast/table/prepend-in-anonymous-table-expected.txt:
  • platform/ios-simulator/fast/table/relative-position-containment-expected.txt:
  • platform/ios-simulator/fast/table/relative-position-offsets-expected.txt:
  • platform/ios-simulator/fast/table/relative-position-stacking-expected.txt:
  • platform/ios-simulator/fast/table/replaced-percent-height-expected.txt:
  • platform/ios-simulator/fast/table/row-height-recalc-expected.txt:
  • platform/ios-simulator/fast/table/rowspan-paint-order-expected.txt:
  • platform/ios-simulator/fast/table/rowspan-paint-order-vertical-expected.txt:
  • platform/ios-simulator/fast/table/spanOverlapRepaint-expected.txt:
  • platform/ios-simulator/fast/table/stale-grid-crash-expected.txt:
  • platform/ios-simulator/fast/table/table-cell-before-child-in-table-expected.txt:
  • platform/ios-simulator/fast/table/table-display-types-expected.txt:
  • platform/ios-simulator/fast/table/table-display-types-strict-expected.txt:
  • platform/ios-simulator/fast/table/table-display-types-vertical-expected.txt:
  • platform/ios-simulator/fast/table/table-row-before-after-content-around-table-cell-expected.txt:
  • platform/ios-simulator/fast/table/table-row-outline-paint-expected.txt:
  • platform/ios-simulator/fast/table/table-row-split2-expected.txt:
  • platform/ios-simulator/fast/table/table-section-split2-expected.txt:
  • platform/ios-simulator/fast/table/table-split-expected.txt:
  • platform/ios-simulator/fast/table/table-split2-expected.txt:
  • platform/ios-simulator/fast/text/basic/004-expected.txt:
  • platform/ios-simulator/fast/text/basic/005-expected.txt:
  • platform/ios-simulator/fast/text/emoji-expected.txt:
  • platform/ios-simulator/fast/text/international/bidi-LDB-2-CSS-expected.txt:
  • platform/ios-simulator/fast/text/international/bidi-LDB-2-HTML-expected.txt:
  • platform/ios-simulator/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/002-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/003-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/004-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/005-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/010-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/011-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/015-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/016-expected.txt:
  • platform/ios-simulator/fast/text/whitespace/025-expected.txt:
  • platform/ios-simulator/fast/writing-mode/table-percent-width-quirk-expected.txt:
  • platform/ios-simulator/fast/writing-mode/vertical-align-table-baseline-expected.txt:
  • platform/ios-simulator/http/tests/misc/acid2-expected.txt:
  • platform/ios-simulator/http/tests/misc/acid2-pixel-expected.txt:
  • platform/ios-simulator/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.txt:
  • platform/ios-simulator/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.txt:
  • platform/ios-simulator/mathml/opentype/opentype-stretchy-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug10009-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug101201-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug101674-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug10296-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1055-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug10565-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug10633-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1067-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1067-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug106795-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug106816-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug113235-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug113424-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1163-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1188-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug12008-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug120107-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug120364-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1224-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug12268-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug12709-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1271-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug12908-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug12908-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug12910-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1296-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1302-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug13169-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1318-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug139524-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug139524-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug139524-3-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug139524-4-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1430-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug14323-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1474-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug14929-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug15247-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug154780-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug15544-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug159108-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug15933-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug16012-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug16252-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug17138-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug175455-4-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug17548-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug17587-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1800-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1802-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1802s-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug1809-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug18440-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug18664-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug18955-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug19061-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug19061-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug19356-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug20804-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2123-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug215629-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug219693-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug219693-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug22019-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug222336-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug22246-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug22246-2a-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug22246-3-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug22246-3a-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug22513-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2296-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug23235-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug24200-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2479-3-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug25004-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug25074-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug25663-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2684-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug269566-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug277062-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2773-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug27993-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2886-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug28933-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug29058-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug29429-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2954-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2981-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2981-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug2997-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug30273-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug3103-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug32205-3-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug3260-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug32841-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug33137-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug33855-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug3454-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug3977-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4093-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug42187-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4385-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug44505-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4501-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug45350-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug45486-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4576-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug46268-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug46268-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug46368-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug46623-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug46623-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug47432-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4803-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4849-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug4849-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug51727-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug5188-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug52505-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug52506-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug53690-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug53690-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug53891-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug5538-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug55789-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug57828-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug5797-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug5835-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug59354-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug60804-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug60807-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug6184-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug6304-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug6404-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug647-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug6674-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug68998-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug69382-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug69382-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug72359-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug7342-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug7714-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug78162-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug82946-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug86708-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug8950-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug9123-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug9123-2-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug92143-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug963-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug96334-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug97383-expected.txt:
  • platform/ios-simulator/tables/mozilla/bugs/bug9879-1-expected.txt:
  • platform/ios-simulator/tables/mozilla/collapsing_borders/bug41262-3-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/bloomberg-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/borders-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/cell_heights-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_span-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_auto_autoFix-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_auto_fix-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_auto_fixPer-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_auto_per-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_fix_autoFix-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_fix_fix-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_fix_fixPer-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/col_widths_fix_per-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/margins-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/misc-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/nested1-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/one_row-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/table_frame-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/table_heights-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/table_rules-expected.txt:
  • platform/ios-simulator/tables/mozilla/core/table_widths-expected.txt:
  • platform/ios-simulator/tables/mozilla/dom/insertColGroups1-expected.txt:
  • platform/ios-simulator/tables/mozilla/dom/insertColGroups2-expected.txt:
  • platform/ios-simulator/tables/mozilla/dom/insertCols1-expected.txt:
  • platform/ios-simulator/tables/mozilla/dom/insertCols2-expected.txt:
  • platform/ios-simulator/tables/mozilla/dom/insertCols3-expected.txt:
  • platform/ios-simulator/tables/mozilla/dom/insertCols4-expected.txt:
  • platform/ios-simulator/tables/mozilla/dom/insertCols5-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_position-table-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_simple-table-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_span-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_width_pct-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_width_px-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/table_row_align_center-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/table_row_align_left-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/table_row_align_right-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_black-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_green-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_red-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_white-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_td_width-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_th_colspan-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_th_width-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tables_width_px-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tbody_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tbody_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tbody_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tbody_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/td_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/td_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/td_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/td_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tfoot_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tfoot_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/th_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/th_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/th_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/th_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/thead_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/thead_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/thead_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/thead_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_black-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_green-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_red-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_white-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/tr_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_align_char-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_span-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_width_px-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_col_width_rel-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_colgroup_align_char-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_colgroup_span-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tbody_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tbody_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_align_center-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_align_char-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_align_justify-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_align_left-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_align_right-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_td_width-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_align_center-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_align_char-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_align_justify-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_align_left-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_align_right-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_rowspan-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_th_width-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_thead_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_thead_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_thead_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tr_align_char-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tr_valign_baseline-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tr_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/x_tr_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/cell_widths-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/ms-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/nested2-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/nestedTables-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/slashlogo-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/test3-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/test6-expected.txt:
  • platform/ios-simulator/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/97619-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug1164-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug1647-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug1725-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug17826-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug21518-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug22122-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug23847-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug3105-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug56024-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug59252-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug72393-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug7243-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug89315-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/core/captions1-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/core/captions2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/core/col_span2-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/core/cols1-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/core/columns-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/core/standards1-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt:
  • platform/ios-simulator/tables/mozilla_expected_failures/other/empty_cells-expected.txt:
  • platform/mac/accessibility/table-detection-expected.txt:
  • platform/mac/compositing/contents-opaque/table-parts-expected.txt:
  • platform/mac/css1/basic/containment-expected.txt:
  • platform/mac/css1/basic/contextual_selectors-expected.txt:
  • platform/mac/css1/basic/grouping-expected.txt:
  • platform/mac/css1/basic/id_as_selector-expected.txt:
  • platform/mac/css1/basic/inheritance-expected.txt:
  • platform/mac/css1/box_properties/border-expected.txt:
  • platform/mac/css1/box_properties/border_bottom-expected.txt:
  • platform/mac/css1/box_properties/border_bottom_inline-expected.txt:
  • platform/mac/css1/box_properties/border_bottom_width-expected.txt:
  • platform/mac/css1/box_properties/border_bottom_width_inline-expected.txt:
  • platform/mac/css1/box_properties/border_color-expected.txt:
  • platform/mac/css1/box_properties/border_color_inline-expected.txt:
  • platform/mac/css1/box_properties/border_inline-expected.txt:
  • platform/mac/css1/box_properties/border_left-expected.txt:
  • platform/mac/css1/box_properties/border_left_inline-expected.txt:
  • platform/mac/css1/box_properties/border_left_width-expected.txt:
  • platform/mac/css1/box_properties/border_left_width_inline-expected.txt:
  • platform/mac/css1/box_properties/border_right-expected.txt:
  • platform/mac/css1/box_properties/border_right_inline-expected.txt:
  • platform/mac/css1/box_properties/border_right_width-expected.txt:
  • platform/mac/css1/box_properties/border_right_width_inline-expected.txt:
  • platform/mac/css1/box_properties/border_style-expected.txt:
  • platform/mac/css1/box_properties/border_style_inline-expected.txt:
  • platform/mac/css1/box_properties/border_top-expected.txt:
  • platform/mac/css1/box_properties/border_top_inline-expected.txt:
  • platform/mac/css1/box_properties/border_top_width-expected.txt:
  • platform/mac/css1/box_properties/border_top_width_inline-expected.txt:
  • platform/mac/css1/box_properties/border_width-expected.txt:
  • platform/mac/css1/box_properties/border_width_inline-expected.txt:
  • platform/mac/css1/box_properties/clear-expected.txt:
  • platform/mac/css1/box_properties/clear_float-expected.txt:
  • platform/mac/css1/box_properties/float-expected.txt:
  • platform/mac/css1/box_properties/float_elements_in_series-expected.txt:
  • platform/mac/css1/box_properties/float_margin-expected.txt:
  • platform/mac/css1/box_properties/float_on_text_elements-expected.txt:
  • platform/mac/css1/box_properties/height-expected.txt:
  • platform/mac/css1/box_properties/margin-expected.txt:
  • platform/mac/css1/box_properties/margin_bottom-expected.txt:
  • platform/mac/css1/box_properties/margin_bottom_inline-expected.txt:
  • platform/mac/css1/box_properties/margin_inline-expected.txt:
  • platform/mac/css1/box_properties/margin_left-expected.txt:
  • platform/mac/css1/box_properties/margin_left_inline-expected.txt:
  • platform/mac/css1/box_properties/margin_right-expected.txt:
  • platform/mac/css1/box_properties/margin_right_inline-expected.txt:
  • platform/mac/css1/box_properties/margin_top-expected.txt:
  • platform/mac/css1/box_properties/margin_top_inline-expected.txt:
  • platform/mac/css1/box_properties/padding-expected.txt:
  • platform/mac/css1/box_properties/padding_bottom-expected.txt:
  • platform/mac/css1/box_properties/padding_bottom_inline-expected.txt:
  • platform/mac/css1/box_properties/padding_inline-expected.txt:
  • platform/mac/css1/box_properties/padding_left-expected.txt:
  • platform/mac/css1/box_properties/padding_left_inline-expected.txt:
  • platform/mac/css1/box_properties/padding_right-expected.txt:
  • platform/mac/css1/box_properties/padding_right_inline-expected.txt:
  • platform/mac/css1/box_properties/padding_top-expected.txt:
  • platform/mac/css1/box_properties/padding_top_inline-expected.txt:
  • platform/mac/css1/box_properties/width-expected.txt:
  • platform/mac/css1/cascade/cascade_order-expected.txt:
  • platform/mac/css1/cascade/important-expected.txt:
  • platform/mac/css1/classification/display-expected.txt:
  • platform/mac/css1/classification/list_style-expected.txt:
  • platform/mac/css1/classification/list_style_image-expected.txt:
  • platform/mac/css1/classification/list_style_position-expected.txt:
  • platform/mac/css1/classification/list_style_type-expected.txt:
  • platform/mac/css1/classification/white_space-expected.txt:
  • platform/mac/css1/color_and_background/background-expected.txt:
  • platform/mac/css1/color_and_background/background_attachment-expected.txt:
  • platform/mac/css1/color_and_background/background_color-expected.txt:
  • platform/mac/css1/color_and_background/background_image-expected.txt:
  • platform/mac/css1/color_and_background/background_position-expected.txt:
  • platform/mac/css1/color_and_background/background_repeat-expected.txt:
  • platform/mac/css1/color_and_background/color-expected.txt:
  • platform/mac/css1/conformance/forward_compatible_parsing-expected.txt:
  • platform/mac/css1/font_properties/font-expected.txt:
  • platform/mac/css1/font_properties/font_family-expected.txt:
  • platform/mac/css1/font_properties/font_size-expected.txt:
  • platform/mac/css1/font_properties/font_style-expected.txt:
  • platform/mac/css1/font_properties/font_variant-expected.txt:
  • platform/mac/css1/font_properties/font_weight-expected.txt:
  • platform/mac/css1/formatting_model/canvas-expected.txt:
  • platform/mac/css1/formatting_model/floating_elements-expected.txt:
  • platform/mac/css1/formatting_model/height_of_lines-expected.txt:
  • platform/mac/css1/formatting_model/inline_elements-expected.txt:
  • platform/mac/css1/formatting_model/replaced_elements-expected.txt:
  • platform/mac/css1/formatting_model/vertical_formatting-expected.txt:
  • platform/mac/css1/pseudo/anchor-expected.txt:
  • platform/mac/css1/pseudo/firstletter-expected.txt:
  • platform/mac/css1/pseudo/firstline-expected.txt:
  • platform/mac/css1/pseudo/multiple_pseudo_elements-expected.txt:
  • platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.txt:
  • platform/mac/css1/text_properties/letter_spacing-expected.txt:
  • platform/mac/css1/text_properties/line_height-expected.txt:
  • platform/mac/css1/text_properties/text_align-expected.txt:
  • platform/mac/css1/text_properties/text_decoration-expected.txt:
  • platform/mac/css1/text_properties/text_indent-expected.txt:
  • platform/mac/css1/text_properties/text_transform-expected.txt:
  • platform/mac/css1/text_properties/vertical_align-expected.txt:
  • platform/mac/css1/text_properties/word_spacing-expected.txt:
  • platform/mac/css1/units/color_units-expected.txt:
  • platform/mac/css1/units/length_units-expected.txt:
  • platform/mac/css1/units/percentage_units-expected.txt:
  • platform/mac/css1/units/urls-expected.txt:
  • platform/mac/css2.1/20110323/border-collapse-offset-002-expected.txt:
  • platform/mac/css2.1/20110323/border-conflict-style-079-expected.txt:
  • platform/mac/css2.1/20110323/border-conflict-style-088-expected.txt:
  • platform/mac/css2.1/20110323/dynamic-top-change-002-expected.txt:
  • platform/mac/css2.1/20110323/dynamic-top-change-003-expected.txt:
  • platform/mac/css2.1/20110323/inline-table-001-expected.txt:
  • platform/mac/css2.1/20110323/inline-table-003-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-001-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-002-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-003-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-004-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-005-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-006-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-007-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-013-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-014-expected.txt:
  • platform/mac/css2.1/20110323/margin-applies-to-015-expected.txt:
  • platform/mac/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt:
  • platform/mac/css2.1/20110323/table-caption-001-expected.txt:
  • platform/mac/css2.1/20110323/table-caption-optional-001-expected.txt:
  • platform/mac/css2.1/20110323/table-caption-optional-002-expected.txt:
  • platform/mac/css2.1/t040302-c61-ex-len-00-b-a-expected.txt:
  • platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt:
  • platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt:
  • platform/mac/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt:
  • platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt:
  • platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt:
  • platform/mac/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt:
  • platform/mac/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-04-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-06-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-08-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-13-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-14-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-16-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-17-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-18-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-24-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-25-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-30-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-31-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-34-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-44-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-52-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-54-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-59-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-64-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-65-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-70-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-71-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-74-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-84-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-85-d-expected.txt:
  • platform/mac/css2.1/t170602-bdr-conflct-w-94-d-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-177-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-178-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-179-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-180-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-181-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-189-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-190-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-191-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-192-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-193-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-194-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-195-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-196-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-205-expected.txt:
  • platform/mac/css2.1/tables/table-anonymous-objects-206-expected.txt:
  • platform/mac/css3/css3-modsel-33-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-29-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-29b-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-33-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-73-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-73b-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-77-expected.txt:
  • platform/mac/css3/selectors3/html/css3-modsel-77b-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-29-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-29b-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-33-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-73-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-73b-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-77-expected.txt:
  • platform/mac/css3/selectors3/xhtml/css3-modsel-77b-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-29-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-29b-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-33-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-73-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-73b-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-77-expected.txt:
  • platform/mac/css3/selectors3/xml/css3-modsel-77b-expected.txt:
  • platform/mac/editing/deleting/4922367-expected.txt:
  • platform/mac/editing/deleting/5126166-expected.txt:
  • platform/mac/editing/deleting/5144139-2-expected.txt:
  • platform/mac/editing/deleting/5206311-1-expected.txt:
  • platform/mac/editing/deleting/5433862-2-expected.txt:
  • platform/mac/editing/inserting/paragraph-separator-in-table-1-expected.txt:
  • platform/mac/editing/pasteboard/innerText-inline-table-expected.txt:
  • platform/mac/editing/selection/3690703-2-expected.txt:
  • platform/mac/editing/selection/3690703-expected.txt:
  • platform/mac/editing/selection/3690719-expected.txt:
  • platform/mac/editing/selection/5057506-2-expected.txt:
  • platform/mac/editing/selection/5057506-expected.txt:
  • platform/mac/editing/selection/5131716-1-expected.txt:
  • platform/mac/editing/selection/5131716-2-expected.txt:
  • platform/mac/editing/selection/5131716-3-expected.txt:
  • platform/mac/editing/selection/5131716-4-expected.txt:
  • platform/mac/editing/selection/move-by-line-001-expected.txt:
  • platform/mac/editing/selection/select-all-004-expected.txt:
  • platform/mac/editing/unsupported-content/table-type-after-expected.txt:
  • platform/mac/editing/unsupported-content/table-type-before-expected.txt:
  • platform/mac/fast/block/basic/016-expected.txt:
  • platform/mac/fast/block/basic/quirk-percent-height-table-cell-expected.txt:
  • platform/mac/fast/block/float/015-expected.txt:
  • platform/mac/fast/block/margin-collapse/006-expected.txt:
  • platform/mac/fast/block/margin-collapse/010-expected.txt:
  • platform/mac/fast/block/margin-collapse/011-expected.txt:
  • platform/mac/fast/block/margin-collapse/012-expected.txt:
  • platform/mac/fast/block/margin-collapse/015-expected.txt:
  • platform/mac/fast/block/margin-collapse/016-expected.txt:
  • platform/mac/fast/block/margin-collapse/017-expected.txt:
  • platform/mac/fast/block/margin-collapse/018-expected.txt:
  • platform/mac/fast/block/margin-collapse/019-expected.txt:
  • platform/mac/fast/block/margin-collapse/020-expected.txt:
  • platform/mac/fast/block/margin-collapse/021-expected.txt:
  • platform/mac/fast/block/margin-collapse/022-expected.txt:
  • platform/mac/fast/block/margin-collapse/025-expected.txt:
  • platform/mac/fast/block/margin-collapse/032-expected.txt:
  • platform/mac/fast/block/margin-collapse/033-expected.txt:
  • platform/mac/fast/block/margin-collapse/034-expected.txt:
  • platform/mac/fast/block/margin-collapse/041-expected.txt:
  • platform/mac/fast/block/margin-collapse/042-expected.txt:
  • platform/mac/fast/block/margin-collapse/055-expected.txt:
  • platform/mac/fast/block/margin-collapse/056-expected.txt:
  • platform/mac/fast/block/margin-collapse/057-expected.txt:
  • platform/mac/fast/block/margin-collapse/058-expected.txt:
  • platform/mac/fast/block/margin-collapse/059-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/006-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/010-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/011-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/012-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/015-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/016-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/017-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/018-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/019-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/020-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/021-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/022-expected.txt:
  • platform/mac/fast/block/margin-collapse/block-inside-inline/025-expected.txt:
  • platform/mac/fast/block/positioning/negative-right-pos-expected.txt:
  • platform/mac/fast/block/positioning/table-cell-static-position-expected.txt:
  • platform/mac/fast/borders/border-antialiasing-expected.txt:
  • platform/mac/fast/borders/border-radius-different-width-001-expected.txt:
  • platform/mac/fast/borders/table-borders-expected.txt:
  • platform/mac/fast/css-generated-content/first-letter-in-nested-before-expected.txt:
  • platform/mac/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt:
  • platform/mac/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt:
  • platform/mac/fast/css-generated-content/table-cell-before-after-child-add-expected.txt:
  • platform/mac/fast/css-generated-content/table-parts-before-and-after-expected.txt:
  • platform/mac/fast/css-generated-content/table-row-group-with-before-expected.txt:
  • platform/mac/fast/css-generated-content/table-row-with-before-expected.txt:
  • platform/mac/fast/css-generated-content/table-with-before-expected.txt:
  • platform/mac/fast/css/003-expected.txt:
  • platform/mac/fast/css/absolute-poition-in-rtl-parent-expected.txt:
  • platform/mac/fast/css/acid2-expected.txt:
  • platform/mac/fast/css/acid2-pixel-expected.txt:
  • platform/mac/fast/css/bidi-override-in-anonymous-block-expected.txt:
  • platform/mac/fast/css/box-shadow-and-border-radius-expected.txt:
  • platform/mac/fast/css/caption-width-absolute-position-expected.txt:
  • platform/mac/fast/css/caption-width-absolute-position-offset-top-expected.txt:
  • platform/mac/fast/css/caption-width-fixed-position-expected.txt:
  • platform/mac/fast/css/caption-width-fixed-position-offset-top-expected.txt:
  • platform/mac/fast/css/caption-width-relative-position-expected.txt:
  • platform/mac/fast/css/caption-width-relative-position-offset-top-expected.txt:
  • platform/mac/fast/css/css3-nth-child-expected.txt:
  • platform/mac/fast/css/focus-ring-detached-expected.txt:
  • platform/mac/fast/css/focus-ring-multiline-expected.txt:
  • platform/mac/fast/css/h1-in-section-elements-expected.txt:
  • platform/mac/fast/css/image-rendering-expected.txt:
  • platform/mac/fast/css/min-width-with-spanned-cell-expected.txt:
  • platform/mac/fast/css/percentage-non-integer-expected.txt:
  • platform/mac/fast/css/table-text-align-quirk-expected.txt:
  • platform/mac/fast/css/table-text-align-strict-expected.txt:
  • platform/mac/fast/dom/34176-expected.txt:
  • platform/mac/fast/dom/HTMLTableElement/colSpan-expected.txt:
  • platform/mac/fast/dom/HTMLTableElement/createCaption-expected.txt:
  • platform/mac/fast/dom/row-inner-text-expected.txt:
  • platform/mac/fast/dynamic/001-expected.txt:
  • platform/mac/fast/dynamic/containing-block-change-expected.txt:
  • platform/mac/fast/dynamic/float-withdrawal-expected.txt:
  • platform/mac/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
  • platform/mac/fast/dynamic/subtree-table-cell-height-expected.txt:
  • platform/mac/fast/encoding/utf-16-big-endian-expected.txt:
  • platform/mac/fast/encoding/utf-16-little-endian-expected.txt:
  • platform/mac/fast/forms/001-expected.txt:
  • platform/mac/fast/forms/005-expected.txt:
  • platform/mac/fast/forms/basic-buttons-expected.txt:
  • platform/mac/fast/forms/form-element-geometry-expected.txt:
  • platform/mac/fast/forms/form-hides-table-expected.txt:
  • platform/mac/fast/forms/form-in-malformed-markup-expected.txt:
  • platform/mac/fast/forms/formmove3-expected.txt:
  • platform/mac/fast/forms/input-table-expected.txt:
  • platform/mac/fast/forms/listbox-bidi-align-expected.txt:
  • platform/mac/fast/forms/preserveFormDuringResidualStyle-expected.txt:
  • platform/mac/fast/forms/select-dirty-parent-pref-widths-expected.txt:
  • platform/mac/fast/html/details-writing-mode-expected.txt:
  • platform/mac/fast/inline-block/001-expected.txt:
  • platform/mac/fast/inline-block/overflow-clip-expected.txt:
  • platform/mac/fast/invalid/012-expected.txt:
  • platform/mac/fast/invalid/018-expected.txt:
  • platform/mac/fast/lists/004-expected.txt:
  • platform/mac/fast/lists/list-marker-before-content-table-expected.txt:
  • platform/mac/fast/multicol/span/before-child-anonymous-column-block-expected.txt:
  • platform/mac/fast/overflow/002-expected.txt:
  • platform/mac/fast/overflow/overflow-rtl-expected.txt:
  • platform/mac/fast/overflow/overflow-rtl-vertical-expected.txt:
  • platform/mac/fast/overflow/table-overflow-float-expected.txt:
  • platform/mac/fast/reflections/table-cell-expected.txt:
  • platform/mac/fast/repaint/block-selection-gap-in-table-cell-expected.txt:
  • platform/mac/fast/repaint/float-overflow-expected.txt:
  • platform/mac/fast/repaint/float-overflow-right-expected.txt:
  • platform/mac/fast/repaint/subtree-root-clip-3-expected.txt:
  • platform/mac/fast/repaint/table-cell-collapsed-border-expected.txt:
  • platform/mac/fast/repaint/table-cell-collapsed-border-scroll-expected.txt:
  • platform/mac/fast/repaint/table-cell-move-expected.txt:
  • platform/mac/fast/repaint/table-cell-overflow-expected.txt:
  • platform/mac/fast/repaint/table-cell-vertical-overflow-expected.txt:
  • platform/mac/fast/repaint/table-col-background-expected.txt:
  • platform/mac/fast/repaint/table-collapsed-border-expected.txt:
  • platform/mac/fast/repaint/table-extra-bottom-grow-expected.txt:
  • platform/mac/fast/repaint/table-outer-border-expected.txt:
  • platform/mac/fast/repaint/table-row-expected.txt:
  • platform/mac/fast/repaint/table-section-overflow-expected.txt:
  • platform/mac/fast/repaint/table-section-repaint-expected.txt:
  • platform/mac/fast/repaint/table-two-pass-layout-overpaint-expected.txt:
  • platform/mac/fast/repaint/table-writing-modes-h-expected.txt:
  • platform/mac/fast/repaint/table-writing-modes-v-expected.txt:
  • platform/mac/fast/replaced/005-expected.txt:
  • platform/mac/fast/replaced/percent-height-in-anonymous-block-in-table-expected.txt:
  • platform/mac/fast/replaced/selection-rect-in-table-cell-expected.txt:
  • platform/mac/fast/replaced/table-percent-height-positioned-expected.txt:
  • platform/mac/fast/replaced/width100percent-checkbox-expected.txt:
  • platform/mac/fast/replaced/width100percent-image-expected.txt:
  • platform/mac/fast/replaced/width100percent-menulist-expected.txt:
  • platform/mac/fast/replaced/width100percent-radio-expected.txt:
  • platform/mac/fast/replaced/width100percent-searchfield-expected.txt:
  • platform/mac/fast/replaced/width100percent-textarea-expected.txt:
  • platform/mac/fast/replaced/width100percent-textfield-expected.txt:
  • platform/mac/fast/selectors/077-expected.txt:
  • platform/mac/fast/selectors/077b-expected.txt:
  • platform/mac/fast/table/002-expected.txt:
  • platform/mac/fast/table/003-expected.txt:
  • platform/mac/fast/table/005-expected.txt:
  • platform/mac/fast/table/007-expected.txt:
  • platform/mac/fast/table/008-expected.txt:
  • platform/mac/fast/table/009-expected.txt:
  • platform/mac/fast/table/012-expected.txt:
  • platform/mac/fast/table/013-expected.txt:
  • platform/mac/fast/table/021-expected.txt:
  • platform/mac/fast/table/023-expected.txt:
  • platform/mac/fast/table/024-expected.txt:
  • platform/mac/fast/table/025-expected.txt:
  • platform/mac/fast/table/028-expected.txt:
  • platform/mac/fast/table/028-vertical-expected.txt:
  • platform/mac/fast/table/029-expected.txt:
  • platform/mac/fast/table/031-expected.txt:
  • platform/mac/fast/table/032-expected.txt:
  • platform/mac/fast/table/034-expected.txt:
  • platform/mac/fast/table/038-expected.txt:
  • platform/mac/fast/table/038-vertical-expected.txt:
  • platform/mac/fast/table/039-expected.txt:
  • platform/mac/fast/table/040-expected.txt:
  • platform/mac/fast/table/040-vertical-expected.txt:
  • platform/mac/fast/table/100-percent-cell-width-expected.txt:
  • platform/mac/fast/table/add-before-anonymous-child-expected.txt:
  • platform/mac/fast/table/border-collapsing/001-expected.txt:
  • platform/mac/fast/table/border-collapsing/001-vertical-expected.txt:
  • platform/mac/fast/table/border-collapsing/002-expected.txt:
  • platform/mac/fast/table/border-collapsing/002-vertical-expected.txt:
  • platform/mac/fast/table/border-collapsing/003-expected.txt:
  • platform/mac/fast/table/border-collapsing/003-vertical-expected.txt:
  • platform/mac/fast/table/border-collapsing/004-expected.txt:
  • platform/mac/fast/table/border-collapsing/004-vertical-expected.txt:
  • platform/mac/fast/table/border-collapsing/border-collapsing-head-foot-expected.txt:
  • platform/mac/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.txt:
  • platform/mac/fast/table/border-collapsing/bug14274-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-69296-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-cell-append-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-cell-remove-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-cell-border-color-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-cell-border-width-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-cell-sl-border-color-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-col-border-color-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-col-border-width-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-colgroup-border-color-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-colgroup-border-width-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-row-border-color-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-row-border-width-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-table-border-color-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-table-border-width-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-tbody-border-color-expected.txt:
  • platform/mac/fast/table/border-collapsing/cached-change-tbody-border-width-expected.txt:
  • platform/mac/fast/table/border-collapsing/collapsed-borders-adjoining-sections-vertical-rl-expected.txt:
  • platform/mac/fast/table/border-collapsing/collapsed-borders-painted-once-on-inner-cells-expected.txt:
  • platform/mac/fast/table/border-collapsing/equal-precedence-resolution-expected.txt:
  • platform/mac/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.txt:
  • platform/mac/fast/table/border-collapsing/rtl-border-collapsing-expected.txt:
  • platform/mac/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.txt:
  • platform/mac/fast/table/caption-relayout-expected.txt:
  • platform/mac/fast/table/cell-absolute-child-expected.txt:
  • platform/mac/fast/table/cell-width-auto-expected.txt:
  • platform/mac/fast/table/colspan-with-all-percent-cells-expected.txt:
  • platform/mac/fast/table/colspanMinWidth-expected.txt:
  • platform/mac/fast/table/colspanMinWidth-vertical-expected.txt:
  • platform/mac/fast/table/dynamic-cellpadding-expected.txt:
  • platform/mac/fast/table/edge-offsets-expected.txt:
  • platform/mac/fast/table/empty-cells-expected.txt:
  • platform/mac/fast/table/frame-and-rules-expected.txt:
  • platform/mac/fast/table/giantRowspan-expected.txt:
  • platform/mac/fast/table/growCellForImageQuirk-expected.txt:
  • platform/mac/fast/table/growCellForImageQuirk-vertical-expected.txt:
  • platform/mac/fast/table/height-percent-test-expected.txt:
  • platform/mac/fast/table/height-percent-test-vertical-expected.txt:
  • platform/mac/fast/table/invisible-cell-background-expected.txt:
  • platform/mac/fast/table/large-width-expected.txt:
  • platform/mac/fast/table/max-width-integer-overflow-expected.txt:
  • platform/mac/fast/table/mozilla-bug10296-vertical-align-1-expected.txt:
  • platform/mac/fast/table/mozilla-bug10296-vertical-align-2-expected.txt:
  • platform/mac/fast/table/nobr-expected.txt:
  • platform/mac/fast/table/overflowHidden-expected.txt:
  • platform/mac/fast/table/percent-heights-expected.txt:
  • platform/mac/fast/table/percent-widths-stretch-expected.txt:
  • platform/mac/fast/table/percent-widths-stretch-vertical-expected.txt:
  • platform/mac/fast/table/prepend-in-anonymous-table-expected.txt:
  • platform/mac/fast/table/relative-position-containment-expected.txt:
  • platform/mac/fast/table/relative-position-offsets-expected.txt:
  • platform/mac/fast/table/relative-position-stacking-expected.txt:
  • platform/mac/fast/table/replaced-percent-height-expected.txt:
  • platform/mac/fast/table/row-height-recalc-expected.txt:
  • platform/mac/fast/table/rowspan-paint-order-expected.txt:
  • platform/mac/fast/table/rowspan-paint-order-vertical-expected.txt:
  • platform/mac/fast/table/simple_paint-expected.txt:
  • platform/mac/fast/table/spanOverlapRepaint-expected.txt:
  • platform/mac/fast/table/stale-grid-crash-expected.txt:
  • platform/mac/fast/table/table-anonymous-cell-bug-expected.txt:
  • platform/mac/fast/table/table-anonymous-row-bug-expected.txt:
  • platform/mac/fast/table/table-anonymous-section-bug-expected.txt:
  • platform/mac/fast/table/table-before-child-style-update-expected.txt:
  • platform/mac/fast/table/table-cell-before-after-content-around-table-block-expected.txt:
  • platform/mac/fast/table/table-cell-before-after-content-around-table-expected.txt:
  • platform/mac/fast/table/table-cell-before-after-content-around-table-row-expected.txt:
  • platform/mac/fast/table/table-cell-before-child-in-table-expected.txt:
  • platform/mac/fast/table/table-cell-split-expected.txt:
  • platform/mac/fast/table/table-display-types-expected.txt:
  • platform/mac/fast/table/table-display-types-strict-expected.txt:
  • platform/mac/fast/table/table-display-types-vertical-expected.txt:
  • platform/mac/fast/table/table-insert-before-non-anonymous-block-expected.txt:
  • platform/mac/fast/table/table-row-before-after-content-around-block-expected.txt:
  • platform/mac/fast/table/table-row-before-after-content-around-table-cell-expected.txt:
  • platform/mac/fast/table/table-row-before-after-content-around-table-expected.txt:
  • platform/mac/fast/table/table-row-before-child-style-update-expected.txt:
  • platform/mac/fast/table/table-row-outline-paint-expected.txt:
  • platform/mac/fast/table/table-row-split2-expected.txt:
  • platform/mac/fast/table/table-row-style-not-updated-expected.txt:
  • platform/mac/fast/table/table-row-style-not-updated-with-after-content-expected.txt:
  • platform/mac/fast/table/table-row-style-not-updated-with-before-content-expected.txt:
  • platform/mac/fast/table/table-section-split2-expected.txt:
  • platform/mac/fast/table/table-split-expected.txt:
  • platform/mac/fast/table/table-split2-expected.txt:
  • platform/mac/fast/table/table-style-not-updated-expected.txt:
  • platform/mac/fast/table/wide-colspan-expected.txt:
  • platform/mac/fast/table/wide-column-expected.txt:
  • platform/mac/fast/text/atsui-negative-spacing-features-expected.txt:
  • platform/mac/fast/text/atsui-spacing-features-expected.txt:
  • platform/mac/fast/text/basic/generic-family-reset-expected.txt:
  • platform/mac/fast/text/international/003-expected.txt:
  • platform/mac/fast/text/international/bidi-LDB-2-CSS-expected.txt:
  • platform/mac/fast/text/international/bidi-LDB-2-HTML-expected.txt:
  • platform/mac/fast/text/international/bidi-LDB-2-formatting-characters-expected.txt:
  • platform/mac/fast/text/international/bidi-override-expected.txt:
  • platform/mac/fast/text/wbr-expected.txt:
  • platform/mac/fast/text/whitespace/002-expected.txt:
  • platform/mac/fast/text/whitespace/003-expected.txt:
  • platform/mac/fast/text/whitespace/004-expected.txt:
  • platform/mac/fast/text/whitespace/005-expected.txt:
  • platform/mac/fast/text/whitespace/010-expected.txt:
  • platform/mac/fast/text/whitespace/011-expected.txt:
  • platform/mac/fast/text/whitespace/013-expected.txt:
  • platform/mac/fast/text/whitespace/014-expected.txt:
  • platform/mac/fast/text/whitespace/015-expected.txt:
  • platform/mac/fast/text/whitespace/016-expected.txt:
  • platform/mac/fast/text/whitespace/025-expected.txt:
  • platform/mac/fast/text/whitespace/026-expected.txt:
  • platform/mac/fast/writing-mode/table-percent-width-quirk-expected.txt:
  • platform/mac/fast/writing-mode/vertical-align-table-baseline-expected.txt:
  • platform/mac/http/tests/misc/acid2-expected.txt:
  • platform/mac/http/tests/misc/acid2-pixel-expected.txt:
  • platform/mac/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/background_properties_greater_than_images-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-006-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-007-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-008-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-009-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-011-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-012-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-013-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-014-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-015-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-applies-to-016-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-different-width-001-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-shorthand-001-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-001-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-radius-sum-of-radii-002-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-004-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/border-top-right-radius-values-004-expected.txt:
  • platform/mac/ietestcenter/css3/bordersbackgrounds/none-as-image-layer-expected.txt:
  • platform/mac/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt:
  • platform/mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.txt:
  • platform/mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.txt:
  • platform/mac/tables/layering/paint-test-layering-1-expected.txt:
  • platform/mac/tables/layering/paint-test-layering-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug10009-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug101201-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug101674-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug10296-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1055-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug10565-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug10633-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1067-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1067-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug106795-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug106816-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug113235-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug113424-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1163-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1188-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug12008-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug120107-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug120364-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1224-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug12268-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug12709-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1271-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug12908-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug12908-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug12910-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1296-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1302-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug13169-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1318-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug137388-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug137388-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug137388-3-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug139524-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug139524-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug139524-3-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug139524-4-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1430-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug14323-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1474-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug14929-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug15247-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug154780-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug15544-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug159108-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug15933-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug16012-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug16252-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug17138-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug175455-4-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug17548-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug17587-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1800-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1802-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1802s-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug1809-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug18440-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug18664-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug18955-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug19061-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug19061-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug19356-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug20804-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2123-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug215629-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug219693-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug219693-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug22019-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug220536-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug222336-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug22246-3-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug22246-3a-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug22513-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2296-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug23235-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug24200-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2479-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2479-3-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug25004-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug25074-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug25663-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug26553-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2684-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug269566-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug277062-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2773-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug27993-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2886-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug28933-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug29058-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug29314-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug29429-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2954-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2981-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2981-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug2997-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug30273-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug30559-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug3103-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug32205-3-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug3260-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug32841-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug33137-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug33855-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug3454-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug38916-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug3977-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4093-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug42187-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4385-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4427-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug44505-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4501-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4527-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug45350-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug45486-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4576-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug46268-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug46268-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug46368-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug46623-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug46623-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug47432-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4803-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4849-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug4849-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug51727-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug5188-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug52505-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug52506-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug53690-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug53690-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug53891-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug5538-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug55789-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug56201-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug57828-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug5797-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug5835-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug60804-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug60807-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug6184-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug6304-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug6404-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug647-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug6674-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug68998-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug69382-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug69382-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug72359-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug7342-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug7714-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug78162-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug82946-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug86708-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug8950-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug9123-1-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug9123-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug92143-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug92647-2-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug963-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug96334-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug97383-expected.txt:
  • platform/mac/tables/mozilla/bugs/bug9879-1-expected.txt:
  • platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.txt:
  • platform/mac/tables/mozilla/core/bloomberg-expected.txt:
  • platform/mac/tables/mozilla/core/borders-expected.txt:
  • platform/mac/tables/mozilla/core/cell_heights-expected.txt:
  • platform/mac/tables/mozilla/core/col_span-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_auto_per-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.txt:
  • platform/mac/tables/mozilla/core/col_widths_fix_per-expected.txt:
  • platform/mac/tables/mozilla/core/margins-expected.txt:
  • platform/mac/tables/mozilla/core/misc-expected.txt:
  • platform/mac/tables/mozilla/core/nested1-expected.txt:
  • platform/mac/tables/mozilla/core/one_row-expected.txt:
  • platform/mac/tables/mozilla/core/table_frame-expected.txt:
  • platform/mac/tables/mozilla/core/table_heights-expected.txt:
  • platform/mac/tables/mozilla/core/table_rules-expected.txt:
  • platform/mac/tables/mozilla/core/table_widths-expected.txt:
  • platform/mac/tables/mozilla/dom/insertColGroups1-expected.txt:
  • platform/mac/tables/mozilla/dom/insertColGroups2-expected.txt:
  • platform/mac/tables/mozilla/dom/insertCols1-expected.txt:
  • platform/mac/tables/mozilla/dom/insertCols2-expected.txt:
  • platform/mac/tables/mozilla/dom/insertCols3-expected.txt:
  • platform/mac/tables/mozilla/dom/insertCols4-expected.txt:
  • platform/mac/tables/mozilla/dom/insertCols5-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_position-table-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_simple-table-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
  • platform/mac/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
  • platform/mac/tables/mozilla/marvin/body_thead-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_span-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.txt:
  • platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.txt:
  • platform/mac/tables/mozilla/marvin/table_overflow_hidden_td-expected.txt:
  • platform/mac/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
  • platform/mac/tables/mozilla/marvin/table_row_align_center-expected.txt:
  • platform/mac/tables/mozilla/marvin/table_row_align_left-expected.txt:
  • platform/mac/tables/mozilla/marvin/table_row_align_right-expected.txt:
  • platform/mac/tables/mozilla/marvin/table_rules_groups-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_black-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_green-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_red-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_white-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_td_width-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_th_width-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_width_percent-expected.txt:
  • platform/mac/tables/mozilla/marvin/tables_width_px-expected.txt:
  • platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/td_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/td_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/td_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/th_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/th_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/th_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/th_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/thead_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_black-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_green-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_red-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_white-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/tr_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_align_char-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_span-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_width_px-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_colgroup_align_char-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_colgroup_span-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_align_center-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_align_char-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_align_left-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_align_right-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_td_width-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_align_center-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_align_char-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_align_left-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_align_right-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_rowspan-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_th_width-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tr_align_char-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tr_valign_middle-expected.txt:
  • platform/mac/tables/mozilla/marvin/x_tr_valign_top-expected.txt:
  • platform/mac/tables/mozilla/other/cell_widths-expected.txt:
  • platform/mac/tables/mozilla/other/ms-expected.txt:
  • platform/mac/tables/mozilla/other/nested2-expected.txt:
  • platform/mac/tables/mozilla/other/nestedTables-expected.txt:
  • platform/mac/tables/mozilla/other/slashlogo-expected.txt:
  • platform/mac/tables/mozilla/other/test3-expected.txt:
  • platform/mac/tables/mozilla/other/test6-expected.txt:
  • platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt:
  • platform/mac/tables/mozilla/other/wa_table_tr_align-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1164-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug128876-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1647-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug23847-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug3105-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug72393-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug7243-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug8499-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug85016-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug89315-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/captions1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/captions2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/cols1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/columns-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/core/standards1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.txt:
  • platform/mac/tables/mozilla_expected_failures/other/test4-expected.txt:
8:30 AM Changeset in webkit [195739] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/Source/JavaScriptCore/dfg/DFGPutStackSinkingPhase.cpp

Apply custom patch for rdar://problem/24209116

8:26 AM Changeset in webkit [195738] by matthew_hanson@apple.com
  • 4 edits in branches/safari-601-branch/Source/WebCore

Cherry-pick r195592 and parts of r194672 to fix rdar://24154288

8:18 AM Changeset in webkit [195737] by commit-queue@webkit.org
  • 5 edits in trunk/Tools

[webkitdirs] Don't pass cmakeBasedPortName around.
https://bugs.webkit.org/show_bug.cgi?id=153589

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-28
Reviewed by Darin Adler.

It should be local function of webkitdirs.pm instead.

  • Scripts/build-jsc: Don't pass cmakeBasedPortName to

buildCMakeProjectOrExit().

  • Scripts/build-webkit: Don't pass cmakeBasedPortName to

buildCMakeProjectOrExit() and generateBuildSystemFromCMakeProject().

  • Scripts/run-efl-tests: Don't pass cmakeBasedPortName to

generateBuildSystemFromCMakeProject().

  • Scripts/webkitdirs.pm: Don't export cmakeBasedPortName.

(generateBuildSystemFromCMakeProject): Removed $port argument as we
can get it from cmakeBasedPortName().
(buildCMakeProjectOrExit): Ditto.

7:16 AM Changeset in webkit [195736] by yoon@igalia.com
  • 5 edits in trunk

[GStreamer] Clean up includes and headers related with GStreamerGL
https://bugs.webkit.org/show_bug.cgi?id=153590

Reviewed by Philippe Normand.

Source/WebCore:

Remove gstglmemory from the including list and reorder includes to
organize GSTREAMER_GL related headers. It violates style rules of the
include order, but there is no clean way to include gst/gl/gl.h
without violating it.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.h:

Tools:

  • Scripts/webkitpy/style/checker.py: Skips

include_order check for MediaPlayerPrivateGStreamerBase.cpp
Removes VideoSinkGStreamer1.cpp which doesn't exist anymore.

1:06 AM Changeset in webkit [195735] by yoon@igalia.com
  • 4 edits in trunk/Source/WebCore

[GStreamer] MediaPlayerPrivateGStreamerBase::handleSyncMessage leaks GstContext
https://bugs.webkit.org/show_bug.cgi?id=153580

Reviewed by Philippe Normand.

When we creates GstContext using gst_context_new it increases refcount itself.
And the refcount of GstContext is increased when it is passed to
gst_element_set_context, also. Therefore We should unref GstContext after
using it to prevent GstContext leaks.

  • platform/graphics/gstreamer/GRefPtrGStreamer.cpp:

(WTF::adoptGRef): Added for GstContext.
(WTF::refGPtr<GstContext>): Ditto
(WTF::derefGPtr<GstContext>): Ditto

  • platform/graphics/gstreamer/GRefPtrGStreamer.h:
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:

(WebCore::MediaPlayerPrivateGStreamerBase::handleSyncMessage):
Use GRefPtr<GstContext> to handle currect refcounting

12:52 AM Changeset in webkit [195734] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

[JSC] B3 Tail Call with Varargs do not restore callee saved registers
https://bugs.webkit.org/show_bug.cgi?id=153579

Patch by Benjamin Poulain <bpoulain@apple.com> on 2016-01-28
Reviewed by Michael Saboff.

We were trashing the callee saved registers in Tail Calls.

I just copied the code from DFG to fix this :)

  • ftl/FTLLowerDFGToLLVM.cpp:

(JSC::FTL::DFG::LowerDFGToLLVM::compileCallOrConstructVarargs):

Jan 27, 2016:

10:46 PM Changeset in webkit [195733] by achristensen@apple.com
  • 4 edits in trunk/Source

Source/WebCore:
Fix clean CMake build after r195711.

  • PlatformWin.cmake:

Copy forwarding headers from the new directory to find ContentSecurityPolicy.h.
This should fix EWS issues like the one seen in bug 153573.

Source/WebKit2:
Fix CMake build after r195722.

  • PlatformMac.cmake:

Include new file.

10:45 PM Changeset in webkit [195732] by mitz@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix other builds.

  • Configurations/WebKit.xcconfig:
10:23 PM Changeset in webkit [195731] by Chris Dumez
  • 12 edits in trunk

Expose ValidityState on the global Window object
https://bugs.webkit.org/show_bug.cgi?id=153582

Reviewed by Antti Koivisto.

LayoutTests/imported/w3c:

Rebaseline W3C html test now that more checks are passing.

  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Expose ValidityState on the global Window object:
https://html.spec.whatwg.org/#validitystate

Firefox and Chrome match the specification.

No new tests, already covered by existing tests.

  • html/ValidityState.idl:

LayoutTests:

Rebaseline test now that ValidityState is exposed on the global Window
object.

  • js/dom/global-constructors-attributes-expected.txt:
  • platform/efl/js/dom/global-constructors-attributes-expected.txt:
  • platform/gtk/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac/js/dom/global-constructors-attributes-expected.txt:
  • platform/win/js/dom/global-constructors-attributes-expected.txt:
10:00 PM Changeset in webkit [195730] by Nikita Vasilyev
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Don't show hand cursor for edited attribute
https://bugs.webkit.org/show_bug.cgi?id=152211
<rdar://problem/23870523>

Reviewed by Joseph Pecoraro.

  • UserInterface/Views/Editing.css:

(.editing, .editing *):

9:33 PM Changeset in webkit [195729] by Chris Dumez
  • 13 edits in trunk

Expose ApplicationCache on the global Window object
https://bugs.webkit.org/show_bug.cgi?id=153578

Reviewed by Antti Koivisto.

LayoutTests/imported/w3c:

Rebaseline W3C HTML test now that more checks are passing.

  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Expose ApplicationCache on the global Window object as per:
https://html.spec.whatwg.org/#the-storage-interface

Chrome follows the spec.

No new tests, already covered by existing test.

  • loader/appcache/DOMApplicationCache.idl:

LayoutTests:

Rebaseline test now that ApplicationCache is exposed on the global
Window object.

  • js/dom/global-constructors-attributes-expected.txt:
  • platform/efl/js/dom/global-constructors-attributes-expected.txt:
  • platform/gtk/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac/js/dom/global-constructors-attributes-expected.txt:
  • platform/win/js/dom/global-constructors-attributes-expected.txt:
9:21 PM Changeset in webkit [195728] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

B3 IntRange analysis should know more about shifting
https://bugs.webkit.org/show_bug.cgi?id=153568

Reviewed by Benjamin Poulain.

This teaches the IntRange analysis that the result of a right shift is usually better than
the worst-case mask based on the shift amount. In fact, you can reach useful conclusions
from looking at the IntRange of the input. This helps because Octane/crypto does something
like:

CheckMul((@x & $268435455) >> 14, @y >> 14, ...)

If you consider just the shifts, then this may overflow. But if you consider that @x is
first masked, then the IntRange coming out of the first shift is tight enough to prove that
the CheckMul cannot overflow.

  • b3/B3ReduceStrength.cpp:
  • b3/testb3.cpp:
8:42 PM Changeset in webkit [195727] by rniwa@webkit.org
  • 3 edits
    2 adds in trunk

REGRESSION(r190430): Assertion failure in Text::~Text()
https://bugs.webkit.org/show_bug.cgi?id=153577

Reviewed by Antti Koivisto.

Source/WebCore:

The bug was caused by destroyRenderTreeIfNeeded exiting early on all HTMLSlotElement as it lacks a render object.
Fixed it by explicitly avoiding the early return when child is a HTMLSlotElement.

Test: fast/shadow-dom/slot-removal-crash-2.html

  • dom/ContainerNode.cpp:

(WebCore::destroyRenderTreeIfNeeded):

LayoutTests:

Added a regression test. The test hits an assertion in debug build without the fix.

  • fast/shadow-dom/slot-removal-crash-2-expected.txt: Added.
  • fast/shadow-dom/slot-removal-crash-2.html: Added.
7:33 PM Changeset in webkit [195726] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix build.

  • Configurations/WebKit.xcconfig:
6:28 PM Changeset in webkit [195725] by k.czech@samsung.com
  • 4 edits in trunk

[EFL] Remove unused accessibility related code
https://bugs.webkit.org/show_bug.cgi?id=153543

Reviewed by Darin Adler.

Source/WebKit2:

Do not need to load external library to expose WebKit's
accessibility tree. There have been changes in EFL/Elementary
in terms of support of accessibility and we should follow those.

  • WebProcess/efl/WebProcessMainEfl.cpp:

(eailLibraryPath): Deleted.
(eail): Deleted.

Tools:

Removed reference to EAIL library.
It not going to be support anymore. There have been changes in
EFL/Elementary in terms of the accessibility and we should
follow those.

  • efl/jhbuild-optional.modules:
6:21 PM Changeset in webkit [195724] by commit-queue@webkit.org
  • 3 edits
    4 adds in trunk

Garbage is displayed when root svg element has mix-blend-mode set
https://bugs.webkit.org/show_bug.cgi?id=150556

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2016-01-27
Reviewed by Darin Adler.

Source/WebCore:

This bug happens when compositing on a CALayer and drawing on a transparent
layer, so it happens with WK2 with <svg style="mix-blend-mode...">. And it
can happen with WK1 also with <svg style="opacity=...;mix-blend-mode...">.
But in both cases, the SVG root renderer should be the root of the render
tree. So it happens only with the stand alone SVG documents.

SVGRenderContext::prepareToRenderSVGContent() ignores the opacity of
the SVG root but it creates a transparent layer for the blend-mode.

But RenderLayer::beginTransparencyLayers() creates a transparent layer
for opacity and it sets the blend-mode also.

The fix is to begin two transparent layers for the SVG root renderer: one
for the opacity and the second for the blend-mode. The opacity transparent
layer will be still managed by RenderLayer::beginTransparencyLayers(). While
the blend-mode transparent layer will be managed by SVGRenderContext
::prepareToRenderSVGContent().

Tests: svg/css/mix-blend-mode-background-root.svg

svg/css/mix-blend-mode-opacity-root.svg

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::beginTransparencyLayers):

LayoutTests:

Ensure blending the SVG root renderer will be displayed correctly with
compositing when the SVG root renderer is the root of the render tree.

  • svg/css/mix-blend-mode-background-root-expected.svg: Added.
  • svg/css/mix-blend-mode-background-root.svg: Added.
  • svg/css/mix-blend-mode-opacity-root-expected.svg: Added.
  • svg/css/mix-blend-mode-opacity-root.svg: Added.
6:14 PM Changeset in webkit [195723] by sbarati@apple.com
  • 3 edits in trunk/Source/WebInspectorUI

CodeMirror will strip out "\r" from files with "\r\n" as newlines causing our offsets into the file to be incorrect
https://bugs.webkit.org/show_bug.cgi?id=153529
<rdar://problem/24376799>

Reviewed by Timothy Hatcher.

This problem manifested in the type token annotator inserting
tokens in the wrong places. Because our offsets are computed
based on the resource we get from backend, CodeMirror changing
the source text will cause all of our offsets to be incorrect.

  • UserInterface/Views/CodeMirrorEditor.js:

(WebInspector.CodeMirrorEditor.create):
(WebInspector.CodeMirrorEditor):

  • UserInterface/Views/TextEditor.js:

(WebInspector.TextEditor.set string.update):
(WebInspector.TextEditor.prototype.set string):

5:36 PM Changeset in webkit [195722] by enrica@apple.com
  • 20 edits
    2 adds in trunk/Source

Cache results of data detection in the UI process when load completes.
https://bugs.webkit.org/show_bug.cgi?id=153560

Reviewed by Tim Horton.

Source/WebCore:

Adding new FrameLoaderClient method to notify that data
detection is complete and provide the results.

  • loader/EmptyClients.h:
  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::checkLoadCompleteForThisFrame):

  • loader/FrameLoaderClient.h:

Source/WebKit/mac:

Adding empty implementation for WK1.

  • WebCoreSupport/WebFrameLoaderClient.h:
  • WebCoreSupport/WebFrameLoaderClient.mm:

(WebFrameLoaderClient::dispatchDidFinishDataDetection):

Source/WebKit2:

This patch changes when the results of data detections are sent to the
UIProcess. Before this change, they were only provided as part of
InteractionInformationAtPosition, which is populated when long press
gesture is triggered.
We need to have the results available if the client wants to allow navigation
to a data detector link, in order to allow them to retrieve the full url.
With this change, we now send the results as soon as they are computed
and keep them in the WebPageProxy object so that they can be fetched when
necessary from a WKWebView private interface.

  • Shared/Cocoa/DataDetectionResult.h: Added.
  • Shared/Cocoa/DataDetectionResult.mm: Added.

(WebKit::DataDetectionResult::encode):
(WebKit::DataDetectionResult::decode):

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _snapshotLayerContentsForBackForwardListItem:]):
(-[WKWebView _dataDetectionResults]):
(-[WKWebView _didRelaunchProcess]):

  • UIProcess/API/Cocoa/WKWebViewPrivate.h:
  • UIProcess/Cocoa/WebPageProxyCocoa.mm:

(WebKit::WebPageProxy::setDataDetectionResult):
(WebKit::WebPageProxy::saveRecentSearches):

  • UIProcess/WebPageProxy.h:

(WebKit::WebPageProxy::websiteDataStore):
(WebKit::WebPageProxy::dataDetectionResults):
(WebKit::WebPageProxy::scrollingCoordinatorProxy):

  • UIProcess/WebPageProxy.messages.in:
  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView ensurePositionInformationIsUpToDate:]):
(-[WKContentView _dataDetectionResults]):
(-[WKContentView gestureRecognizerShouldBegin:]):

  • WebKit2.xcodeproj/project.pbxproj:
  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::dispatchDidReceiveContentLength):
(WebKit::WebFrameLoaderClient::dispatchDidFinishDataDetection):
(WebKit::WebFrameLoaderClient::dispatchDidFinishLoading):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.h:
  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::updatePreferences):
(WebKit::WebPage::setDataDetectionResults):
(WebKit::WebPage::willCommitLayerTree):

  • WebProcess/WebPage/WebPage.h:

(WebKit::WebPage::shouldExtendIncrementalRenderingSuppression):

5:34 PM Changeset in webkit [195721] by matthew_hanson@apple.com
  • 2 edits in branches/safari-601-branch/Source/WebCore

Merge r195609. rdar://problem/24337868

5:34 PM Changeset in webkit [195720] by matthew_hanson@apple.com
  • 2 edits in branches/safari-601-branch/Source/WebCore

Merge r195606. rdar://problem/24242476

5:34 PM Changeset in webkit [195719] by matthew_hanson@apple.com
  • 2 edits in branches/safari-601-branch/LayoutTests

Merge r195492. rdar://problem/24002217

5:34 PM Changeset in webkit [195718] by matthew_hanson@apple.com
  • 6 edits
    8 adds in branches/safari-601-branch

Merge r195477. rdar://problem/24002217

5:34 PM Changeset in webkit [195717] by matthew_hanson@apple.com
  • 4 edits
    4 adds in branches/safari-601-branch

Merge r195162. rdar://problem/24302736

5:34 PM Changeset in webkit [195716] by matthew_hanson@apple.com
  • 6 edits in branches/safari-601-branch/Source/WebCore

Merge r195132. rdar://problem/24154292

5:34 PM Changeset in webkit [195715] by matthew_hanson@apple.com
  • 5 edits
    15 adds in branches/safari-601-branch

Merge r195075. rdar://problem/24302727

5:34 PM Changeset in webkit [195714] by matthew_hanson@apple.com
  • 10 edits in branches/safari-601-branch/Source

Merge r194559. rdar://problem/24269083

5:34 PM Changeset in webkit [195713] by matthew_hanson@apple.com
  • 2 edits
    1 add in branches/safari-601-branch/Source/JavaScriptCore

Merge r193782. rdar://problem/24358367

5:14 PM Changeset in webkit [195712] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Include the right WebKitAdditions files
https://bugs.webkit.org/show_bug.cgi?id=153572

Reviewed by Tim Horton.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::WebPageProxy):
(WebKit::WebPageProxy::reattachToWebProcess):

5:08 PM Changeset in webkit [195711] by dbates@webkit.org
  • 7 edits
    2 moves
    1 add in trunk/Source

Move ContentSecurityPolicy.{cpp, h} to its own directory
https://bugs.webkit.org/show_bug.cgi?id=153527
<rdar://problem/24359892>

Reviewed by Sam Weinig.

Source/WebCore:

Move ContentSecurityPolicy.{cpp, h} from Source/WebCore/page to Source/WebCore/page/csp.
This will facilitate separating out the policy support classes (e.g. CSPDirectiveList)
into their own files to improve the hackability of this code.

  • CMakeLists.txt:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:
  • page/csp/ContentSecurityPolicy.cpp: Renamed from Source/WebCore/page/ContentSecurityPolicy.cpp.
  • page/csp/ContentSecurityPolicy.h: Renamed from Source/WebCore/page/ContentSecurityPolicy.h.

Source/WebKit2:

Add ${WEBCORE_DIR}/page/csp to the list of WebKit2 include directories.

  • CMakeLists.txt:
4:38 PM Changeset in webkit [195710] by bshafiei@apple.com
  • 6 edits
    15 copies in branches/safari-601.1.46-branch

Merged r195625. rdar://problem/24337780

4:37 PM Changeset in webkit [195709] by beidson@apple.com
  • 4 edits in trunk

Modern IDB: Incorrect handling of iterating cursors to their end.
https://bugs.webkit.org/show_bug.cgi?id=153569

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (3 tests now pass, others are closer to passing).

  • Modules/indexeddb/server/SQLiteIDBCursor.cpp:

(WebCore::IDBServer::SQLiteIDBCursor::advance):
(WebCore::IDBServer::SQLiteIDBCursor::internalAdvanceOnce):

LayoutTests:

  • platform/mac-wk1/TestExpectations:
4:32 PM Changeset in webkit [195708] by Ryan Haddad
  • 1 edit
    3 adds in trunk/LayoutTests

Layout Test fast/forms/auto-fill-button/input-contacts-auto-fill-button.html is failing.
https://bugs.webkit.org/show_bug.cgi?id=153567.

Unreviewed test gardening.

Update expected test results for ios-simulator, win, and gtk.

Patch by Zhuo Li <zachli@apple.com> on 2016-01-27

  • platform/gtk/fast/forms/auto-fill-button/input-contacts-auto-fill-button-expected.txt: Added.
  • platform/ios-simulator/fast/forms/auto-fill-button/input-contacts-auto-fill-button-expected.txt: Added.
  • platform/win/fast/forms/auto-fill-button/input-contacts-auto-fill-button-expected.txt: Added.
4:29 PM Changeset in webkit [195707] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

[JSC] adjustFrameAndStackInOSRExitCompilerThunk() can trash values in FTL
https://bugs.webkit.org/show_bug.cgi?id=153536

Patch by Benjamin Poulain <bpoulain@apple.com> on 2016-01-27
Reviewed by Saam Barati.

Workaround to get B3 working on ARM.

  • dfg/DFGOSRExitCompilerCommon.h:

(JSC::DFG::adjustFrameAndStackInOSRExitCompilerThunk):
The code was using the scratch registers in a few places.

I initially tried to make is not use scratch registers anywhere
but that looked super fragile.

Instead, I just preserve the scratch registers. That's easy and
it should be relatively cheap compared to everything done on OSR Exits.

4:18 PM Changeset in webkit [195706] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebInspectorUI

Web Inspector: Regression (r195303) - Changes to TreeOutline break styling of lists in Visual sidebar
https://bugs.webkit.org/show_bug.cgi?id=153563

Patch by Devin Rousso <Devin Rousso> on 2016-01-27
Reviewed by Timothy Hatcher.

Removed duplicate properties and used new methods of TreeOutline to achieve
the desired styling effects.

  • UserInterface/Views/VisualStyleCommaSeparatedKeywordEditor.css:

(.visual-style-property-container.comma-separated-keyword-editor > .visual-style-property-value-container > .visual-style-comma-separated-keyword-list > .visual-style-comma-separated-keyword-item.visual-style-font-family-list-item > .visual-style-comma-separated-keyword-item-editor):
(.visual-style-property-container.comma-separated-keyword-editor > .visual-style-property-value-container > .visual-style-comma-separated-keyword-list > .visual-style-comma-separated-keyword-item > .titles): Deleted.

  • UserInterface/Views/VisualStyleSelectorSection.js:

(WebInspector.VisualStyleSelectorSection):

  • UserInterface/Views/VisualStyleSelectorTreeItem.css:

(.item.visual-style-selector-item > .icon):
(.item.visual-style-selector-item > .titles):
(.item.visual-style-selector-item > .titles > .subtitle):
(.item.visual-style-selector-item.selected > .titles > .subtitle):
(.item.visual-style-selector-item > .titles > .subtitle::before): Deleted.

4:17 PM Changeset in webkit [195705] by n_wang@apple.com
  • 4 edits in trunk/Source/WebCore

AX: Crash in AccessibilityTableColumn::headerObject
https://bugs.webkit.org/show_bug.cgi?id=153553
<rdar://problem/23196278>

Reviewed by Chris Fleizach.

Webkit was crashing sometimes when we asked for column headers of a table.
The columns vector of the table was reset during the iteration when we
were asking for the headerObject of each column. The column's addChildren()
function calls elementRect() for each child cell and that sometimes causes
the parent table to reset its children.
Fixed it by caching the columns vector and moving out the elementRect() logic
from AccessibilityTalbeColumn::addChildren().

  • accessibility/AccessibilityTable.cpp:

(WebCore::AccessibilityTable::columnHeaders):
(WebCore::AccessibilityTable::rowHeaders):

  • accessibility/AccessibilityTableColumn.cpp:

(WebCore::AccessibilityTableColumn::elementRect):
(WebCore::AccessibilityTableColumn::headerObject):
(WebCore::AccessibilityTableColumn::addChildren):

  • accessibility/AccessibilityTableColumn.h:
4:16 PM Changeset in webkit [195704] by dbates@webkit.org
  • 3 edits
    8 deletes in trunk

Remove WebKitSystemInterface for iOS SDK < 9
https://bugs.webkit.org/show_bug.cgi?id=153570

Reviewed by Andy Estes.

Tools:

  • Scripts/copy-webkitlibraries-to-product-directory:

WebKitLibraries:

We no longer support building for iOS < 9.

  • libWebKitSystemInterfaceIOSDevice8.1.a: Removed.
  • libWebKitSystemInterfaceIOSDevice8.2.a: Removed.
  • libWebKitSystemInterfaceIOSDevice8.3.a: Removed.
  • libWebKitSystemInterfaceIOSDevice8.4.a: Removed.
  • libWebKitSystemInterfaceIOSSimulator8.1.a: Removed.
  • libWebKitSystemInterfaceIOSSimulator8.2.a: Removed.
  • libWebKitSystemInterfaceIOSSimulator8.3.a: Removed.
  • libWebKitSystemInterfaceIOSSimulator8.4.a: Removed.
4:02 PM Changeset in webkit [195703] by bshafiei@apple.com
  • 3 edits
    2 copies in branches/safari-601.1.46-branch

Merged r195671. rdar://problem/24302956

3:55 PM Changeset in webkit [195702] by bshafiei@apple.com
  • 5 edits in branches/safari-601.1.46-branch/Source/WebKit2

Merged r195651. rdar://problem/24302943

3:45 PM Changeset in webkit [195701] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

[mips] Use reinterpret_cast_ptr to suppress alignment warnings.
https://bugs.webkit.org/show_bug.cgi?id=153424

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-27
Reviewed by Darin Adler.

  • runtime/JSGenericTypedArrayView.h:

(JSC::JSGenericTypedArrayView::sortFloat):

3:42 PM Changeset in webkit [195700] by Chris Dumez
  • 25 edits in trunk

Settings a reflected DOMString attribute to null should set it to the "null" string rather than the empty string
https://bugs.webkit.org/show_bug.cgi?id=153504
<rdar://problem/24353072>

Reviewed by Ryosuke Niwa.

Source/WebCore:

Settings a reflected DOMString attribute to null should set it to the "null"
string rather than the empty string:

Firefox and Chrome match the specification here.

This is causing a lot of W3C HTML reflection tests to fail on WebKit, e.g.:

No new tests, already covered by existing tests.

  • bindings/scripts/CodeGeneratorJS.pm:

(JSValueToNative):
Call toString() instead of valueToStringWithNullCheck() for reflected
attributes. This way, null gets converted to the string "null", as
expected, instead of a null String object.

  • html/HTMLInputElement.idl:

Dropping [TreatNullAs=NullString] IDL extended attribute for
input.defaultValue, as this is not present in the specification:

Without this change, assigning null to input.defaultValue would not
set to to the "null" string, as is expected.

  • html/HTMLTextAreaElement.idl:

Dropping [TreatNullAs=NullString] IDL extended attribute for
textArea.defaultValue, as this is not present in the specification:

Without this change, assigning null to textArea.defaultValue would not
set to to the "null" string, as is expected.

  • html/HTMLTitleElement.idl:

Dropping [TreatNullAs=NullString] IDL extended attribute for
title.text, as this is not present in the specification:

Without this change, assigning null to title.text would not
set to to the "null" string, as is expected.

LayoutTests:

Update existing tests as a lot of them were expecting that setting
a reflected DOMString attribute to null would set it to the empty
string instead of the string "null".

  • fast/dom/domstring-attribute-reflection-expected.txt:
  • fast/dom/domstring-attribute-reflection.html:
  • fast/dom/element-attribute-js-null-expected.txt:
  • fast/dom/element-attribute-js-null.html:
  • fast/dom/ping-attribute-dom-binding-expected.txt:
  • fast/dom/ping-attribute-dom-binding.html:
  • fast/forms/fieldset/fieldset-name-expected.txt:
  • fast/forms/fieldset/fieldset-name.html:
  • fast/forms/input-minmax-expected.txt:
  • fast/forms/input-minmax.html:
  • fast/forms/input-pattern-expected.txt:
  • fast/forms/input-pattern.html:
  • fast/forms/submit-form-attributes-expected.txt:
  • fast/forms/submit-form-attributes.html:
  • fast/shadow-dom/HTMLSlotElement-interface.html:
  • fast/shadow-dom/NonDocumentTypeChildNode-interface-assignedSlot.html:
  • fast/shadow-dom/shadow-layout-after-slot-changes.html:
  • svg/dom/svg-element-attribute-js-null-expected.txt:
  • svg/dom/svg-element-attribute-js-null.xhtml:
3:31 PM Changeset in webkit [195699] by Simon Fraser
  • 13 edits
    3 adds in trunk

Support CSS3 Images values for the image-rendering property
https://bugs.webkit.org/show_bug.cgi?id=153556

Reviewed by Dean Jackson.

Source/WebCore:

CSS3 Images has the following values for image-rendering:

auto, crisp-edges, pixelated

The old code supported:

optimizeSpeed, optimizeQuality, -webkit-crisp-edges, -webkit-optimize-contrast

Add support for the new values without prefixes. Map -webkit-crisp-edges to crisp-edges,
and -webkit-optimize-contrast to crisp-edges. Support pixelated which behaves like
crisp-edges (a low quality scale).

The spec says that optimizeQuality should behave like 'auto', but that would be
a behavior change since ImageQualityController::shouldPaintAtLowQuality() currently
uses it as a trigger to avoid low quality scaling, so don't change that for now.

No new tests, covered by fast/css/script-tests/image-rendering-parsing.js

  • css/CSSParser.cpp:

(WebCore::isValidKeywordPropertyAndValue):

  • css/CSSPrimitiveValueMappings.h:

(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
(WebCore::CSSPrimitiveValue::operator EImageRendering):

  • css/CSSValueKeywords.in:
  • rendering/ImageQualityController.cpp:

(WebCore::ImageQualityController::shouldPaintAtLowQuality):

  • rendering/RenderHTMLCanvas.cpp:

(WebCore::RenderHTMLCanvas::paintReplaced):

  • rendering/style/RenderStyleConstants.h:
  • rendering/style/StyleRareInheritedData.h: Need another bit.

Source/WebInspectorUI:

Add "crisp-edges", "pixelated" to the suggestions for image-rendering.

  • UserInterface/Models/CSSKeywordCompletions.js:

LayoutTests:

Update for new values. Add a new SVG shape-rendering test which would have
detected a bug I caused with an earlier patch.

  • fast/css/image-rendering-parsing-expected.txt:
  • fast/css/script-tests/image-rendering-parsing.js:
  • svg/css/script-tests/shape-rendering-parsing.js: Added.
  • svg/css/shape-rendering-parsing.html: Added.
3:12 PM Changeset in webkit [195698] by andersca@apple.com
  • 21 edits
    3 adds in trunk/Source

Add WebKitAdditions extension points to WebCore, WebKit and WebKitLegacy
https://bugs.webkit.org/show_bug.cgi?id=153550

Reviewed by Sam Weinig.

Source/WebCore:

  • DerivedSources.make:

Add the ability for WebKitAdditions to add events and event targets.

  • WebCore.xcodeproj/project.pbxproj:

Add new files.

  • bindings/scripts/InFilesCompiler.pm:

(initializeFromCommandLine):
(compile):
Handle multiple --input parameters.

  • dom/EventNames.h:

Handle adding more event names.

  • loader/EmptyClients.cpp:

(WebCore::fillWithEmptyClients):

  • page/MainFrame.cpp:

(WebCore::MainFrame::MainFrame):

  • page/MainFrame.h:
  • page/PageConfiguration.h:

Add extension points.

  • platform/cocoa/WebKitAdditions.mm: Added.

Import additions.

Source/WebKit:

  • WebKit.xcodeproj/project.pbxproj:

Add new files.

Source/WebKit/mac:

  • Configurations/WebKitLegacy.xcconfig:

Add WKA header search paths.

  • WebKitAdditions.mm: Added.

Add addition files.

  • WebView/WebView.mm:

(-[WebView _commonInitializationWithFrameName:groupName:]):
(-[WebView initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:]):
Add extension points.

Source/WebKit2:

  • DerivedSources.make:

Add the ability for WebKitAdditions to add new message receivers.

  • Shared/Cocoa/WebKitAdditions.mm: Added.

Add addition files.

  • Shared/WebCoreArgumentCoders.h:

Add extension points.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::WebPageProxy):
(WebKit::WebPageProxy::reattachToWebProcess):
(WebKit::WebPageProxy::resetState):
Add extension points.

  • UIProcess/WebPageProxy.h:

Add extension points.

  • WebKit2.xcodeproj/project.pbxproj:

Add new files.

  • WebProcess/WebPage/WebPage.cpp:

Add extension points.

3:03 PM Changeset in webkit [195697] by beidson@apple.com
  • 6 edits in trunk

Modern IDB: Fix many Index tests.
https://bugs.webkit.org/show_bug.cgi?id=153561

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (Many failing tests now pass).

  • Modules/indexeddb/server/MemoryIndex.cpp:

(WebCore::IDBServer::MemoryIndex::getResultForKeyRange):

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedPutIndexKey):
(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedPutIndexRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::getIndexRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::iterateCursor):

  • Modules/indexeddb/server/SQLiteIDBCursor.h:

(WebCore::IDBServer::SQLiteIDBCursor::didComplete):

LayoutTests:

  • platform/mac-wk1/TestExpectations:
2:57 PM Changeset in webkit [195696] by beidson@apple.com
  • 6 edits in trunk

Modern IDB: Cursors are utterly broken in the SQLite backend.
https://bugs.webkit.org/show_bug.cgi?id=153558

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (35 failures now pass, others improve).

  • Fixes incorrect usage of Index cursors when ObjectStore cursors are intended.
  • Improves the state of getting the cursor value vs. reaching the end of a cursor.
  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::openCursor):
(WebCore::IDBServer::SQLiteIDBBackingStore::iterateCursor):

  • Modules/indexeddb/server/SQLiteIDBCursor.cpp:

(WebCore::IDBServer::SQLiteIDBCursor::SQLiteIDBCursor):
(WebCore::IDBServer::SQLiteIDBCursor::currentData):

  • Modules/indexeddb/server/SQLiteIDBCursor.h:

LayoutTests:

  • platform/mac-wk1/TestExpectations:
2:40 PM Changeset in webkit [195695] by Chris Dumez
  • 27 edits
    1 move
    1 add
    1 delete in trunk

Getting / Setting property on prototype object must throw TypeError
https://bugs.webkit.org/show_bug.cgi?id=153547
<rdar://problem/24370650>

Reviewed by Ryosuke Niwa.

LayoutTests/imported/w3c:

Rebaseline several W3C tests now that more checks are passing.

  • web-platform-tests/XMLHttpRequest/interfaces-expected.txt:
  • web-platform-tests/dom/interfaces-expected.txt:
  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Gettingi / Setting property on prototype object must throw TypeError as per
Web IDL specification:
http://heycam.github.io/webidl/#dfn-attribute-getter (Step 2.4.2)
http://heycam.github.io/webidl/#dfn-attribute-setter (Step 3.5)

Firefox and Chrome already throw a TypeError in this case, as per
the specification. However, WebKit was returning null and merely
logging a deprecation error message. This patch aligns our behavior
with other browsers and the specification.

This patch also adds support for the [LenientThis] IDL extended
attribute:
http://heycam.github.io/webidl/#LenientThis

For [LenientThis] attributes, we do not throw a TypeError if the
attribute getter / setter is called on an object which does not
implement the expected interface, as per:
http://heycam.github.io/webidl/#dfn-attribute-getter (Step 2.4.1)
http://heycam.github.io/webidl/#dfn-attribute-setter (Step 3.5)

No new tests, already covered by existing tests.

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateImplementation):

  • bindings/scripts/IDLAttributes.txt:

Add support for [LenientThis]:
http://heycam.github.io/webidl/#LenientThis

  • bindings/scripts/test/GObject/WebKitDOMTestObj.cpp:
  • bindings/scripts/test/GObject/WebKitDOMTestObj.h:
  • bindings/scripts/test/JS/JSTestEventConstructor.cpp:
  • bindings/scripts/test/JS/JSTestInterface.cpp:
  • bindings/scripts/test/JS/JSTestNode.cpp:
  • bindings/scripts/test/JS/JSTestNondeterministic.cpp:
  • bindings/scripts/test/JS/JSTestObj.cpp:
  • bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp:
  • bindings/scripts/test/JS/JSTestTypedefs.cpp:
  • bindings/scripts/test/JS/JSattribute.cpp:
  • bindings/scripts/test/ObjC/DOMTestObj.h:
  • bindings/scripts/test/ObjC/DOMTestObj.mm:

Rebaseline bindings tests.

  • bindings/scripts/test/TestObj.idl:

Add coverage for [LenientThis] attributes.

  • dom/Document.idl:

Mark 'onreadystatechange' as [LenientThis] as per the HTML
specification:
https://html.spec.whatwg.org/#document

  • dom/GlobalEventHandlers.idl:

Mark 'onmouseeneter' / 'onmouseleave' as [LenientThis] as per the
HTML specification:
https://html.spec.whatwg.org/#globaleventhandlers

LayoutTests:

Update a few layout tests that were expecting getting a property on
the prototype object to return undefined instead of throwing.

  • js/dom/dom-as-prototype-assignment-exception-expected.txt:
  • js/dom/dom-attributes-on-mismatch-type-expected.txt:
  • js/dom/dom-attributes-on-mismatch-type.html:
  • js/dom/script-tests/dom-as-prototype-assignment-exception.js:
2:37 PM Changeset in webkit [195694] by Chris Dumez
  • 15 edits in trunk

window.atob() should ignore spaces in input
https://bugs.webkit.org/show_bug.cgi?id=153522
<rdar://problem/24357822>

Reviewed by Benjamin Poulain.

Source/WebCore:

window.atob() should ignore spaces in input as per:

Previously, WebKit would throw an exception and it was the only browser
to do so. Firefox and Chrome behavior according to the specification.

This was causing us to fail 10 checks in the following W3C HTML test:
http://w3c-test.org/html/webappapis/atob/base64.html

No new tests, updated existing test.

  • page/DOMWindow.cpp:

(WebCore::DOMWindow::atob):

  • page/Page.cpp:

(WebCore::Page::userStyleSheetLocationChanged):

  • platform/network/DataURL.cpp:

(WebCore::handleDataURL):

  • platform/network/DataURLDecoder.cpp:

(WebCore::DataURLDecoder::decodeBase64):

Source/WebKit/mac:

  • WebCoreSupport/WebInspectorClient.mm:

(WebInspectorFrontendClient::save):

Source/WebKit2:

  • UIProcess/mac/WebInspectorProxyMac.mm:

(WebKit::WebInspectorProxy::platformSave):

Source/WTF:

Turn Base64DecodePolicy enum into flags so that the caller can indicate
to both validate padding AND ignore spaces.

Also make sure that the output Vector size is properly shrunk when
spaces are ignored.

  • wtf/text/Base64.cpp:

(WTF::base64DecodeInternal):
(WTF::base64Decode):
(WTF::base64URLDecode):

  • wtf/text/Base64.h:

LayoutTests:

Update window.atob() test to cover cases with spaces in
input.

  • fast/dom/Window/atob-btoa-expected.txt:
  • fast/dom/Window/atob-btoa.html:
2:31 PM Changeset in webkit [195693] by adachan@apple.com
  • 4 edits in trunk/Source/WebCore

Move some logic related to the presentation mode button from mediaControlsiOS.js to mediaControlsApple.js
https://bugs.webkit.org/show_bug.cgi?id=153476

Reviewed by Eric Carlson.

Also, add the necessary styles to support that control in mediaControlsApple.css.

  • Modules/mediacontrols/mediaControlsApple.css:

(video::-webkit-media-controls-panel.picture-in-picture):
(audio::-webkit-media-controls-wireless-playback-status.picture-in-picture):
(audio::-webkit-media-controls-wireless-playback-text-top.picture-in-picture):
(audio::-webkit-media-controls-wireless-playback-text-bottom.picture-in-picture):
(video::-webkit-media-controls-panel .picture-in-picture-button):
Use the same mask image as iOS, but with a different size and a background color specified
(since there's another rule that makes buttons within the panel have a transparent
background color).
(video::-webkit-media-controls-panel .picture-in-picture-button.return-from-picture-in-picture):

  • Modules/mediacontrols/mediaControlsApple.js:

(Controller.prototype.addVideoListeners):
(Controller.prototype.removeVideoListeners):
Listen for (and stop listening for) the webkitpresentationmodechanged event if presentation
mode is supported for this video element.
(Controller.prototype.createControls):
Add a class name to the pictureInPictureButton so we can query for it in the stylesheet.
(Controller.prototype.configureInlineControls):
Call updatePictureInPictureButton().
(Controller.prototype.presentationMode):
Moved from mediaControlsiOS.js.
(Controller.prototype.isFullScreen):
Ditto, with a bug fix to not call presentationMode(), since that method calls isFullScreen(),
resulting in infinite recursion.
(Controller.prototype.updatePictureInPictureButton):
Ditto.
(Controller.prototype.handlePresentationModeChange):
Ditto.
(Controller.prototype.handleFullscreenChange):
Call handlePresentationModeChanged() if presentation mode is supported for this video element.
(Controller.prototype.controlsAlwaysVisible):
Ditto.
(Controller.prototype.handlePictureInPictureButtonClicked):
Ditto.

  • Modules/mediacontrols/mediaControlsiOS.js:

(ControllerIOS.prototype.handlePresentationModeChange):
Most logic has been moved to the same method in mediaControlsApple.js, except
updating the style of the panelContainer, which doesn't exist in the Mac controls.
(ControllerIOS.prototype.addVideoListeners): Deleted.
(ControllerIOS.prototype.removeVideoListeners): Deleted.
(ControllerIOS.prototype.presentationMode): Deleted.
(ControllerIOS.prototype.isFullScreen): Deleted.
(ControllerIOS.prototype.handlePictureInPictureButtonClicked): Deleted.
(ControllerIOS.prototype.updatePictureInPictureButton): Deleted.
(ControllerIOS.prototype.handleFullscreenChange): Deleted.
(ControllerIOS.prototype.controlsAlwaysVisible): Deleted.
Delete all code that's already handled in the Controller.

2:23 PM Changeset in webkit [195692] by adachan@apple.com
  • 3 edits in trunk/Source/WebCore

Enable API related to the video fullscreen layer in MediaPlayerPrivateMediaSourceAVFObjC
also on Mac platform with video presentation mode support.
https://bugs.webkit.org/show_bug.cgi?id=153223

Reviewed by Jer Noble.

Reuse VideoFullscreenLayerManager to manage moving the video layer between the fullscreen
layer and the inline layer depending on the current presentation mode.

  • platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.h:
  • platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaSourceAVFObjC.mm:

(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::MediaPlayerPrivateMediaSourceAVFObjC):
Create m_videoFullscreenLayerManager.
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::platformLayer):
Return the video inline layer from the VideoFullscreenLayerManager.
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::addDisplayLayer):
Call VideoFullscreenLayerManager::setVideoLayer() with the m_sampleBufferDisplayLayer.
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::removeDisplayLayer):
Call VideoFullscreenLayerManager::didDestroyVideoLayer().
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::setVideoFullscreenLayer):
Call VideoFullscreenLayerManager::setVideoFullscreenLayer().
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::setVideoFullscreenFrame):
Call VideoFullscreenLayerManager::setVideoFullscreenFrame().

2:08 PM Changeset in webkit [195691] by peavo@outlook.com
  • 2 edits in trunk/Source/JavaScriptCore

[FTL][Win64] Compile fix.
https://bugs.webkit.org/show_bug.cgi?id=153555

Reviewed by Alex Christensen.

MSVC does not accept preprocessor conditionals in macros.

  • ftl/FTLOSRExitCompiler.cpp:

(JSC::FTL::compileStub):

2:04 PM Changeset in webkit [195690] by jmarcell@apple.com
  • 3 edits in trunk/Tools

Fix bugs caused by incorrect usage of "branch" vs. "branchName". https://bugs.webkit.org/show_bug.cgi?id=153330

Reviewed by Daniel Bates.

In an earlier patch we started using the name "branch" to indicate a branch object, whereas
"branchName" implies that the variable or property in question is simply a string. We fixed some
inconsistencies regarding this issue in 152982 but further bugs and inconsistencies were recently
spotted in BuildbotQueueView.js.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/BuildbotQueueView.js:

(BuildbotQueueView.prototype._popoverLinesForCommitRange): Change branchName to branch in method signature.
Changed branchName to branch.name in call to commitsOnBranch.
(BuildbotQueueView.prototype._presentPopoverForPendingCommits): Change branch.name to branch in call to
_popoverLinesForCommitRange.
(BuildbotQueueView.prototype._presentPopoverForRevisionRange): Changed context.branchName to context.branch.name.
(BuildbotQueueView.prototype._revisionContentWithPopoverForIteration): Changed branch.name to branch.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/tests/tests.js: Added tests to verify

fix.

1:57 PM Changeset in webkit [195689] by beidson@apple.com
  • 10 edits in trunk

Modern IDB: SQLite backend doesn't update index records as object records are added.
https://bugs.webkit.org/show_bug.cgi?id=153548

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (4 more tests pass, others improve).

  • Modules/indexeddb/server/IDBBackingStore.h:
  • Modules/indexeddb/server/MemoryIDBBackingStore.cpp:

(WebCore::IDBServer::MemoryIDBBackingStore::addRecord):

  • Modules/indexeddb/server/MemoryIDBBackingStore.h:
  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::initializeVM):
(WebCore::IDBServer::SQLiteIDBBackingStore::vm):
(WebCore::IDBServer::SQLiteIDBBackingStore::globalObject):
(WebCore::IDBServer::SQLiteIDBBackingStore::createIndex):
(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedPutIndexKey):
(WebCore::IDBServer::SQLiteIDBBackingStore::updateIndexesForAddRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::addRecord):

  • Modules/indexeddb/server/SQLiteIDBBackingStore.h:
  • Modules/indexeddb/server/UniqueIDBDatabase.cpp:

(WebCore::IDBServer::UniqueIDBDatabase::performPutOrAdd):

  • Modules/indexeddb/shared/IDBObjectStoreInfo.h:

LayoutTests:

  • platform/mac-wk1/TestExpectations:
12:47 PM Changeset in webkit [195688] by beidson@apple.com
  • 2 edits in trunk/LayoutTests

LayoutTest fast/loader/stateobjects/replacestate-frequency-iframe.html is flaky on El Cap, always times out on Yosemite.
https://bugs.webkit.org/show_bug.cgi?id=153551

Unreviewed.

The iframe file name is "replacestate-iframe.html", but the main frame src refers to "replaceState-iframe.html"

Notice the case difference on the 'S'.

Apparently some of our bots have case sensitive filesystems, and others do not.

  • fast/loader/stateobjects/replacestate-frequency-iframe.html:
12:37 PM Changeset in webkit [195687] by beidson@apple.com
  • 3 edits in trunk/LayoutTests

Noticed while exploring:
LayoutTest fast/loader/stateobjects/replacestate-frequency-iframe.html is flaky on El Cap, always times out on Yosemite.
https://bugs.webkit.org/show_bug.cgi?id=153551

Unreviewed gardening.

Probably won't fix anything, but hey, let's try.

  • fast/loader/stateobjects/replacestate-frequency-iframe-expected.txt:
  • fast/loader/stateobjects/replacestate-frequency-iframe.html:
12:29 PM Changeset in webkit [195686] by rniwa@webkit.org
  • 12 edits
    1 copy
    1 add in trunk

Add API to access closed shadowRoot in InjectedBundle
https://bugs.webkit.org/show_bug.cgi?id=153533

Reviewed by Antti Koivisto.

Source/WebCore:

Always return the shadow root in Element.shadowRootForBindings when the DOM wrapper world has
shadowRootIsAlwaysOpen set to true. Also renamed bindingShadowRoot to shadowRootForBindings
to be consistent.

  • bindings/js/DOMWrapperWorld.h:

(WebCore::DOMWrapperWorld::setShadowRootIsAlwaysOpen): Added.
(WebCore::DOMWrapperWorld::shadowRootIsAlwaysOpen): Added.

  • dom/Element.cpp:

(WebCore::Element::shadowRootForBindings): Renamed from bindingShadowRoot.

  • dom/Element.h:
  • dom/Element.idl:

Source/WebKit2:

Added WKBundleScriptWorldMakeAllShadowRootsOpen to make all shadow roots open.
This is needed to keep supporting certain browser-level features such as autofill.

  • WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.cpp:

(WKBundleScriptWorldMakeAllShadowRootsOpen): Added.

  • WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.h:
  • WebProcess/InjectedBundle/InjectedBundleScriptWorld.cpp:

(WebKit::InjectedBundleScriptWorld::makeAllShadowRootsOpen): Added.

  • WebProcess/InjectedBundle/InjectedBundleScriptWorld.h:

Tools:

Added WebKit2 API test for WKBundleScriptWorldMakeAllShadowRootsOpen.

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKit2/InjectedBundleMakeAllShadowRootsOpen.cpp: Added.

(TestWebKitAPI::runJavaScriptAlert):
(TestWebKitAPI::TEST):

  • TestWebKitAPI/Tests/WebKit2/InjectedBundleMakrAllShadowRootOpen_Bundle.cpp: Added.

(TestWebKitAPI::InjectedBundleMakrAllShadowRootOpenTest::InjectedBundleMakrAllShadowRootOpenTest):
(TestWebKitAPI::InjectedBundleMakrAllShadowRootOpenTest::initialize):

12:24 PM Changeset in webkit [195685] by commit-queue@webkit.org
  • 23 edits
    4 adds in trunk

Need ability to specify alternate image for AutoFill button in input fields.
https://bugs.webkit.org/show_bug.cgi?id=153116.
rdar://problem/23384854.

Patch by Zhuo Li <zachli@apple.com> on 2016-01-27
Reviewed by Darin Adler.

Source/WebCore:

Add a new AutoFill button that can be shown in <input> elements.

Tests: fast/forms/auto-fill-button/input-contacts-auto-fill-button.html

fast/forms/auto-fill-button/show-correct-auto-fill-button-when-auto-fill-button-type-changes.html

  • css/html.css:

(input::-webkit-contacts-auto-fill-button):
(input::-webkit-contacts-auto-fill-button:hover):
(input::-webkit-contacts-auto-fill-button:active):
Add default style rules for the Contacts AutoFill button based on the ones used for
Manual AutoFill button.

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::setShowAutoFillButton):

  • html/HTMLInputElement.h:

(WebCore::HTMLInputElement::autoFillButtonType):

  • Replace the boolean parameter with a new parameter to specify the type of the AutoFill button.
  • Declare a private variable to keep a record of the type of the current AutoFill

button.
(WebCore::HTMLInputElement::showAutoFillButton): Deleted.

  • html/HTMLTextFormControlElement.h:

Declare enum for AutoFill button type.

  • html/TextFieldInputType.cpp:

(WebCore::autoFillButtonTypeToAutoFillButtonPseudoClassName):
(WebCore::isAutoFillButtonTypeChanged):
(WebCore::TextFieldInputType::shouldDrawAutoFillButton): None means the AutoFill button is not
enabled.
(WebCore::TextFieldInputType::createAutoFillButton): Only create the AutoFill button
if the type is expected.
(WebCore::TextFieldInputType::updateAutoFillButton):
Handle the case where AutoFill button type changes in the text field.

  • html/TextFieldInputType.h:
  • testing/Internals.cpp:

(WebCore::stringToAutoFillButtonType): Convert the string to AutoFill button type.
(WebCore::Internals::setShowAutoFillButton): Add a new parameter to specify the type of the AutoFill button.

  • testing/Internals.h: Ditto.
  • testing/Internals.idl: Ditto.

Source/WebKit2:

  • WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.cpp:

(toAutoFillButtonType): Convert the WebKit AutoFill button type enum to WebCore AutoFill button
type enum.
(WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabledWithButtonType): Added to be able to specify
what the AutoFill button type is. None means the AutoFill button is not shown.
(WKBundleNodeHandleSetHTMLInputElementAutoFillButtonEnabled): Deprecate this method.

  • WebProcess/InjectedBundle/API/c/WKBundleNodeHandlePrivate.h: Declare an AutoFill button type enum.
  • WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:

(WebKit::InjectedBundleNodeHandle::isHTMLInputElementAutoFillButtonEnabled): None means the AutoFill button is not enabled.
(WebKit::InjectedBundleNodeHandle::setHTMLInputElementAutoFillButtonEnabledWithButtonType): Use the new parameter to specify
what the AutoFill button type is.

  • WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: Ditto.

LayoutTests:

  • fast/forms/auto-fill-button/hide-auto-fill-button-when-input-becomes-disabled.html: The test API has

another parameter to specify what type the AutoFill button is.

  • fast/forms/auto-fill-button/hide-auto-fill-button-when-input-becomes-readonly.html: Ditto.
  • fast/forms/auto-fill-button/input-contacts-auto-fill-button-expected.txt: Added.
  • fast/forms/auto-fill-button/input-contacts-auto-fill-button.html: Added.
  • fast/forms/auto-fill-button/input-auto-fill-button.html: Ditto.
  • fast/forms/auto-fill-button/input-disabled-auto-fill-button.html: Ditto.
  • fast/forms/auto-fill-button/input-readonly-non-empty-auto-fill-button.html: Ditto.
  • fast/forms/auto-fill-button/mouse-down-input-mouse-release-auto-fill-button.html: Ditto.
  • fast/forms/auto-fill-button/show-correct-auto-fill-button-when-auto-fill-button-type-changes-expected.html: Added.
  • fast/forms/auto-fill-button/show-correct-auto-fill-button-when-auto-fill-button-type-changes.html: Added.
12:12 PM Changeset in webkit [195684] by achristensen@apple.com
  • 2 edits in trunk/Source/WebKit

[Win] Clean build fix after r195680.

  • PlatformWin.cmake:

Use the post build command for the post build event.

12:10 PM Changeset in webkit [195683] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Air::TmpWidth uses a stale pointer into its HashMap after it calls add()
https://bugs.webkit.org/show_bug.cgi?id=153546

Reviewed by Saam Barati.

  • b3/air/AirTmpWidth.cpp:

(JSC::B3::Air::TmpWidth::recompute):

12:09 PM Changeset in webkit [195682] by rniwa@webkit.org
  • 4 edits
    2 adds in trunk

Add Node.treeRoot
https://bugs.webkit.org/show_bug.cgi?id=153537

Reviewed by Antti Koivisto.

Source/WebCore:

Exposed highestAncestor as Node.prototype.treeRoot, which was added to shadow DOM spec in
https://github.com/w3c/webcomponents/commit/6864a40fe4efa8a737e78512e3c85319ddc5bf8b

See also:
http://w3c.github.io/webcomponents/spec/shadow/#extensions-to-node-interface

Test: fast/shadow-dom/Node-interface-treeRoot.html

  • dom/Node.idl:

LayoutTests:

Added a testharness.js test for Node.treeRoot. Also rebaselined a test.

  • js/dom/dom-static-property-for-in-iteration-expected.txt: Rebaselined.
  • fast/shadow-dom/Node-interface-treeRoot-expected.txt: Added.
  • fast/shadow-dom/Node-interface-treeRoot.html: Added.
12:08 PM Changeset in webkit [195681] by rniwa@webkit.org
  • 6 edits in trunk

Rename HTMLSlotElement.getDistributedNodes to getAssignedNodes
https://bugs.webkit.org/show_bug.cgi?id=153534

Reviewed by Antti Koivisto.

Source/WebCore:

Did the rename.

  • html/HTMLSlotElement.idl:

LayoutTests:

Updated the tests to refect the rename. Also added test cases after r192763
to assert we don't assign comment and processing instruction nodes to a slot.

  • fast/shadow-dom/HTMLSlotElement-interface-expected.txt:
  • fast/shadow-dom/HTMLSlotElement-interface.html:
  • fast/shadow-dom/NonDocumentTypeChildNode-interface-assignedSlot.html:
12:00 PM Changeset in webkit [195680] by achristensen@apple.com
  • 2 edits in trunk/Source/WebKit

Fix Win EWS after r195545.
https://bugs.webkit.org/show_bug.cgi?id=153434

  • PlatformWin.cmake:

Copy WebKit.h after building WebKitGUID, because it doesn't exist before.
This should fix EWS problems like the one seen in bug 153522.

11:54 AM Changeset in webkit [195679] by jmarcell@apple.com
  • 3 edits in trunk/Tools

Refactor logic for parsing Trac revisions into its own function and add logic for parsing git hashes.
https://bugs.webkit.org/show_bug.cgi?id=153332

Reviewed by Alexey Proskuryakov.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js:

(Trac.prototype._xmlTimelineURL): Uses new function.
(Trac.prototype._parseRevisionFromURL): Added. Pulled out logic for parsing revisions from a URL. Also added
logic for parsing git hashes.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/tests/tests.js: Added tests for

Trac._parseRevisionFromURL.

11:11 AM Changeset in webkit [195678] by timothy_horton@apple.com
  • 7 edits
    4 adds in trunk

Need to be able to specify MIME type for <attachment> without filename or handle
https://bugs.webkit.org/show_bug.cgi?id=153552
<rdar://problem/20145857>

Reviewed by Anders Carlsson.

Tests: fast/attachment/attachment-default-icon.html

fast/attachment/attachment-type-attribute.html

  • html/HTMLAttachmentElement.cpp:

(WebCore::HTMLAttachmentElement::parseAttribute):
Invalidate attachment when 'type' attribute changes.

(WebCore::HTMLAttachmentElement::attachmentType):

  • html/HTMLAttachmentElement.h:
  • platform/graphics/Icon.h:
  • platform/graphics/mac/IconMac.mm:

(WebCore::Icon::createIconForUTI):
(WebCore::Icon::createIconForMIMEType):
Add Icon class methods to retrieve an icon given a UTI or MIME type.

  • rendering/RenderThemeMac.mm:

(WebCore::paintAttachmentIcon):
Use the 'type' attribute (a MIME type) if we have one. Otherwise,
use the filename. Lastly fall back to a plain file icon (using the root
file UTI, public.data).

  • fast/attachment/attachment-default-icon-expected.html: Added.
  • fast/attachment/attachment-default-icon.html: Added.
  • fast/attachment/attachment-type-attribute-expected.html: Added.
  • fast/attachment/attachment-type-attribute.html: Added.

Add some tests.

10:38 AM Changeset in webkit [195677] by mitz@apple.com
  • 2 edits in trunk/Source/WebKit2

More trying to fix the build.

  • Configurations/WebKit.xcconfig:
10:34 AM Changeset in webkit [195676] by ap@apple.com
  • 3 edits in trunk/Tools

Remove Mavericks from the flakiness dashboard
https://bugs.webkit.org/show_bug.cgi?id=153521

Reviewed by Dan Bernstein.

  • TestResultServer/static-dashboards/builders.jsonp:
  • TestResultServer/static-dashboards/flakiness_dashboard.js:
10:24 AM Changeset in webkit [195675] by ap@apple.com
  • 20 edits in trunk

Remove ENABLE_CURRENTSRC
https://bugs.webkit.org/show_bug.cgi?id=153545

Reviewed by Simon Fraser.

.:

  • Source/cmake/OptionsEfl.cmake:
  • Source/cmake/OptionsGTK.cmake:
  • Source/cmake/OptionsMac.cmake:
  • Source/cmake/OptionsWin.cmake:
  • Source/cmake/WebKitFeatures.cmake:
  • Source/cmake/tools/vsprops/FeatureDefines.props:
  • Source/cmake/tools/vsprops/FeatureDefinesCairo.props:

Source/JavaScriptCore:

  • Configurations/FeatureDefines.xcconfig:

Source/WebCore:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

  • Configurations/FeatureDefines.xcconfig:

Source/WTF:

  • wtf/FeatureDefines.h:

Tools:

  • Scripts/webkitperl/FeatureList.pm:
10:23 AM Changeset in webkit [195674] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Try to fix the build.

  • Configurations/WebKit.xcconfig:
8:57 AM Changeset in webkit [195673] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Stop echoing echo commands to stdout
https://bugs.webkit.org/show_bug.cgi?id=153531

Reviewed by Csaba Osztrogonác.

  • DerivedSources.make:
7:35 AM Changeset in webkit [195672] by youenn.fablet@crf.canon.fr
  • 1 edit
    3 adds in trunk/LayoutTests

[GTK] Problem running promises code in workers
https://bugs.webkit.org/show_bug.cgi?id=152340

Reviewed by Carlos Garcia Campos.

Test file that creates two testharness promise tests. Each test creates 10000 promises, pushes them into an
array and vends them in a timeout.

  • js/promises-tests/promises-in-workers-expected.txt: Added.
  • js/promises-tests/promises-in-workers.html: Added.
  • js/promises-tests/promises-in-workers.js: Added.
7:20 AM Changeset in webkit [195671] by jer.noble@apple.com
  • 3 edits
    2 adds in trunk

Calling video.controls=true during a scrub operation cancels scrub.
https://bugs.webkit.org/show_bug.cgi?id=153494

Reviewed by Eric Carlson.

Source/WebCore:

Test: media/media-controls-drag-timeline-set-controls-property.html

Verify that the video.controls attribute actually changed before tearing down and
re-adding the media controls to the Shadow DOM.

  • Modules/mediacontrols/mediaControlsApple.js:

(Controller.prototype.handleControlsChange):
(Controller.prototype.hasControls):

LayoutTests:

  • media/media-controls-drag-timeline-set-controls-property-expected.txt: Added.
  • media/media-controls-drag-timeline-set-controls-property.html: Added.
6:34 AM Changeset in webkit [195670] by Carlos Garcia Campos
  • 1 copy in releases/WebKitGTK/webkit-2.10.6

WebKitGTK+ 2.10.6

6:30 AM WebKitGTK/Gardening/Calendar edited by clopez@igalia.com
(diff)
6:17 AM Changeset in webkit [195669] by Carlos Garcia Campos
  • 4 edits in releases/WebKitGTK/webkit-2.10

Unreviewed. Update OptionsGTK.cmake and NEWS for 2.10.6 release.

.:

  • Source/cmake/OptionsGTK.cmake: Bump version numbers.

Source/WebKit2:

  • gtk/NEWS: Add release notes for 2.10.6
5:40 AM Changeset in webkit [195668] by Carlos Garcia Campos
  • 5 edits
    2 adds in releases/WebKitGTK/webkit-2.10

Merge r195586 - [GTK] WebProcess crashes when quickly attempting many DnD operations
https://bugs.webkit.org/show_bug.cgi?id=138468

Reviewed by Michael Catanzaro.

Source/WebKit2:

Do not allow different DnD operations over the same element at the
same time, so that any new attempt to DnD an element happening before
a previous attempt has ended will take precedence, cancelling the older
operation before going ahead with the new one.

This is consistent with how WebCore::EventHandler handles DnD operations,
preventing the web process from crashing in scenarios where the user might
try to perform many DnD operations over the same element very quickly.

  • UIProcess/gtk/DragAndDropHandler.cpp:

(WebKit::DragAndDropHandler::DragAndDropHandler): Initialized new member.
(WebKit::DragAndDropHandler::startDrag): Ensure a previous DnD operation
is cancelled before handling the new one that has just started.
(WebKit::DragAndDropHandler::fillDragData): Protect against calling this
function from webkitWebViewBaseDragDataGet for already cancelled operations.
(WebKit::DragAndDropHandler::finishDrag): Protect against calling this
function from webkitWebViewBaseDragEnd for already cancelled operations.

  • UIProcess/gtk/DragAndDropHandler.h:

LayoutTests:

New test added to check that the web process does not crash when multiple
DnD operations are quickly attempted over the same draggable element.

  • fast/events/drag-and-drop-link-fast-multiple-times-does-not-crash-expected.txt: Added.
  • fast/events/drag-and-drop-link-fast-multiple-times-does-not-crash.html: Added.

Added the new test to the failure expectations for mac-wk2, as there's no
suitable implementation of eventSender in place yet (see bug 42194).

  • platform/mac-wk2/TestExpectations: Added failure expectation for the new test.
5:33 AM Changeset in webkit [195667] by Carlos Garcia Campos
  • 3 edits in releases/WebKitGTK/webkit-2.10/Source/WebCore

Merge r195537 - REGRESSION(r192773): [GTK] maps.google.com unresponsive/stalls since r192773
https://bugs.webkit.org/show_bug.cgi?id=153194

Reviewed by Michael Catanzaro.

In r192773 we implemented the JavaScriptCore garbage collector
timers for the GTK+ port. Those timers schedule sources in the
current thread default main context, but JS web worker threads
implementation doesn't use WTF::RunLoop, but its own WorkerRunLoop
class that doesn't create a GMainContext for the new thread. This
means that for web sites using workers, we are now doing garbage
collection of worker VMs in the main thread which ends up in a
deadlock at some point. We need to ensure that worker threads
create a GMainContext and push it as the default one for the
thread before the WorkerGlobalScope is created. This way when the
worker Heap is created, the GC timers use the right context to
schedule their sources. And then we need to check if there are
sources pending in the thread main context on every worker run
loop iteration.

  • workers/WorkerRunLoop.cpp:

(WebCore::WorkerRunLoop::runInMode):

  • workers/WorkerThread.cpp:

(WebCore::WorkerThread::workerThread):

5:31 AM Changeset in webkit [195666] by Carlos Garcia Campos
  • 3 edits
    2 adds in releases/WebKitGTK/webkit-2.10

Merge r195511 - [GTK] Fix media controls displaying without controls attribute
https://bugs.webkit.org/show_bug.cgi?id=152500

Media controls is not displayed without controls attribute by default
when the video element has text track. It'll be displayed on fullscreen
regardless of controls attribute.

Patch by Wonchul Lee <wonchul.lee@collabora.co.uk> on 2016-01-23
Reviewed by Michael Catanzaro.

Source/WebCore:

  • Modules/mediacontrols/mediaControlsGtk.js:

(ControllerGtk.prototype.shouldHaveControls):
(ControllerGtk.prototype.reconnectControls):
(ControllerGtk.prototype.removeControls):
(ControllerGtk.prototype.configureControls): Deleted.

LayoutTests:

  • media/video-controls-no-display-with-text-track-expected.txt: Added.
  • media/video-controls-no-display-with-text-track.html: Added.
5:23 AM Changeset in webkit [195665] by Carlos Garcia Campos
  • 4 edits
    2 adds in releases/WebKitGTK/webkit-2.10

Merge r195453 - Elements with overflow and border-radius don't show in multicolumn properly.
https://bugs.webkit.org/show_bug.cgi?id=152920

Reviewed by Simon Fraser.

Source/WebCore:

Added new test in fast/multicol.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::convertToLayerCoords):
(WebCore::RenderLayer::offsetFromAncestor):
(WebCore::RenderLayer::clipToRect):

  • rendering/RenderLayer.h:

Make sure the crawl up the containing block chain to apply clips properly offsets
to account for columns. convertToLayerCoords could already handle this, so
offsetFromAncestor now takes the same extra argument (whether or not to adjust for
columns) that convertToLayerCoords does.

LayoutTests:

  • fast/multicol/border-radius-overflow-columns-expected.html: Added.
  • fast/multicol/border-radius-overflow-columns.html: Added.
5:21 AM Changeset in webkit [195664] by Carlos Garcia Campos
  • 9 edits
    2 adds in releases/WebKitGTK/webkit-2.10

Merge r195445 - REGRESSION (r168244): Content in horizontal-bt page is offset such that only the end is viewable and there is a white gap at the top
https://bugs.webkit.org/show_bug.cgi?id=136019

Reviewed by Dan Bernstein.

Source/WebCore:

In horizontal-bt documents (where the page starts scrolled to the bottom, and scrolling up goes into negative scroll positions),
the position of the root content layer would be set incorrectly by the scrolling thread, resulting in misplaced
content.

Fix by having the renamed "yPositionForRootContentLayer" take scroll origin into
account, and being more consistent about using scrollOrigin to position this layer.

Test: fast/scrolling/programmatic-horizontal-bt-document-scroll.html

  • page/FrameView.cpp:

(WebCore::FrameView::yPositionForFooterLayer): Moved
(WebCore::FrameView::positionForRootContentLayer): Take scrollOrigin, and subtract it from the computed value.
(WebCore::FrameView::yPositionForRootContentLayer): Renamed.

  • page/FrameView.h:
  • page/scrolling/AsyncScrollingCoordinator.cpp:

(WebCore::AsyncScrollingCoordinator::updateScrollPositionAfterAsyncScroll): We've already pushed the new scrollPosition onto the FrameView,
so we can just use the member function to compute the positionForContentsLayer.

  • page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.mm:

(WebCore::ScrollingTreeFrameScrollingNodeMac::setScrollLayerPosition): This is the bug fix; FrameView::positionForRootContentLayer()
now takes scrollOrigin into account.

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::updateRootLayerPosition): Rather than using the documentRect, position the root content layer
in terms of the scroll origin (which is -documentRect.location()).

Source/WebKit2:

Now call frameView.positionForRootContentLayer(), and add a FIXME questioning the
behavior in horizontal b-t documents. However, this code isn't hit now that we always
do extended backgrounds, so never have shadow layers.

  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:

(WebKit::shadowLayerPositionForFrame):

LayoutTests:

Test that scrolls a horizontal-bt document.

  • fast/scrolling/programmatic-horizontal-bt-document-scroll-expected.html: Added.
  • fast/scrolling/programmatic-horizontal-bt-document-scroll.html: Added.
4:34 AM Changeset in webkit [195663] by Carlos Garcia Campos
  • 13 edits
    4 adds in releases/WebKitGTK/webkit-2.10

Merge r195411 - A crash reproducible in Path::isEmpty() under RenderSVGShape::paint()
https://bugs.webkit.org/show_bug.cgi?id=149613

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2016-01-21
Reviewed by Darin Adler.
Source/WebCore:

When RenderSVGRoot::layout() realizes its layout size has changed and
it has resources which have relative sizes, it marks all the clients of
the resources for invalidates regardless whether they belong to the
same RenderSVGRoot or not. But it reruns the layout only for its children.
If one of these clients comes before the current RenderSVGRoot in the render
tree, ee end up having renderer marked for invalidation at rendering time.
This also prevents scheduling the layout if the same renderer is marked
for another invalidation later. We prevent this because we do not want
to schedule another layout for a renderer which is already marked for
invalidation. This can cause crash if the renderer is an RenderSVGPath.

The fix is to mark "only" the clients of a resource which belong to the
same RenderSVGRoot of the resource. Also we need to run the layout for
all the resources which belong to different RenderSVGRoots before running
the layout for an SVG renderer.

Tests: svg/custom/filter-update-different-root.html

svg/custom/pattern-update-different-root.html

  • rendering/svg/RenderSVGResourceContainer.cpp:

(WebCore::RenderSVGResourceContainer::markAllClientsForInvalidation):
We should not mark any client outside the current root for invalidation

  • rendering/svg/RenderSVGResourceContainer.h: Remove unneeded private keyword.
  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::RenderSVGRoot::addResourceForClientInvalidation):
Code clean up; use findTreeRootObject() instead of repeating the same code.

  • rendering/svg/RenderSVGShape.cpp:

(WebCore::RenderSVGShape::isEmpty): Avoid crashing if RenderSVGShape::isEmpty()
is called before calling RenderSVGShape::layout().

  • rendering/svg/RenderSVGText.cpp:

(WebCore::RenderSVGText::layout): findTreeRootObject() now returns a pointer.

  • rendering/svg/SVGRenderSupport.cpp:

(WebCore::SVGRenderSupport::findTreeRootObject): I do think nothing
guarantees that an SVG renderer has to have an RenderSVGRoot in its
ancestors. So change this function to return a pointer. Also Provide
the non-const version of this function.

(WebCore::SVGRenderSupport::layoutDifferentRootIfNeeded): Runs the layout
if needed for all the resources which belong to different RenderSVGRoots.

(WebCore::SVGRenderSupport::layoutChildren): Make sure all the renderer's
resources which belong to different RenderSVGRoots are laid out before
running the layout for this renderer.

  • rendering/svg/SVGRenderSupport.h: Remove a mysterious comment.
  • rendering/svg/SVGResources.cpp:

(WebCore::SVGResources::layoutDifferentRootIfNeeded): Run the layout for
all the resources which belong to different RenderSVGRoots outside the
context of their RenderSVGRoots.

  • rendering/svg/SVGResources.h:

(WebCore::SVGResources::clipper):
(WebCore::SVGResources::markerStart):
(WebCore::SVGResources::markerMid):
(WebCore::SVGResources::markerEnd):
(WebCore::SVGResources::masker):
(WebCore::SVGResources::filter):
(WebCore::SVGResources::fill):
(WebCore::SVGResources::stroke):
Code clean up; use nullptr instead of 0.

LayoutTests:

When running the layout of an SVG root and it has resources which are
referenced by clients in other SVG roots, make sure we run the layout
for these resources before running the layout for their clients.

  • svg/custom/filter-update-different-root-expected.html: Added.
  • svg/custom/filter-update-different-root.html: Added.

Without this patch this test crashes because we paint a dirty RenderSVGShape.

  • svg/custom/pattern-update-different-root-expected.html: Added.
  • svg/custom/pattern-update-different-root.html: Added.

Without this patch this test works fine but it is good to have it to catch
cases where the SVG root needs to run re-layout for its children resources
and hence their clients if its size has changed.

  • svg/custom/unicode-in-tspan-multi-svg-crash-expected.txt:
  • svg/custom/unicode-in-tspan-multi-svg-crash.html:

This test was ported from Blink in http://trac.webkit.org/changeset/166420.
The expectation of this test was changed in Blink:
https://src.chromium.org/viewvc/blink?revision=158480&view=revision.

4:28 AM Changeset in webkit [195662] by Carlos Garcia Campos
  • 5 edits
    2 adds in releases/WebKitGTK/webkit-2.10

Merge r195397 - http://victordarras.fr/cssgame/ doesn't work in Safari.
https://bugs.webkit.org/show_bug.cgi?id=153285
<rdar://problem/24212369>

Reviewed by Tim Horton.

This patch adds support for hittesting ClipPathOperation::Reference.

Source/WebCore:

Tests: svg/clip-path/hittest-clip-path-reference-miss.html

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::nodeAtPoint):

  • rendering/RenderObject.h:

(WebCore::RenderObject::isSVGResourceClipper):

  • rendering/svg/RenderSVGResourceClipper.h:

(isType):

LayoutTests:

  • svg/clip-path/hittest-clip-path-reference-miss-expected.html: Added.
  • svg/clip-path/hittest-clip-path-reference-miss.html: Added.
2:32 AM Changeset in webkit [195661] by Carlos Garcia Campos
  • 6 edits
    5 adds
    2 deletes in trunk/Source/WebCore

[GTK][EFL] Rename ScrollAnimationNone as ScrollAnimationSmooth
https://bugs.webkit.org/show_bug.cgi?id=153481

Reviewed by Simon Fraser.

ScrollAnimationNone has always been used by EFL and GTK ports to
implement smooth scrolling. I think it should be possible for
other scroll animators to implement smooth scrolling or even
implement other kind of scroll animations. For example, in the
future I would like to have kinetic scrolling implemented for the
GTK+ port to match all other GTK+ application and decide at
runtime between different animations without having to use a
different scroll animator class. So, this patch also moves the
smooth scrolling animation implementation to its own class
ScrollAnimationSmooth that impements an interface ScrollAnimation
that could be used to implement other animations. This will allow
the GTK+ port to add its own scroll animator class and still
support smooth scrolling sharing the code with the
ScrollAnimationSmooth.

  • PlatformEfl.cmake: Add new files to compilation and remove ScrollAnimationNone.
  • PlatformGTK.cmake: Ditto.
  • platform/ScrollAnimation.h: Added.

(WebCore::ScrollAnimation::serviceAnimation):
(WebCore::ScrollAnimation::ScrollAnimation):

  • platform/ScrollAnimationSmooth.cpp: Added.

(WebCore::ScrollAnimationSmooth::ScrollAnimationSmooth):
(WebCore::ScrollAnimationSmooth::scroll):
(WebCore::ScrollAnimationSmooth::stop):
(WebCore::ScrollAnimationSmooth::updateVisibleLengths):
(WebCore::ScrollAnimationSmooth::setCurrentPosition):
(WebCore::ScrollAnimationSmooth::serviceAnimation):
(WebCore::ScrollAnimationSmooth::~ScrollAnimationSmooth):
(WebCore::curveAt):
(WebCore::attackCurve):
(WebCore::releaseCurve):
(WebCore::coastCurve):
(WebCore::curveIntegralAt):
(WebCore::attackArea):
(WebCore::releaseArea):
(WebCore::getAnimationParametersForGranularity):
(WebCore::ScrollAnimationSmooth::updatePerAxisData):
(WebCore::ScrollAnimationSmooth::animateScroll):
(WebCore::ScrollAnimationSmooth::animationTimerFired):
(WebCore::ScrollAnimationSmooth::startNextTimer):
(WebCore::ScrollAnimationSmooth::animationTimerActive):

  • platform/ScrollAnimationSmooth.h: Added.
  • platform/ScrollAnimator.cpp:

(WebCore::ScrollAnimator::scroll):
(WebCore::ScrollAnimator::scrollToOffsetWithoutAnimation):
(WebCore::ScrollAnimator::setCurrentPosition):
(WebCore::ScrollAnimator::updateActiveScrollSnapIndexForOffset):
(WebCore::ScrollAnimator::notifyPositionChanged):
(WebCore::ScrollAnimator::scrollOffsetOnAxis):

  • platform/ScrollAnimator.h:

(WebCore::ScrollAnimator::ScrollAnimator::currentPosition):

  • platform/ScrollAnimatorNone.cpp: Removed.
  • platform/ScrollAnimatorNone.h: Removed.
  • platform/ScrollAnimatorSmooth.cpp: Added.

(WebCore::ScrollAnimator::create):
(WebCore::ScrollAnimatorSmooth::ScrollAnimatorSmooth):
(WebCore::ScrollAnimatorSmooth::~ScrollAnimatorSmooth):
(WebCore::ScrollAnimatorSmooth::scroll):
(WebCore::ScrollAnimatorSmooth::scrollToOffsetWithoutAnimation):
(WebCore::ScrollAnimatorSmooth::cancelAnimations):
(WebCore::ScrollAnimatorSmooth::serviceScrollAnimations):
(WebCore::ScrollAnimatorSmooth::willEndLiveResize):
(WebCore::ScrollAnimatorSmooth::didAddVerticalScrollbar):
(WebCore::ScrollAnimatorSmooth::didAddHorizontalScrollbar):

  • platform/ScrollAnimatorSmooth.h: Added.
  • platform/mac/ScrollAnimatorMac.mm:

(WebCore::ScrollAnimatorMac::immediateScrollToPosition):
(WebCore::ScrollAnimatorMac::immediateScrollBy):

2:28 AM Changeset in webkit [195660] by Carlos Garcia Campos
  • 3 edits in trunk/Source/WebCore

Overlay scrollbars should always use the whole contents
https://bugs.webkit.org/show_bug.cgi?id=153352

Reviewed by Michael Catanzaro.

In case of having both horizontal and vertical scrollbars, the
scrollbars respect the scroll corner. That looks good for legacy
scrollbars that show the track, but with the overlay indicators
it looks weird that the indicator stops so early before the end of
the contents, giving the impression that there's something else to
scroll. This happens because the scroll corner is transparent, so
it's not obvious that's the scroll corner. It also happens with
the text areas having a resizer. Legacy scrollbars take into
account the resizer, which is good, but I expect overlay
scrollbars to be rendered also over the resizer. The resizer takes
precedence so you can still click and drag to resize the text area.
In the case of main frame scrollbars we are indeed returning an
empty rectangle from ScrollView::scrollCornerRect() when using
overlay scrollbars, but when calculating the size of the
scrollbars we are using the actual width/height instead of the
occupied with/height. For other scrollbars
RenderLayer::scrollCornerRect() is not checking whether scrollbars
are overlay or not and we are always returning a scroll corner
rectangle when scrollbars are present.

  • platform/ScrollView.cpp:

(WebCore::ScrollView::updateScrollbars): Use the occupied
width/height when calculating the space the one scrollbar
should leave for the other.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::scrollCornerRect): Return an empty
rectangle when using overlay scrollbars.

2:24 AM Changeset in webkit [195659] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebCore

ScrollAnimator is not notified when mouse entered, moved or exited a RenderListBox
https://bugs.webkit.org/show_bug.cgi?id=153398

Reviewed by Michael Catanzaro.

EvenHandler is checking whether the enclosing layer of a node is
registered as scrollable area of its frame view. That doesn't work
for list boxes, because they are the scrollable area
themselves. Also when entering a list box the node under mouse is
not usually the list box itself, but any of its children, a
HTMLOptionElement or a HTMLOptGroupElement. Instead of comparing
layers, we should find the enclosing scrollable area of the target
elements and compare them to decide whether the mouse has entered,
left or moved a scrollable area.

  • page/EventHandler.cpp:

(WebCore::enclosingScrollableArea): Return the enclosing
scrollable area of the given node. If the node doesn't have a
renderer, it traverses its parents. If the renderer is a
RenderListBox it is returned, otherwhise the enclosing layer is
returned.
(WebCore::EventHandler::mouseMoved): Use enclosingScrollableArea.
(WebCore::EventHandler::updateMouseEventTargetNode): Ditto.

Jan 26, 2016:

11:43 PM Changeset in webkit [195658] by jmarcell@apple.com
  • 4 edits
    1 add in trunk/Tools

Sort incoming commits via date instead of revision number.
https://bugs.webkit.org/show_bug.cgi?id=153467

Reviewed by Alexey Proskuryakov.

Future Trac instances may use Git or other revision control systems where we cannnot rely on the revision number
for sorting revisions. Instead we use the commit date to sort revisions chronologically.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Trac.js:

(Trac.prototype._loaded): Sort via date instead of revision number.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/tests/MockTrac.js:

(MockTrac): Fix up the mock data to look more like real-world data.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/tests/test-fixture-trac-rss.xml: Added.

Fake RSS feed that adds three more commits.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/tests/tests.js: Added unit tests to test

Trac._loaded().

11:13 PM Changeset in webkit [195657] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Attempt to force a rebuild.

  • DerivedSources.make:
10:39 PM Changeset in webkit [195656] by weinig@apple.com
  • 3 edits in trunk/Source/WebCore

Try touching DerivedSources.make to force rebuilding.

  • DerivedSources.make:
  • page/DOMWindow.idl:
10:27 PM Changeset in webkit [195655] by weinig@apple.com
  • 2 edits in trunk/Source/WebCore

Try to force a rebuild.

  • page/DOMWindow.idl:
10:10 PM Changeset in webkit [195654] by benjamin@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

[JSC] When lowering B3 to Air, preferRightForResult() should prefer values from the same block
https://bugs.webkit.org/show_bug.cgi?id=153477

Reviewed by Filip Pizlo.

In cases like this:

Block #0

@1 = something
@2 = Jump #1

Block #1

@3 = something else
@4 = Add(@3, @1)
...
@42 = Branch(@x, #1, #2)

B3LowerToAir would pick @1 for the argument copied
for what goes into the UseDef side of Add.

This created a bunch of moves that could never be coalesced.
In Kraken's imaging-desaturate, there were enough Moves to slow
down the hot loop.

Ideally, we should not use UseCount for lowering. We should use
the real liveness for preferRightForResult(), and a loop-weighted
use-count for effective addresses. The problem is keeping the cost
low for those simple helpers.

In this patch, I went with a simple heuristic: prioritize the value
defined in the same block for UseDef.

There is one other way that would be cheap but a bit invasive:
-Get rid of UseDef.
-Make every ops, 3 operands.
-Tell the register allocator to attempt aliasing of the 2 uses

with the def.

-If the allocator fails, just add a move as needed.

For now, the simple heuristic seems okay for the cases have.

  • b3/B3LowerToAir.cpp:

(JSC::B3::Air::LowerToAir::preferRightForResult):

7:49 PM Changeset in webkit [195653] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Tail duplication should break critical edges first
https://bugs.webkit.org/show_bug.cgi?id=153530

Reviewed by Benjamin Poulain.

This speeds up Octane/boyer.

  • b3/B3DuplicateTails.cpp:
7:45 PM Changeset in webkit [195652] by Chris Dumez
  • 5 edits in trunk

fast/history/page-cache-webdatabase-no-transaction-db.html flakily crashes
https://bugs.webkit.org/show_bug.cgi?id=153525

Reviewed by Andreas Kling.

Source/WebCore:

The test was crashing because DatabaseThread::hasPendingDatabaseActivity()
was accessing m_openDatabaseSet from the main thread without any locking
mechanism. This is an issue because m_openDatabaseSet is altered by the
database thread.

No new tests, already covered by fast/history/page-cache-webdatabase-no-transaction-db.html.

  • Modules/webdatabase/DatabaseThread.cpp:

(WebCore::DatabaseThread::databaseThread):
(WebCore::DatabaseThread::recordDatabaseOpen):
(WebCore::DatabaseThread::recordDatabaseClosed):
(WebCore::DatabaseThread::hasPendingDatabaseActivity):

  • Modules/webdatabase/DatabaseThread.h:

LayoutTests:

Unskip fast/history/page-cache-webdatabase-no-transaction-db.html now
that it no longer crashes.

7:16 PM Changeset in webkit [195651] by timothy_horton@apple.com
  • 5 edits in trunk/Source/WebKit2

REGRESSION (r194557): Keyboard shortcuts stop working after the WKWebView is unparented and reparented
https://bugs.webkit.org/show_bug.cgi?id=153492
<rdar://problem/24138989>

Reviewed by Dan Bernstein.

  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView canBecomeFirstResponder]):
(-[WKContentView becomeFirstResponder]):
(-[WKContentView resignFirstResponder]):
When WKWebView is unparented, WKContentView will attempt to resignFirstResponder upwards,
first asking WKWebView. After r194557, WKWebView will accept first responder and forward
it on to the WKContentView, which will happily accept it again, despite being the view
that's trying to resign. This will cause us to completely lose first responder,
where it was actually supposed to propagate up above WKWebView to the client.

Keep track of when WKContentView is resigning first responder, and don't
let it become first responder while it is doing so, breaking the cycle.

  • UIProcess/ios/WKContentView.h:
  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView canBecomeFirstResponder]):
If the WKContentView is currently in the process of resigning first responder status,
we shouldn't accept it, because clients expect to receive it.

7:05 PM Changeset in webkit [195650] by commit-queue@webkit.org
  • 10 edits
    1 add in trunk

Source/WebKit2:
Implement wildcard matching for plug-in policy host.
https://bugs.webkit.org/show_bug.cgi?id=153090

Patch by I-Ting Liu <iting_liu@apple.com> on 2016-01-26
Reviewed by Darin Adler.

WebPlatformStrategies decides the plug-in load policy for a host by looking
for a matched hostname in the list of plug-in policies sent by Safari. This
patch adds support for wildcard matching -- if there's a policy with hostname
"*.example.com," the policy for "foo.example.com" would be replaced with that
of "*.example.com" if there's no policy for this hostname. If there is more
than one wildcard hostname, the host with the longest wildcard hostname will
be used.

This patch adds a helper function in StringUtilites that matches a string to
another string, which may contain wildcard ('*') characters.

  • Platform/mac/StringUtilities.h:
  • Add WebKit::stringMatchesWildcardString.
  • Remove #if ENABLE(TELEPHONE_NUMBER_DETECTION) && PLATFORM(MAC) flag so that

the compiler allows exposing StringUtilities.h.

  • Add #if OBJC to allow the file to be included in WebPltformStrategies.cpp
  • Platform/mac/StringUtilities.mm:

(WebKit::stringMatchesWildcardString):
Return true if the entire first given String matches the second. The second string
may contain wildcard characters.
(WebKit::wildcardRegexPatternString):
Return the regex expression from a wildcard string by replacing the wildcard
character ('*') with (".*") and escaping regular expression metacharacters.
(WebKit::formattedPhoneNumberString):
To expose StringUtilities.h for tests, we removed #if ENABLE(TELEPHONE_NUMBER_DETECTION)
&& PLATFORM(MAC) flag in the header. Add a function that returns nil for
#if !(ENABLE(TELEPHONE_NUMBER_DETECTION) && PLATFORM(MAC)) to fix the removal
of the flag in the header file.

  • WebKit2.xcodeproj/project.pbxproj:

Change the file attribute of StringUtilities.h from Project to Private for
testing in TestWebKitAPI.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:

(WebKit::WebPlatformStrategies::longestMatchedWildcardHostForHost):
Return the wildcard hostname whose matched substring with the host is the longest.
(WebKit::WebPlatformStrategies::replaceHostWithMatchedWildcardHost):
Replace the look-up host with a matched wildcard host if there is a match and that
the matched wildcard host's plug-in identifier is the same as that of the host.
(WebKit::WebPlatformStrategies::pluginLoadClientPolicyForHost):
Try to replace the look-up host with the wildcard host if there's no policy for
the host. Restructure the function to reduce hashmap lookup.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.h:

Declare the methods.

Source/WTF:
Implement wildcard matching for plug-in policy host.
https://bugs.webkit.org/show_bug.cgi?id=153090

Patch by I-Ting Liu <iting_liu@apple.com> on 2016-01-26
Reviewed by Darin Adler.

  • wtf/text/AtomicString.h:

(WTF::AtomicString::AtomicString):
Add bridge to allow compilation.

Tools:
Add a test for WebKit::stringMatchesWildcardString.
https://bugs.webkit.org/show_bug.cgi?id=153090

Patch by I-Ting Liu <iting_liu@apple.com> on 2016-01-26
Reviewed by Darin Adler.

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:

Add the file to the project.

  • TestWebKitAPI/Tests/WebKit2/mac/StringUtilities.mm: Added.

(TestWebKitAPI::TEST):
Test that a string matches another string that may contain wildcard characters.

6:41 PM Changeset in webkit [195649] by Joseph Pecoraro
  • 2 edits in trunk/Source/WebCore

Unreviewed CMake build fix after r195644.

  • PlatformMac.cmake:
6:25 PM Changeset in webkit [195648] by beidson@apple.com
  • 5 edits in trunk

Modern IDB: Key generator support for SQLite backend.
https://bugs.webkit.org/show_bug.cgi?id=153427

Reviewed by Alex Christensen.

Source/WebCore:

No new tests (Existing failing tests now pass, others improved).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedGetKeyGeneratorValue):
(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedSetKeyGeneratorValue):
(WebCore::IDBServer::SQLiteIDBBackingStore::generateKeyNumber):
(WebCore::IDBServer::SQLiteIDBBackingStore::revertGeneratedKeyNumber):
(WebCore::IDBServer::SQLiteIDBBackingStore::maybeUpdateKeyGeneratorNumber):

  • Modules/indexeddb/server/SQLiteIDBBackingStore.h:

LayoutTests:

  • platform/mac-wk1/TestExpectations:
6:16 PM Changeset in webkit [195647] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Remove -d flag from make invocation.

  • WebKit2.xcodeproj/project.pbxproj:
5:53 PM Changeset in webkit [195646] by Simon Fraser
  • 8 edits
    2 adds in trunk

Allow canvas to use display-list drawing for testing
https://bugs.webkit.org/show_bug.cgi?id=153475

Reviewed by Dean Jackson.

Source/WebCore:

Optionally have 2D <canvas> use display-list drawing, which is only enabled
via Internals for now.

Support displayListAsText() and replayDisplayListAsText() on canvas, so we can
use it to test playback optimizations. [Note that displayListAsText() always
returns an empty string currently, because the display list is cleared when the
canvas is painted to the page.]

Display list rendering is implemented by giving CanvasRenderingContext2D an
optional DisplayListDrawingContext, which packages up a display list, recorder
and recording context. The existing paintRenderingResultsToCanvas() is overridden
to replay the recorded display list into the primary canvas context.

Tracked replay display lists are stored in a static map, keyed by the CanvasRenderingContext2D.

Test: displaylists/canvas-display-list.html

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::HTMLCanvasElement):
(WebCore::HTMLCanvasElement::getContext):
(WebCore::HTMLCanvasElement::paint):
(WebCore::HTMLCanvasElement::setUsesDisplayListDrawing):
(WebCore::HTMLCanvasElement::setTracksDisplayListReplay):
(WebCore::HTMLCanvasElement::displayListAsText):
(WebCore::HTMLCanvasElement::replayDisplayListAsText):

  • html/HTMLCanvasElement.h:
  • html/canvas/CanvasRenderingContext.h:
  • html/canvas/CanvasRenderingContext2D.cpp:

(WebCore::DisplayListDrawingContext::DisplayListDrawingContext):
(WebCore::contextDisplayListMap):
(WebCore::CanvasRenderingContext2D::~CanvasRenderingContext2D):
(WebCore::CanvasRenderingContext2D::setTracksDisplayListReplay):
(WebCore::CanvasRenderingContext2D::displayListAsText):
(WebCore::CanvasRenderingContext2D::replayDisplayListAsText):
(WebCore::CanvasRenderingContext2D::paintRenderingResultsToCanvas):
(WebCore::CanvasRenderingContext2D::drawingContext):
(WebCore::CanvasRenderingContext2D::CanvasRenderingContext2D): Deleted.

  • html/canvas/CanvasRenderingContext2D.h:
  • testing/Internals.cpp:

(WebCore::Internals::setElementUsesDisplayListDrawing):
(WebCore::Internals::setElementTracksDisplayListReplay):
(WebCore::Internals::displayListForElement):
(WebCore::Internals::replayDisplayListForElement):

LayoutTests:

Simple canvas-based display list test.

  • displaylists/canvas-display-list-expected.txt: Added.
  • displaylists/canvas-display-list.html: Added.
5:31 PM Changeset in webkit [195645] by commit-queue@webkit.org
  • 2 edits
    4 deletes in trunk/Source/WebInspectorUI

Web Inspector: Remove unused FramesLarge.png variants, only the smaller Frames icon is used for the Rendering Frames timeline
https://bugs.webkit.org/show_bug.cgi?id=153523

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-26
Reviewed by Timothy Hatcher.

  • UserInterface/Images/FramesLarge.png: Removed.
  • UserInterface/Images/FramesLarge@2x.png: Removed.
  • UserInterface/Images/gtk/FramesLarge.png: Removed.
  • UserInterface/Images/gtk/FramesLarge@2x.png: Removed.
  • UserInterface/Views/TimelineIcons.css:

(.rendering-frame-icon.large .icon): Deleted.

5:29 PM Changeset in webkit [195644] by Joseph Pecoraro
  • 19 edits
    5 adds in trunk/Source

Generalize ResourceUsageData gathering to be used outside of ResourceUsageOverlay
https://bugs.webkit.org/show_bug.cgi?id=153509
<rdar://problem/24354291>

Reviewed by Andreas Kling.

Source/JavaScriptCore:

  • heap/Heap.h:
  • heap/HeapInlines.h:

(JSC::Heap::didAllocateBlock):
(JSC::Heap::didFreeBlock):
Rename the ENABLE flag.

Source/WebCore:

  • CMakeLists.txt:
  • PlatformMac.cmake:
  • WebCore.xcodeproj/project.pbxproj:
  • page/Page.cpp:
  • page/Page.h:
  • page/Settings.cpp:
  • page/Settings.h:
  • page/ResourceUsageOverlay.cpp:
  • page/ResourceUsageOverlay.h:

Add new files to the build and updated ENABLE flag name.

  • page/ResourceUsageData.cpp: Added.

(WebCore::ResourceUsageData::ResourceUsageData):

  • page/ResourceUsageData.h: Added.

(WebCore::MemoryCategoryInfo::MemoryCategoryInfo):
Platform agnostic resource data that may be used by multiple clients,
such as the ResourceUsageOverlay and later the Inspector.

  • page/ResourceUsageThread.h: Added.
  • page/ResourceUsageThread.cpp: Added.

(WebCore::ResourceUsageThread::ResourceUsageThread):
(WebCore::ResourceUsageThread::singleton):
(WebCore::ResourceUsageThread::addObserver):
(WebCore::ResourceUsageThread::removeObserver):
(WebCore::ResourceUsageThread::waitUntilObservers):
(WebCore::ResourceUsageThread::notifyObservers):
(WebCore::ResourceUsageThread::createThreadIfNeeded):
(WebCore::ResourceUsageThread::threadCallback):
(WebCore::ResourceUsageThread::threadBody):
Platform agnostic resource usage thread that can be used to gather data
into a ResourceUsageData struct on a background thread and notify observers
on the main thread. Platforms need only implement ResourceUsageThread::platformThreadBody
to populate the ResourceUsageData struct with data.

  • page/cocoa/ResourceUsageOverlayCocoa.mm:

(WebCore::HistoricMemoryCategoryInfo::HistoricMemoryCategoryInfo):
(WebCore::HistoricResourceUsageData::HistoricResourceUsageData):
(WebCore::historicUsageData):
(WebCore::appendDataToHistory):
(WebCore::ResourceUsageOverlay::platformInitialize):
(WebCore::ResourceUsageOverlay::platformDestroy):
(WebCore::drawMemHistory):
(WebCore::drawMemoryPie):
(WebCore::ResourceUsageOverlay::platformDraw):
Move CPU and memory resource usage calculations to ResourceUsageThread.
The overlay adds itself as an observer, and builds its RingBuffer list
of data from notifications from the ResourceUsageThread. Renamed
some of the fields.

  • page/cocoa/ResourceUsageThreadCocoa.mm: Added.

(WebCore::vmPageSize):
(WebCore::TagInfo::TagInfo):
(WebCore::pagesPerVMTag):
(WebCore::cpuUsage):
(WebCore::categoryForVMTag):
(WebCore::ResourceUsageThread::platformThreadBody):
Extracted from ResourceUsageOverlayCocoa.

  • page/scrolling/ScrollingThread.cpp:

(WebCore::ScrollingThread::dispatch):
Drive-by, don't call singleton again, we already have the result.

Source/WebKit2:

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::updatePreferences):
Rename the ENABLE flag.

Source/WTF:

  • wtf/Platform.h:

Rename the ENABLE flag.

5:22 PM Changeset in webkit [195643] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

Use initializers in HTMLCanvasElement
https://bugs.webkit.org/show_bug.cgi?id=153472

Reviewed by Michael Catanzaro.

Use initializers, and re-order member variables for better packing.

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::HTMLCanvasElement):

  • html/HTMLCanvasElement.h:
5:16 PM Changeset in webkit [195642] by Chris Dumez
  • 3 edits
    2 adds in trunk

Setting HTMLInputElement.value to null to set its value to the empty string
https://bugs.webkit.org/show_bug.cgi?id=153519

Reviewed by Ryosuke Niwa.

Source/WebCore:

Setting HTMLInputElement.value to null to set its value to the empty string:

WebKit would previously unset the value attribute instead, which caused
it to fallback to input.defaultValue if set.

Firefox and Chrome behave correctly.

Test: fast/dom/HTMLInputElement/input-value-set-null.html

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::setValue):

LayoutTests:

Add a layout test to make sure that setting HTMLInputElement.value to null
actually sets its value to the empty string.

  • fast/dom/HTMLInputElement/input-value-set-null-expected.txt: Added.
  • fast/dom/HTMLInputElement/input-value-set-null.html: Added.
5:11 PM Changeset in webkit [195641] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit2

Unreviewed, rolling out r195602.
https://bugs.webkit.org/show_bug.cgi?id=153526

broke more than it fixed (Requested by thorton on #webkit).

Reverted changeset:

"REGRESSION (r194557): Keyboard shortcuts stop working after
the WKWebView is unparented and reparented"
https://bugs.webkit.org/show_bug.cgi?id=153492
http://trac.webkit.org/changeset/195602

5:10 PM Changeset in webkit [195640] by Csaba Osztrogonác
  • 2 edits in trunk/Source/JavaScriptCore

[B3] Fix control reaches end of non-void function GCC warning after r195139
https://bugs.webkit.org/show_bug.cgi?id=153426

Reviewed by Michael Catanzaro.

  • b3/air/AirArg.h:

(JSC::B3::Air::Arg::cooled):

4:57 PM Changeset in webkit [195639] by sbarati@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

testb3 and testAir should be compiled under -O0
https://bugs.webkit.org/show_bug.cgi?id=153520

Reviewed by Benjamin Poulain.

4:52 PM Changeset in webkit [195638] by Chris Dumez
  • 2 edits in trunk/LayoutTests

Unreviewed, temporarily skip fast/history/page-cache-webdatabase-no-transaction-db.html
https://bugs.webkit.org/show_bug.cgi?id=153525

The test flakily crashes, skip it until I can fix it.

4:49 PM Changeset in webkit [195637] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

B3's integer range analysis should know that Mul'ing two sufficiently small numbers will yield a number that still has a meaningful range
https://bugs.webkit.org/show_bug.cgi?id=153518

Reviewed by Benjamin Poulain.

Octane/encrypt had an addition overflow check that can be proved away by being sufficiently
sneaky about the analysis of adds, multiplies, and shifts.

I almost added these optimizations to the DFG integer range optimization phase. That phase is
very complicated. B3's integer range analysis is trivial. So I added it to B3. Eventually
we'll want this same machinery in the DFG also.

8% speed-up on Octane/encrypt.

  • b3/B3ReduceStrength.cpp:
  • b3/B3Value.cpp:

(JSC::B3::Value::dump): Dumping a constant value's name now dumps its value. This makes a huge difference for reading IR.
(JSC::B3::Value::cloneImpl):
(JSC::B3::Value::deepDump):

4:33 PM Changeset in webkit [195636] by Ryan Haddad
  • 2 edits
    1 delete in trunk/LayoutTests

Rebaseline imported/w3c/web-platform-tests/html/semantics/interfaces.html for ios-simulator after support
for HTMLDataElement was added in r195627, removing ios-simulator-wk2 specific result.
https://bugs.webkit.org/show_bug.cgi?id=153459

Unreviewed test gardening.

  • platform/ios-simulator-wk2/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt: Removed.
  • platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt:
4:29 PM Changeset in webkit [195635] by andersca@apple.com
  • 8 edits in trunk/Source

WebKitAdditions should be able to modify derived source rules
https://bugs.webkit.org/show_bug.cgi?id=153514

Reviewed by Tim Horton.

Source/WebCore:

  • DerivedSources.make:

Include WebCoreDerivedSourcesAdditions.make.

  • WebCore.xcodeproj/project.pbxproj:

Pass our WebKitAdditions paths as include paths to make.

Source/WebKit2:

  • Configurations/BaseTarget.xcconfig:
  • Configurations/WebKit.xcconfig:

Set WEBKITADDITIONS_HEADER_SEARCH_PATHS.

  • DerivedSources.make:

Move the path computation earlier and include WebKitDerivedSourcesAdditions.make.

  • WebKit2.xcodeproj/project.pbxproj:

Pass our WebKitAdditions paths as include paths to make.

4:08 PM Changeset in webkit [195634] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skipping tests added with r195625 that are unsupported on ios-simulator

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
4:02 PM Changeset in webkit [195633] by bshafiei@apple.com
  • 2 edits in tags/Safari-602.1.17.0.2/Source/WTF

Merged r195629. rdar://problem/24322314

4:01 PM Changeset in webkit [195632] by bshafiei@apple.com
  • 11 edits in tags/Safari-602.1.17.0.2

Merged r195582. rdar://problem/24356482

3:59 PM Changeset in webkit [195631] by bshafiei@apple.com
  • 5 edits in tags/Safari-602.1.17.0.2/Source

Versioning.

3:56 PM Changeset in webkit [195630] by bshafiei@apple.com
  • 1 copy in tags/Safari-602.1.17.0.2

New tag.

3:46 PM Changeset in webkit [195629] by achristensen@apple.com
  • 2 edits in trunk/Source/WTF

Make HashTable iterators STL iterators compatible
https://bugs.webkit.org/show_bug.cgi?id=153512

Patch by Yusuke Suzuki <Yusuke Suzuki> on 2016-01-26
Reviewed by Alex Christensen.

While r178581 makes many hash table iterators STL compatible, still several iterators are not.
This patch fixes that; inheriting std::iterator correctly to meet STL iterator requirements (like iterator_category etc.)
It could recover Windows build failure.

  • wtf/HashTable.h:
3:22 PM Changeset in webkit [195628] by Chris Dumez
  • 3 edits
    3 adds in trunk

document.open() / write() should be prevented in beforeunload event handlers
https://bugs.webkit.org/show_bug.cgi?id=153432

Reviewed by Ryosuke Niwa.

Source/WebCore:

document.open() / write() should be prevented in beforeunload event handlers:

Test: fast/frames/page-beforeunload-document-open.html

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::dispatchBeforeUnloadEvent):

LayoutTests:

Add a layout test to check that document.open() / write() is indeed
prevented inside 'beforeunload' event handlers.

  • fast/frames/page-beforeunload-document-open-expected.txt: Added.
  • fast/frames/page-beforeunload-document-open.html: Added.
  • fast/frames/resources/page-beforeunload-document-open-frame.html: Added.
3:21 PM Changeset in webkit [195627] by Chris Dumez
  • 20 edits
    3 adds in trunk

Add support for HTMLDataElement
https://bugs.webkit.org/show_bug.cgi?id=153459

Reviewed by Ryosuke Niwa.

LayoutTests/imported/w3c:

Rebaseline existing W3C tests now that more checks are passing.

  • web-platform-tests/dom/nodes/Node-cloneNode-expected.txt:
  • web-platform-tests/html/dom/interfaces-expected.txt:
  • web-platform-tests/html/semantics/interfaces-expected.txt:

Source/WebCore:

Add support for HTMLDataElement:
https://html.spec.whatwg.org/multipage/semantics.html#the-data-element

Firefox already supports it.

No new tests, already covered by existing tests.

  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:
  • html/HTMLDataElement.cpp: Added.

(WebCore::HTMLDataElement::create):
(WebCore::HTMLDataElement::HTMLDataElement):

  • html/HTMLDataElement.h: Added.
  • html/HTMLDataElement.idl: Added.
  • html/HTMLElementsAllInOne.cpp:
  • html/HTMLTagNames.in:

LayoutTests:

Rebaseline existing test now that HTMLDataElement is exposed on the
global Window object.

  • platform/efl/js/dom/global-constructors-attributes-expected.txt:
  • platform/gtk/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac/js/dom/global-constructors-attributes-expected.txt:
  • platform/win/js/dom/global-constructors-attributes-expected.txt:
3:14 PM Changeset in webkit [195626] by Ryan Haddad
  • 3 edits
    2 deletes in trunk

Unreviewed, rolling out r195610.
https://bugs.webkit.org/show_bug.cgi?id=153513

The test added with this change is timing out on almost every
run (Requested by ryanhaddad on #webkit).

Reverted changeset:

"Calling video.controls=true during a scrub operation cancels
scrub."
https://bugs.webkit.org/show_bug.cgi?id=153494
http://trac.webkit.org/changeset/195610

Patch by Commit Queue <commit-queue@webkit.org> on 2016-01-26

2:48 PM Changeset in webkit [195625] by beidson@apple.com
  • 6 edits
    26 adds in trunk

History.pushState causes intense memory pressure.
https://bugs.webkit.org/show_bug.cgi?id=153435

Reviewed by Sam Weinig, Oliver Hunt, and Geoff Garen.

Source/WebCore:

Tests: fast/loader/stateobjects/pushstate-frequency-iframe.html

fast/loader/stateobjects/pushstate-frequency-with-user-gesture.html
fast/loader/stateobjects/pushstate-frequency.html
fast/loader/stateobjects/replacestate-frequency-iframe.html
fast/loader/stateobjects/replacestate-frequency-with-user-gesture.html
fast/loader/stateobjects/replacestate-frequency.html
loader/stateobjects/pushstate-size-iframe.html
loader/stateobjects/pushstate-size.html
loader/stateobjects/replacestate-size-iframe.html
loader/stateobjects/replacestate-size.html

Add restrictions on how frequently push/replaceState can be called,
as well as how much of a cumulative payload they can deliver.

  • bindings/js/JSHistoryCustom.cpp:

(WebCore::JSHistory::pushState):
(WebCore::JSHistory::replaceState):

  • page/History.cpp:

(WebCore::History::stateObjectAdded):

  • page/History.h:

LayoutTests:

  • fast/loader/stateobjects/pushstate-frequency-expected.txt: Added.
  • fast/loader/stateobjects/pushstate-frequency-iframe-expected.txt: Added.
  • fast/loader/stateobjects/pushstate-frequency-iframe.html: Added.
  • fast/loader/stateobjects/pushstate-frequency-with-user-gesture-expected.txt: Added.
  • fast/loader/stateobjects/pushstate-frequency-with-user-gesture.html: Added.
  • fast/loader/stateobjects/pushstate-frequency.html: Added.
  • fast/loader/stateobjects/replacestate-frequency-expected.txt: Added.
  • fast/loader/stateobjects/replacestate-frequency-iframe-expected.txt: Added.
  • fast/loader/stateobjects/replacestate-frequency-iframe.html: Added.
  • fast/loader/stateobjects/replacestate-frequency-with-user-gesture-expected.txt: Added.
  • fast/loader/stateobjects/replacestate-frequency-with-user-gesture.html: Added.
  • fast/loader/stateobjects/replacestate-frequency.html: Added.
  • fast/loader/stateobjects/resources/pushstate-iframe.html: Added.
  • fast/loader/stateobjects/resources/replacestate-iframe.html: Added.
  • loader/stateobjects/pushstate-size-expected.txt: Added.
  • loader/stateobjects/pushstate-size-iframe-expected.txt: Added.
  • loader/stateobjects/pushstate-size-iframe.html: Added.
  • loader/stateobjects/pushstate-size.html: Added.
  • loader/stateobjects/replacestate-size-expected.txt: Added.
  • loader/stateobjects/replacestate-size-iframe-expected.txt: Added.
  • loader/stateobjects/replacestate-size-iframe.html: Added.
  • loader/stateobjects/replacestate-size.html: Added.
  • loader/stateobjects/resources/pushstate-iframe.html: Added.
  • loader/stateobjects/resources/replacestate-iframe.html: Added.
2:22 PM Changeset in webkit [195624] by Ryan Haddad
  • 1 edit
    2 adds in trunk/LayoutTests

Rebaselining cssom/subpixel-offsetleft-top-width-height-values.html for ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=152308

Unreviewed test gardening.

  • platform/ios-simulator/cssom/subpixel-offsetleft-top-width-height-values-expected.txt: Added.
2:22 PM Changeset in webkit [195623] by andersca@apple.com
  • 5 edits in trunk/Source/WebKit2

Add a private WKUIDelegate method for getting a presenting view controller for a WKWebView on iOS
https://bugs.webkit.org/show_bug.cgi?id=153510

Reviewed by Dan Bernstein.

  • UIProcess/API/APIUIClient.h:

(API::UIClient::presentingViewController):

  • UIProcess/API/Cocoa/WKUIDelegatePrivate.h:
  • UIProcess/Cocoa/UIDelegate.h:
  • UIProcess/Cocoa/UIDelegate.mm:

(WebKit::UIDelegate::setDelegate):
(WebKit::UIDelegate::UIClient::presentingViewController):

2:20 PM Changeset in webkit [195622] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

It should be possible to disable FTL for a range like we disable DFG for a range
https://bugs.webkit.org/show_bug.cgi?id=153511

Reviewed by Geoffrey Garen.

  • dfg/DFGTierUpCheckInjectionPhase.cpp:

(JSC::DFG::TierUpCheckInjectionPhase::run):

  • runtime/Options.h:
2:07 PM Changeset in webkit [195621] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Shifts by an amount computed using BitAnd with a mask that subsumes the shift's own mask should be rewired around the BitAnd
https://bugs.webkit.org/show_bug.cgi?id=153505

Reviewed by Saam Barati.

Turn this: Shl(@x, BitAnd(@y, 63))
Into this: Shl(@x, @y)

It matters for Octane/crypto.

We should also stop FTL from generating such code, but even if we did that, we'd still want
this optimization in case user code did the BitAnd.

Also we can't stop the FTL from generating such code yet, because when targetting LLVM, you
must mask your shifts this way.

  • b3/B3ReduceStrength.cpp:
2:05 PM Changeset in webkit [195620] by fpizlo@apple.com
  • 24 edits
    2 moves
    2 adds in trunk/Source/JavaScriptCore

The thing that B3 uses to describe a stack slot should not be a Value
https://bugs.webkit.org/show_bug.cgi?id=153491
rdar://problem/24349446

Reviewed by Geoffrey Garen and Saam Barati.

Prior to this change, B3 represented stack slots by having a StackSlotValue that carried
two meanings:

  • It represented a stack slot.
  • It was a kind of Value for getting the base of the stack slot.

This seems like a good idea until you consider the following issues.

1) A Value can be killed if it is on an unreachable path, or if it has no effects and

nobody refers to it. But the FTL uses StackSlotValue to allocate space on the stack.
When it does this, it doesn't want it to be killed. It will dereference the object, so
killing it is a bug.

2) A premise of B3 is that it should be always legal to perform the following

transformation on a value:

value->replaceWithIdentity(insertionSet.insertValue(index, proc.clone(value)));

This inserts a new value just before the old one. The new value is a clone of the old
one. Then the old one is essentially deleted (anything that becomes an identity dies
shortly thereafter). Problem (1) prevents this from being legal, which breaks a major
premise of B3 IR.

3) A premise of B3 is that it should be always legal to perform the following

transformation on a value:

Before:

@42 = Thing(...)

After:

Branch(@doesntMatter, #yes, #no)

BB#yes:

@42_one = Thing(...)
Upsilon(@42_one, 42)
Jump(#done)

BB#no:

@42_two = Thing(...)
Upsilon(@42_two, 42)
Jump(#done)

BB#done:

@42 = Phi()

But prior to this change, such a transformation makes absolutely no sense for
StackSlot. It will "work" in the sense that the compiler will proceed undaunted, but
it will disable SSA fix-up for the cloned stack slot and we will end up allocating two
stack slots instead of one, and then we will assume that they both escape, which will
disable efficient stack allocation. Note that the moral equivalent of this
transformation could already happen due to tail duplication, and the only reason why
it's not a bug right now is that we happen to hoist stack slots to the root block. But
the whole point of our stack slots was supposed to be that they do not have to be
hoisted.

This change fixes this issue by splitting StackSlotValue into two things: SlotBaseValue,
which is a pure operation for getting the base address of a StackSlot, and StackSlot,
which is a representation of the actual stack slot. StackSlot cannot get duplicated and
can only be killed if it's anonymous. SlotBaseValue can be killed, moved, cloned,
hoisted, etc. Since it has no effects and it has a ValueKey, it's one of the most
permissive Values in the IR, just as one would hope (after all, there is actually zero
code that needs to execute to evaluate SlotBaseValue).

This fixes a crash that we saw with GuardMalloc and ASan. It also makes the IR a lot more
easy to reason about.

  • CMakeLists.txt:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • b3/B3EliminateCommonSubexpressions.cpp:
  • b3/B3FixSSA.cpp:

(JSC::B3::demoteValues):
(JSC::B3::fixSSA):

  • b3/B3LowerToAir.cpp:

(JSC::B3::Air::LowerToAir::run):
(JSC::B3::Air::LowerToAir::effectiveAddr):
(JSC::B3::Air::LowerToAir::lower):

  • b3/B3Opcode.cpp:

(WTF::printInternal):

  • b3/B3Opcode.h:
  • b3/B3Procedure.cpp:

(JSC::B3::Procedure::setBlockOrderImpl):
(JSC::B3::Procedure::addStackSlot):
(JSC::B3::Procedure::addAnonymousStackSlot):
(JSC::B3::Procedure::clone):
(JSC::B3::Procedure::dump):
(JSC::B3::Procedure::blocksInPostOrder):
(JSC::B3::Procedure::deleteStackSlot):
(JSC::B3::Procedure::deleteValue):
(JSC::B3::Procedure::calleeSaveRegisters):
(JSC::B3::Procedure::addStackSlotIndex):
(JSC::B3::Procedure::addValueIndex):

  • b3/B3Procedure.h:

(JSC::B3::Procedure::setBlockOrder):
(JSC::B3::Procedure::StackSlotsCollection::StackSlotsCollection):
(JSC::B3::Procedure::StackSlotsCollection::size):
(JSC::B3::Procedure::StackSlotsCollection::at):
(JSC::B3::Procedure::StackSlotsCollection::operator[]):
(JSC::B3::Procedure::StackSlotsCollection::iterator::iterator):
(JSC::B3::Procedure::StackSlotsCollection::iterator::operator*):
(JSC::B3::Procedure::StackSlotsCollection::iterator::operator++):
(JSC::B3::Procedure::StackSlotsCollection::iterator::operator==):
(JSC::B3::Procedure::StackSlotsCollection::iterator::operator!=):
(JSC::B3::Procedure::StackSlotsCollection::iterator::findNext):
(JSC::B3::Procedure::StackSlotsCollection::begin):
(JSC::B3::Procedure::StackSlotsCollection::end):
(JSC::B3::Procedure::stackSlots):
(JSC::B3::Procedure::ValuesCollection::ValuesCollection):

  • b3/B3ReduceStrength.cpp:
  • b3/B3SlotBaseValue.cpp: Copied from Source/JavaScriptCore/b3/B3StackSlotValue.cpp.

(JSC::B3::SlotBaseValue::~SlotBaseValue):
(JSC::B3::SlotBaseValue::dumpMeta):
(JSC::B3::SlotBaseValue::cloneImpl):
(JSC::B3::StackSlotValue::~StackSlotValue): Deleted.
(JSC::B3::StackSlotValue::dumpMeta): Deleted.
(JSC::B3::StackSlotValue::cloneImpl): Deleted.

  • b3/B3SlotBaseValue.h: Copied from Source/JavaScriptCore/b3/B3StackSlotValue.h.
  • b3/B3StackSlot.cpp: Added.

(JSC::B3::StackSlot::~StackSlot):
(JSC::B3::StackSlot::dump):
(JSC::B3::StackSlot::deepDump):
(JSC::B3::StackSlot::StackSlot):

  • b3/B3StackSlot.h: Added.

(JSC::B3::StackSlot::byteSize):
(JSC::B3::StackSlot::kind):
(JSC::B3::StackSlot::isLocked):
(JSC::B3::StackSlot::index):
(JSC::B3::StackSlot::offsetFromFP):
(JSC::B3::StackSlot::setOffsetFromFP):
(JSC::B3::DeepStackSlotDump::DeepStackSlotDump):
(JSC::B3::DeepStackSlotDump::dump):
(JSC::B3::deepDump):

  • b3/B3StackSlotValue.cpp: Removed.
  • b3/B3StackSlotValue.h: Removed.
  • b3/B3Validate.cpp:
  • b3/B3Value.cpp:

(JSC::B3::Value::effects):
(JSC::B3::Value::key):
(JSC::B3::Value::checkOpcode):

  • b3/B3ValueKey.cpp:

(JSC::B3::ValueKey::materialize):

  • b3/air/AirCode.cpp:

(JSC::B3::Air::Code::addBlock):
(JSC::B3::Air::Code::addStackSlot):
(JSC::B3::Air::Code::addSpecial):

  • b3/air/AirCode.h:
  • b3/air/AirStackSlot.cpp:

(JSC::B3::Air::StackSlot::setOffsetFromFP):
(JSC::B3::Air::StackSlot::dump):
(JSC::B3::Air::StackSlot::deepDump):
(JSC::B3::Air::StackSlot::StackSlot):

  • b3/air/AirStackSlot.h:

(JSC::B3::Air::StackSlot::alignment):
(JSC::B3::Air::StackSlot::b3Slot):
(JSC::B3::Air::StackSlot::offsetFromFP):
(WTF::printInternal):
(JSC::B3::Air::StackSlot::value): Deleted.

  • b3/testb3.cpp:

(JSC::B3::testStackSlot):
(JSC::B3::testStoreLoadStackSlot):

  • ftl/FTLB3Compile.cpp:
  • ftl/FTLB3Output.cpp:

(JSC::FTL::Output::appendTo):
(JSC::FTL::Output::lockedStackSlot):
(JSC::FTL::Output::neg):

  • ftl/FTLB3Output.h:

(JSC::FTL::Output::framePointer):
(JSC::FTL::Output::constBool):
(JSC::FTL::Output::constInt32):

  • ftl/FTLLowerDFGToLLVM.cpp:

(JSC::FTL::DFG::LowerDFGToLLVM::lower):

  • ftl/FTLState.h:
1:55 PM Changeset in webkit [195619] by timothy@apple.com
  • 1 edit
    3 adds in branches/safari-601-branch/Source/WebInspectorUI

Merge r195323. rdar://problem/24302730

1:43 PM Changeset in webkit [195618] by matthew_hanson@apple.com
  • 2 edits in branches/safari-601.1.46-branch/Source/WebCore

Merge r195606. rdar://problem/24243317

1:38 PM Changeset in webkit [195617] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[webkitdirs] Removed check for bison, gperf, and flex.
https://bugs.webkit.org/show_bug.cgi?id=153496

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-26
Reviewed by Alex Christensen.

This prerequisites are checked in WebKitCommon.cmake and don't
have to be in $PATH.

  • Scripts/webkitdirs.pm:

(checkRequiredSystemConfig):

1:22 PM Changeset in webkit [195616] by andersca@apple.com
  • 2 edits in trunk/Source/WebCore

Add a Dictionary overload that returns an Optional result
https://bugs.webkit.org/show_bug.cgi?id=153507

Reviewed by Tim Horton.

  • bindings/js/Dictionary.h:

(WebCore::Dictionary::get):

1:19 PM Changeset in webkit [195615] by matthew_hanson@apple.com
  • 6 edits in branches/safari-601.1.46-branch

Re-enable synchronous popstate event for safari-601-branch

1:19 PM Changeset in webkit [195614] by commit-queue@webkit.org
  • 8 edits
    8 adds in trunk

Let SVG images not taint canvases except when containing foreignObjects
https://bugs.webkit.org/show_bug.cgi?id=119639

Patch by Philip Rogers <pdr@chromium.org> on 2016-01-26
Reviewed by Brent Fulgham.

Source/WebCore:

r153876 caused SVG images to not taint canvases but the patch allowed
for subimage resources. This can be a problem if a subimage (e.g., data
uri image) contains a foreignObject which can violate security (e.g.,
visited links).

This patch updates SVGImage::hasSingleSecurityOrigin to check if the
image contains any foreignObjects or images that themselves contain
foreignObjects. SVG images without foreignObjects are allowed to not
taint canvases.

Canvas patterns are problematic because an animated SVG image can switch
between tainting and not tainting the canvas. A FIXME has been added to
solve this, and in the meantime we cause SVG images to taint patterns.

Tests: svg/as-image/svg-canvas-pattern-with-link-tainted.html

svg/as-image/svg-canvas-svg-with-feimage-with-link-tainted.html
svg/as-image/svg-canvas-svg-with-image-with-link-tainted.html

  • html/canvas/CanvasPattern.cpp:

(WebCore::CanvasPattern::CanvasPattern):
(WebCore::CanvasPattern::~CanvasPattern):

  • svg/SVGFEImageElement.cpp:

(WebCore::SVGFEImageElement::~SVGFEImageElement):
(WebCore::SVGFEImageElement::hasSingleSecurityOrigin):
(WebCore::SVGFEImageElement::clearResourceReferences):

  • svg/SVGFEImageElement.h:
  • svg/SVGImageElement.cpp:

(WebCore::SVGImageElement::create):
(WebCore::SVGImageElement::hasSingleSecurityOrigin):
(WebCore::SVGImageElement::isSupportedAttribute):

  • svg/SVGImageElement.h:
  • svg/graphics/SVGImage.cpp:

(WebCore::SVGImage::hasSingleSecurityOrigin):

LayoutTests:

  • svg/as-image/resources/svg-with-feimage-with-link.svg: Added.
  • svg/as-image/resources/svg-with-image-with-link.svg: Added.
  • svg/as-image/svg-canvas-pattern-with-link-tainted-expected.txt: Added.
  • svg/as-image/svg-canvas-pattern-with-link-tainted.html: Added.
  • svg/as-image/svg-canvas-svg-with-feimage-with-link-tainted-expected.txt: Added.
  • svg/as-image/svg-canvas-svg-with-feimage-with-link-tainted.html: Added.
  • svg/as-image/svg-canvas-svg-with-image-with-link-tainted-expected.txt: Added.
  • svg/as-image/svg-canvas-svg-with-image-with-link-tainted.html: Added.
1:14 PM Changeset in webkit [195613] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[webkitdirs] isCMakeBuild should be true by default
https://bugs.webkit.org/show_bug.cgi?id=153497

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-26
Reviewed by Michael Catanzaro.

  • Scripts/webkitdirs.pm:

(isCMakeBuild):

1:12 PM Changeset in webkit [195612] by Michael Catanzaro
  • 2 edits in trunk/Source/WebCore

CSSGrammar.y:1742.31-34: warning: unused value: $3
https://bugs.webkit.org/show_bug.cgi?id=153462

Reviewed by Alex Christensen.

This warning indicates that we have a memory leak. From the bison manual:

"Right-hand side symbols of a rule that explicitly triggers a syntax error via YYERROR are
not discarded automatically. As a rule of thumb, destructors are invoked only when user
actions cannot manage the memory."

Arguably a design error, but that's how it is.

  • css/CSSGrammar.y.in:
1:09 PM Changeset in webkit [195611] by andersca@apple.com
  • 2 edits in trunk/Source/WTF

BlockPtr needs boolean operators
https://bugs.webkit.org/show_bug.cgi?id=153506

Reviewed by Tim Horton.

  • wtf/BlockPtr.h:
12:58 PM Changeset in webkit [195610] by jer.noble@apple.com
  • 3 edits
    2 adds in trunk

Calling video.controls=true during a scrub operation cancels scrub.
https://bugs.webkit.org/show_bug.cgi?id=153494

Reviewed by Eric Carlson.

Source/WebCore:

Test: media/media-controls-drag-timeline-set-controls-property.html

Verify that the video.controls attribute actually changed before tearing down and
re-adding the media controls to the Shadow DOM.

  • Modules/mediacontrols/mediaControlsApple.js:

(Controller.prototype.handleControlsChange):
(Controller.prototype.hasControls):

LayoutTests:

  • media/media-controls-drag-timeline-set-controls-property-expected.txt: Added.
  • media/media-controls-drag-timeline-set-controls-property.html: Added.
12:45 PM Changeset in webkit [195609] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

[EME][Mac] Crash in [AVStreamSession addStreamDataParser:]; uncaught exception
https://bugs.webkit.org/show_bug.cgi?id=153495

Reviewed by Eric Carlson.

When AVContentKeySession is not available, fall back to pre-AVContentKeySession behavior;
namely, immediately create an AVStreamSession object in
willProvideContentKeyRequestInitializationData, rather than waiting for didProvide.

  • platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm:

(WebCore::SourceBufferPrivateAVFObjC::willProvideContentKeyRequestInitializationDataForTrackID):

12:30 PM Changeset in webkit [195608] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking svg/dom/SVGScriptElement/script-change-externalResourcesRequired-while-loading.svg as flaky on ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=153498

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
12:09 PM Changeset in webkit [195607] by dino@apple.com
  • 10 edits
    3 adds in trunk

[iOS] Documents without an explicit width should not get fast tapping
https://bugs.webkit.org/show_bug.cgi?id=153465
Source/WebCore:

<rdar://problem/23962529>

Reviewed by Simon Fraser (and Wenson Hseih).

As the title says, documents that do not set a viewport should
not get the fast click behaviour. There were complaints that we broke
double-tap to scroll in ImageDocuments where the image was narrow and long.

The fix is to just keep a flag that tells the UI process if the
width was explicit. However, it turns out that those ImageDocuments
are given an explicit device-width, which is fine for scaling but
really should behave as auto for fast tapping. So we also need
to tell the UIProcess if the viewport arguments came from an
ImageDocument.

Test: fast/events/ios/viewport-no-width-value-allows-double-tap.html

  • dom/ViewportArguments.cpp:

(WebCore::findSizeValue): Add a parameter that toggles a flag
if the size was explicitly set.
(WebCore::setViewportFeature): Remember if the width was
explicit.

  • dom/ViewportArguments.h: Add a widthWasExplicit flag.

(WebCore::ViewportArguments::operator==):

Source/WebKit2:

<rdar://problem/23962529>

Reviewed by Simon Fraser (and Wenson Hseih).

As the title says, documents that do not set a viewport should
not get the fast click behaviour. There were complaints that we broke
double-tap to scroll in ImageDocuments where the image was narrow and long.

The fix is to just keep a flag that tells the UI process if the
width was explicit. However, it turns out that those ImageDocuments
are given an explicit device-width, which is fine for scaling but
really should behave as auto for fast tapping. So we also need
to tell the UIProcess if the viewport arguments came from an
ImageDocument.

  • Shared/mac/RemoteLayerTreeTransaction.h: Add two new flags into

the transaction.
(WebKit::RemoteLayerTreeTransaction::viewportMetaTagWidthWasExplicit):
(WebKit::RemoteLayerTreeTransaction::setViewportMetaTagWidthWasExplicit):
(WebKit::RemoteLayerTreeTransaction::viewportMetaTagCameFromImageDocument):
(WebKit::RemoteLayerTreeTransaction::setViewportMetaTagCameFromImageDocument):

  • Shared/mac/RemoteLayerTreeTransaction.mm:

(WebKit::RemoteLayerTreeTransaction::encode):
(WebKit::RemoteLayerTreeTransaction::decode):
(WebKit::RemoteLayerTreeTransaction::description):

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _didCommitLayerTree:]): Notice whether or not the viewport
width was explicit.
(-[WKWebView _allowsDoubleTapGestures]): Return yes if the width
was not explicit, or if the viewport came from an ImageDocument.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::willCommitLayerTree):

LayoutTests:

Reviewed by Simon Fraser (and Wenson Hseih).

  • fast/events/ios/thin-gradient.jpg: Added.
  • fast/events/ios/viewport-no-width-value-allows-double-tap-expected.txt: Added.
  • fast/events/ios/viewport-no-width-value-allows-double-tap.html: Added.
  • platform/ios-simulator/TestExpectations:
12:07 PM Changeset in webkit [195606] by hyatt@apple.com
  • 2 edits in trunk/Source/WebCore

Speculative fixes for crashing in viewportChangeAffectedPicture
https://bugs.webkit.org/show_bug.cgi?id=153450

Reviewed by Dean Jackson.

Don't attach any conditions to the removal of a picture element from
the document's HashSet. This ensures that if the condition is ever
wrong for any reason, we'll still remove the picture element on
destruction.

Fix the media query evaluation to match the other evaluations (used by
the preload scanner and HTMLImageElement). This includes using the
document element's computed style instead of our own and also null
checking the document element first. This is the likely cause of the
crashes.

  • html/HTMLPictureElement.cpp:

(WebCore::HTMLPictureElement::~HTMLPictureElement):
(WebCore::HTMLPictureElement::didMoveToNewDocument):
(WebCore::HTMLPictureElement::viewportChangeAffectedPicture):

11:57 AM Changeset in webkit [195605] by Chris Dumez
  • 6 edits in trunk/Source/WebCore

Make sure a page is still PageCache-able after firing the 'pagehide' events
https://bugs.webkit.org/show_bug.cgi?id=153449

Reviewed by Andreas Kling.

Make sure a page is still PageCache-able after firing the 'pagehide'
events and abort if it isn't. This should improve robustness and it is
easy for pagehide event handlers to do things that would make a Page no
longer PageCache-able and this leads to bugs that are difficult to
investigate.

To achieve this, the 'pagehide' event firing logic was moved out of the
CachedFrame constructor. It now happens earlier in
PageCache::addIfCacheable() after checking if the page is cacheable and
before constructing the CachedPage / CachedFrames. After firing the
'pagehide' event in PageCache::addIfCacheable(), we check again that
the page is still cacheable and we abort early if it is not.

  • history/CachedFrame.cpp:

(WebCore::CachedFrame::CachedFrame):

  • history/PageCache.cpp:

(WebCore::setInPageCache):
(WebCore::firePageHideEventRecursively):
(WebCore::PageCache::addIfCacheable):

  • history/PageCache.h:
  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::commitProvisionalLoad):

11:33 AM Changeset in webkit [195604] by benjamin@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

Remove a useless #include
https://bugs.webkit.org/show_bug.cgi?id=153474

Reviewed by Alexey Proskuryakov.

  • b3/B3ReduceStrength.cpp:
11:28 AM Changeset in webkit [195603] by Beth Dakin
  • 2 edits in trunk/Source/WebCore

Rubber-stamped by Tim Horton.

Add one more bit of SPI.

  • platform/spi/mac/NSSpellCheckerSPI.h:
11:12 AM Changeset in webkit [195602] by timothy_horton@apple.com
  • 3 edits in trunk/Source/WebKit2

REGRESSION (r194557): Keyboard shortcuts stop working after the WKWebView is unparented and reparented
https://bugs.webkit.org/show_bug.cgi?id=153492
<rdar://problem/24138989>

Reviewed by Dan Bernstein.

  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView canBecomeFirstResponder]):
(-[WKContentView becomeFirstResponder]):
(-[WKContentView resignFirstResponder]):
When WKWebView is unparented, WKContentView will attempt to resignFirstResponder upwards,
first asking WKWebView. After r194557, WKWebView will accept first responder and forward
it on to the WKContentView, which will happily accept it again, despite being the view
that's trying to resign. This will cause us to completely lose first responder,
where it was actually supposed to propagate up above WKWebView to the client.

Keep track of when WKContentView is resigning first responder, and don't
let it become first responder while it is doing so, breaking the cycle.

11:02 AM Changeset in webkit [195601] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Fix build with ENABLE_DEVICE_ORIENTATION on non-iOS platforms
https://bugs.webkit.org/show_bug.cgi?id=153490

Patch by Olivier Blin <Olivier Blin> on 2016-01-26
Reviewed by Michael Catanzaro.

This has been broken since r178702, which changed the Page
argument from a pointer to a reference in logCanCachePageDecision().

No new tests since this is a build fix.

  • history/PageCache.cpp:

(WebCore::canCachePage):

10:56 AM Changeset in webkit [195600] by adachan@apple.com
  • 5 edits
    9 moves in trunk/Source

Move WebVideoFullscreenManager and related classes from iOS specific folders to cocoa folders
https://bugs.webkit.org/show_bug.cgi?id=153473

Reviewed by Eric Carlson.

Source/WebCore:

No new tests, just moving files.

  • WebCore.xcodeproj/project.pbxproj:

Update due to changes to the file locations.

  • platform/cocoa/WebVideoFullscreenModel.h: Renamed from Source/WebCore/platform/ios/WebVideoFullscreenModel.h.
  • platform/cocoa/WebVideoFullscreenModelVideoElement.h: Renamed from Source/WebCore/platform/ios/WebVideoFullscreenModelVideoElement.h.

(WebCore::WebVideoFullscreenModelVideoElement::create):
Fix a style error by moving the opening curly brace down one line.

  • platform/cocoa/WebVideoFullscreenModelVideoElement.mm: Renamed from Source/WebCore/platform/ios/WebVideoFullscreenModelVideoElement.mm.

Source/WebKit2:

  • DerivedSources.make:

Add new paths.

  • UIProcess/Cocoa/WebVideoFullscreenManagerProxy.h: Renamed from Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.h.
  • UIProcess/Cocoa/WebVideoFullscreenManagerProxy.messages.in: Renamed from Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.messages.in.
  • UIProcess/Cocoa/WebVideoFullscreenManagerProxy.mm: Renamed from Source/WebKit2/UIProcess/ios/WebVideoFullscreenManagerProxy.mm.

(WebKit::WebVideoFullscreenManagerProxy::setSeekableRangesVector):
Fix a style error by moving the opening curly brace to the same line as the for statement.

  • WebKit2.xcodeproj/project.pbxproj:

Update due to changes to the file locations.

  • WebProcess/cocoa/WebVideoFullscreenManager.h: Renamed from Source/WebKit2/WebProcess/ios/WebVideoFullscreenManager.h.
  • WebProcess/cocoa/WebVideoFullscreenManager.messages.in: Renamed from Source/WebKit2/WebProcess/ios/WebVideoFullscreenManager.messages.in.
  • WebProcess/cocoa/WebVideoFullscreenManager.mm: Renamed from Source/WebKit2/WebProcess/ios/WebVideoFullscreenManager.mm.

(WebKit::WebVideoFullscreenInterfaceContext::setSeekableRanges):
Fix a style error by adding a missing space after a comma.

10:46 AM Changeset in webkit [195599] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skipping fast/events/drag-and-drop-link-fast-multiple-times-does-not-crash.html on ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=138468

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
10:46 AM Changeset in webkit [195598] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking inspector/codemirror/prettyprinting-css-rules.html as flaky on mac-wk1 debug
https://bugs.webkit.org/show_bug.cgi?id=153460

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
10:40 AM Changeset in webkit [195597] by dbates@webkit.org
  • 4 edits
    2 adds
    1 delete in trunk

Add WebKitSystemInterface for iOS 9.2
https://bugs.webkit.org/show_bug.cgi?id=153355

Rubber-stamped by David Kilzer.

Tools:

  • Scripts/copy-webkitlibraries-to-product-directory:

WebKitLibraries:

  • WebKitSystemInterface.h:
  • WebKitSystemInterfaceIOS.h: Removed.
  • libWebKitSystemInterfaceIOSDevice9.2.a: Added.
  • libWebKitSystemInterfaceIOSSimulator9.2.a: Added.
10:37 AM Changeset in webkit [195596] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Do not convert GlyphBufferAdvance to FloatSize
https://bugs.webkit.org/show_bug.cgi?id=153429

GlyphBufferAdvance is not necessaryly convertible to FloatSize.
Also, this code was doing extra work by transforming height value.

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-26
Reviewed by Antti Koivisto.

No new tests needed.

  • rendering/svg/SVGTextRunRenderingContext.cpp:

(WebCore::SVGGlyphToPathTranslator::extents):

10:35 AM Changeset in webkit [195595] by adachan@apple.com
  • 6 edits
    2 adds in trunk/Source/WebCore

Enable API related to the video fullscreen layer in MediaPlayerPrivateAVFoundationObjC
also on Mac with video presentation mode support.
https://bugs.webkit.org/show_bug.cgi?id=153222

Reviewed by Eric Carlson.

No new tests. Covered by existing tests.

Introduce VideoFullscreenLayerManager to deal with the video layer when switching
between inline and fullscreen mode. We'll reuse it in other MediaPlayerPrivateInterface
implementations.

Now that MediaPlayerPrivateAVFoundationObjC's platform layer can be a WebVideoContainerLayer,
this exposes a bug in PlatformCALayerCocoa::clone() where we assumed the platform layer
is always an AVPlayerLayer if the PlatformCALayer's layer type is LayerTypeAVPlayerLayer.
Add a helper method to get an AVPlayerLayer from a PlatformCALayerCocoa (which also handles
WebVideoContainerLayer case) and use it in PlatformCALayerCocoa::clone().

  • WebCore.xcodeproj/project.pbxproj:

Add VideoFullscreenLayerManager to the project.

  • platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:
  • platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:

(WebCore::MediaPlayerPrivateAVFoundationObjC::MediaPlayerPrivateAVFoundationObjC):
Create m_videoFullscreenLayerManager. The video inline layer, video fullscreen layer,
and the video fullscreen frame are now managed by that class.
(WebCore::MediaPlayerPrivateAVFoundationObjC::createAVPlayerLayer):
Just call VideoFullscreenLayerManager::setVideoLayer() to handle adding the video
layer in either the inline or fullscreen layer.
(WebCore::MediaPlayerPrivateAVFoundationObjC::destroyVideoLayer):
Call VideoFullscreenLayerManager::didDestroyVideoLayer().
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformLayer):
Get the video inline layer from VideoFullscreenLayerManager.
(WebCore::MediaPlayerPrivateAVFoundationObjC::setVideoFullscreenLayer):
Call VideoFullscreenLayerManager::setVideoFullscreenLayer().
(WebCore::MediaPlayerPrivateAVFoundationObjC::setVideoFullscreenFrame):
Call VideoFullscreenLayerManager::setVideoFullscreenFrame().
(WebCore::MediaPlayerPrivateAVFoundationObjC::setVideoFullscreenMode):
Guard the iOS specific code properly.
(WebCore::MediaPlayerPrivateAVFoundationObjC::updateVideoLayerGravity):
Get the video fullscreen layer from VideoFullscreenLayerManager.
(WebCore::MediaPlayerPrivateAVFoundationObjC::requiresTextTrackRepresentation):
Ditto.
(WebCore::MediaPlayerPrivateAVFoundationObjC::syncTextTrackBounds):
Get the video fullscreen layer and video fullscreen frame from VideoFullscreenLayerManager.
(WebCore::MediaPlayerPrivateAVFoundationObjC::setTextTrackRepresentation):
Get the video fullscreen layer from VideoFullscreenLayerManager.

  • platform/graphics/avfoundation/objc/VideoFullscreenLayerManager.h: Added.

(WebCore::VideoFullscreenLayerManager::videoInlineLayer):
(WebCore::VideoFullscreenLayerManager::videoFullscreenLayer):
(WebCore::VideoFullscreenLayerManager::videoFullscreenFrame):

  • platform/graphics/avfoundation/objc/VideoFullscreenLayerManager.mm: Added.

(-[WebVideoContainerLayer setBounds:]):
(-[WebVideoContainerLayer setPosition:]):
WebVideoContainerLayer was moved from MediaPlayerPrivateAVFoundationObjC.mm.
(WebCore::VideoFullscreenLayerManager::create):
(WebCore::VideoFullscreenLayerManager::VideoFullscreenLayerManager):
(WebCore::VideoFullscreenLayerManager::setVideoLayer):
Code moved from MediaPlayerPrivateAVFoundationObjC::createAVPlayerLayer().
(WebCore::VideoFullscreenLayerManager::setVideoFullscreenLayer):
Code moved from MediaPlayerPrivateAVFoundationObjC::setVideoFullscreenLayer().
(WebCore::VideoFullscreenLayerManager::setVideoFullscreenFrame):
Code moved from MediaPlayerPrivateAVFoundationObjC::setVideoFullscreenFrame().
(WebCore::VideoFullscreenLayerManager::didDestroyVideoLayer):
Code moved from MediaPlayerPrivateAVFoundationObjC::destroyVideoLayer().

  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.h:
  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:

(PlatformCALayerCocoa::clone):
Use the new PlatformCALayerCocoa::avPlayerLayer() method to get the AVPlayerLayer from both the
destination and source PlatformCALayers.
(PlatformCALayerCocoa::avPlayerLayer):
Return nil if the layer type is not LayerTypeAVPlayerLayer. Otherwise, return the
platform layer if it is indeed an AVPlayerLayer. If not, it should be a WebVideoContainerLayer
and we should return its sublayer which should be an AVPlayerLayer.

10:04 AM Changeset in webkit [195594] by Chris Dumez
  • 7 edits
    2 adds in trunk

First parameter to window.showModalDialog() should be mandatory
https://bugs.webkit.org/show_bug.cgi?id=153436

Reviewed by Youenn Fablet.

LayoutTests/imported/w3c:

Drop temporary WebKit workaround in html/dom/interfaces.html
imported W3C test. This test would previously time out without
the workaround but this is fixed now.

  • web-platform-tests/html/dom/interfaces-expected.txt:
  • web-platform-tests/html/dom/interfaces.html:

Source/WebCore:

Make window.showModalDialog()'s first parameter mandatory to match the
last specification containing it:
http://dev.w3.org/html5/spec-preview/user-prompts.html#dialogs-implemented-using-separate-documents

The new behavior also matches Firefox, while Chrome no longer supports
this operation.

With this change, the W3C HTML test suite no longer hangs in the middle
because it mistakenly pops up a modal dialog during testing.

Test: fast/dom/Window/showModalDialog-mandatory-parameter.html

  • bindings/js/JSDOMWindowCustom.cpp:

(WebCore::JSDOMWindow::showModalDialog):

LayoutTests:

  • fast/dom/Window/showModalDialog-mandatory-parameter-expected.txt: Added.
  • fast/dom/Window/showModalDialog-mandatory-parameter.html: Added.

Add layout test to check that showModalDialog()'s first parameter is indeed
mandatory.

  • fast/dom/null-page-show-modal-dialog-crash.html:

Update existing test now that showModalDialog()'s first parameter is
mandatory.

9:23 AM Changeset in webkit [195593] by achristensen@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

[Win] Fix clean build after r195545.
https://bugs.webkit.org/show_bug.cgi?id=153434

  • CMakeLists.txt:
  • PlatformWin.cmake:

Derived sources need to be copied after the build, but everything else should be copied before.
This should fix ews issues like the one seen in bug 153473.

9:17 AM Changeset in webkit [195592] by eric.carlson@apple.com
  • 5 edits in trunk

LayoutTest media/airplay-target-availability.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=153100
<rdar://problem/24346796>

Reviewed by Daniel Bates.

Source/WebCore:

No new tests, media/airplay-target-availability.html was updated

  • Modules/mediasession/WebMediaSessionManager.cpp:

(WebCore::WebMediaSessionManager::clientStateDidChange): Schedule a configuration scan if

any of the config flags have changed.

(WebCore::WebMediaSessionManager::configurePlaybackTargetMonitoring): Update logging.

LayoutTests:

  • media/airplay-target-availability-expected.txt:
  • media/airplay-target-availability.html:
9:00 AM Changeset in webkit [195591] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebCore

Main frame scrollbars not updated on hovering when using overlay scrollbars
https://bugs.webkit.org/show_bug.cgi?id=153304

Reviewed by Michael Catanzaro.

Legacy scrollbars were fixed in r194155, but overlay scrollbars
are not notified when they are hovered. This is because the layer
hit test in RenderView::hitTest always returns true when using
overlay scrollbars and we are returning early in such case,
ignoring the HitTestRequest::AllowFrameScrollbars flag. So, in
case of using overlay scrollbars we still need to check the
RenderView scrollbars even when the layer hit test succeeded.

  • rendering/RenderView.cpp:

(WebCore::RenderView::hitTest):

8:15 AM Changeset in webkit [195590] by dbates@webkit.org
  • 3 edits
    5 adds in trunk

LayoutTest http/tests/security/xssAuditor/embed-tag-in-path-unterminated.html crashing
https://bugs.webkit.org/show_bug.cgi?id=153250
<rdar://problem/12172843>
And
<rdar://problem/24248040>

Reviewed by Alexey Proskuryakov.

Source/WebCore:

Remove an incorrect assertion that the absolute URL associated with a protection space cannot
contain consecutive forward slash (/) characters. A URL can contain consecutive forward slashes.
This also makes the invariants for CredentialStorage::findDefaultProtectionSpaceForURL() symmetric
with the invariants for WebCore::protectionSpaceMapKeyFromURL().

Tests: http/tests/loading/basic-auth-load-URL-with-consecutive-slashes.html

http/tests/xmlhttprequest/basic-auth-load-URL-with-consecutive-slashes.html

  • platform/network/CredentialStorage.cpp:

(WebCore::CredentialStorage::findDefaultProtectionSpaceForURL):

LayoutTests:

The test case http/tests/xmlhttprequest/basic-auth-load-URL-with-consecutive-slashes.html was derived
from a test case written by Yongjun Zhang in <https://bugs.webkit.org/attachment.cgi?id=65189> (bug #44461).

  • http/tests/loading/basic-auth-load-URL-with-consecutive-slashes-expected.txt: Added.
  • http/tests/loading/basic-auth-load-URL-with-consecutive-slashes.html: Added.
  • http/tests/xmlhttprequest/basic-auth-load-URL-with-consecutive-slashes-expected.txt: Added.
  • http/tests/xmlhttprequest/basic-auth-load-URL-with-consecutive-slashes.html: Added.
  • platform/wk2/http/tests/loading/basic-auth-load-URL-with-consecutive-slashes-expected.txt: Added.
8:08 AM Changeset in webkit [195589] by dbates@webkit.org
  • 13 edits in trunk

WebKitTestRunner: Credential cache is not cleared between tests
https://bugs.webkit.org/show_bug.cgi?id=153407
<rdar://problem/24280834>

Reviewed by Alexey Proskuryakov.

Source/WebKit2:

Expose SPI to call CredentialStorage::clearCredentials() on the default network storage
session to clear cached credentials.

  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::clearCachedCredentials): Added.

  • NetworkProcess/NetworkProcess.h:
  • NetworkProcess/NetworkProcess.messages.in: Added message ClearCachedCredentials().
  • UIProcess/API/C/WKContext.cpp:

(WKContextClearCachedCredentials): Added.

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

(WebKit::WebProcessPool::clearCachedCredentials): Notify all web processes and the
network process to clear cached credentials.

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

(WebKit::WebProcess::clearCachedCredentials): Clear cached credentials in the default
network storage session.

  • WebProcess/WebProcess.h:
  • WebProcess/WebProcess.messages.in: Added message ClearCachedCredentials().

Tools:

  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::resetStateToConsistentValues): Call WKContextClearCachedCredentials()
to clear cached credentials.

8:06 AM Changeset in webkit [195588] by dbates@webkit.org
  • 54 edits
    3 deletes in trunk

Remove XMLHttpRequestException
https://bugs.webkit.org/show_bug.cgi?id=102698
<rdar://problem/24338476>

Reviewed by Chris Dumez.

LayoutTests/imported/w3c:

Update test result now that we throw DOMException.{ABORT, NETWORK, TIMEOUT}Error instead of XMLHttpRequestException.{ABORT, NETWORK, TIMEOUT}_ERR.

  • web-platform-tests/XMLHttpRequest/send-network-error-sync-events.sub-expected.txt:
  • web-platform-tests/XMLHttpRequest/send-non-same-origin.sub-expected.txt:
  • web-platform-tests/XMLHttpRequest/send-redirect-bogus-sync-expected.txt:
  • web-platform-tests/XMLHttpRequest/send-redirect-infinite-sync-expected.txt:
  • web-platform-tests/XMLHttpRequest/xmlhttprequest-network-error-sync-expected.txt:

Source/WebCore:

Inspired by a patch by Erik Arvidsson.

As per <https://xhr.spec.whatwg.org> (21 January 2016) and <https://html.spec.whatwg.org/multipage/workers.html#dom-workerglobalscope-importscripts> (25 January 2016)
XMLHttpRequest and WorkerGlobalScope.importScripts() should throw a DOMException object instead
of a XMLHttpRequestException object when a NetworkError, AbortError, or TimeoutError occur. This
makes the behavior of WebKit more closely conform to these standards as well as the behavior of
other browsers.

  • CMakeLists.txt: Remove entries for XMLHttpRequestException.idl and XMLHttpRequestException.cpp.
  • DerivedSources.make: Remove entry for XMLHttpRequestException.idl.
  • WebCore.order: Remove exported symbols for XMLHttpRequestException.
  • WebCore.vcxproj/WebCore.vcxproj: Remove entries for JSXMLHttpRequestException.{cpp, h}, XMLHttpRequestException.{cpp, h}
  • WebCore.vcxproj/WebCore.vcxproj.filters: Ditto.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • bindings/js/JSExceptionBase.cpp:

(WebCore::toExceptionBase): Remove logic for XMLHttpRequestException.

  • dom/DOMExceptions.in: Remove entry for XMLHttpRequestException.
  • workers/WorkerGlobalScope.cpp:

(WebCore::WorkerGlobalScope::importScripts): Throw DOMException.NETWORK_ERR instead of XMLHttpRequestException.NETWORK_ERR.

  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::createRequest): Ditto.
(WebCore::XMLHttpRequest::didFail): Throw DOMException.ABORT_ERR instead of XMLHttpRequestException.ABORT_ERR.
(WebCore::XMLHttpRequest::didReachTimeout): Throw DOMException.TIMEOUT_ERR instead of XMLHttpRequestException.TIMEOUT_ERR.

  • xml/XMLHttpRequestException.cpp: Removed.
  • xml/XMLHttpRequestException.h: Removed.
  • xml/XMLHttpRequestException.idl: Removed.

LayoutTests:

Update test result now that we throw DOMException.{ABORT, NETWORK, TIMEOUT}Error instead of XMLHttpRequestException.{ABORT, NETWORK, TIMEOUT}_ERR.

  • fast/dom/Window/resources/window-properties.js:
  • fast/dom/Window/window-lookup-precedence-expected.txt:
  • fast/files/apply-blob-url-to-xhr-expected.txt:
  • fast/files/workers/worker-apply-blob-url-to-xhr-expected.txt:
  • http/tests/appcache/non-html.xhtml:
  • http/tests/appcache/simple.html:
  • http/tests/contentextensions/sync-xhr-blocked-expected.txt:
  • http/tests/local/fileapi/send-sliced-dragged-file-expected.txt:
  • http/tests/workers/worker-importScripts-expected.txt:
  • http/tests/xmlhttprequest/XMLHttpRequestException-expected.txt:
  • http/tests/xmlhttprequest/XMLHttpRequestException.html:
  • http/tests/xmlhttprequest/access-control-and-redirects-expected.txt:
  • http/tests/xmlhttprequest/access-control-basic-denied-expected.txt:
  • http/tests/xmlhttprequest/access-control-basic-get-fail-non-simple-expected.txt:
  • http/tests/xmlhttprequest/access-control-basic-non-simple-deny-cached-expected.txt:
  • http/tests/xmlhttprequest/access-control-basic-post-fail-non-simple-content-type-expected.txt:
  • http/tests/xmlhttprequest/access-control-sandboxed-iframe-denied-expected.txt:
  • http/tests/xmlhttprequest/access-control-sandboxed-iframe-denied-without-wildcard-expected.txt:
  • http/tests/xmlhttprequest/connection-error-sync-expected.txt:
  • http/tests/xmlhttprequest/cross-origin-no-authorization-expected.txt:
  • http/tests/xmlhttprequest/origin-exact-matching-expected.txt:
  • http/tests/xmlhttprequest/origin-whitelisting-https-expected.txt:
  • http/tests/xmlhttprequest/origin-whitelisting-ip-addresses-with-subdomains-expected.txt:
  • http/tests/xmlhttprequest/origin-whitelisting-removal-expected.txt:
  • http/tests/xmlhttprequest/workers/access-control-basic-get-fail-non-simple-expected.txt:
  • http/tests/xmlhttprequest/xmlhttprequest-sync-no-progress-events-expected.txt:
  • http/tests/xmlhttprequest/xmlhttprequest-unsafe-redirect-expected.txt:
  • platform/efl/js/dom/global-constructors-attributes-expected.txt:
  • platform/gtk/fast/dom/Window/window-lookup-precedence-expected.txt:
  • platform/gtk/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt:
  • platform/mac/js/dom/global-constructors-attributes-expected.txt:
  • platform/win/TestExpectations:
  • platform/win/js/dom/global-constructors-attributes-expected.txt:
7:47 AM Changeset in webkit [195587] by clopez@igalia.com
  • 2 edits in trunk/Tools

kill-old-processes: allow to specify on the environment of the bot a list of process that should be killed.
https://bugs.webkit.org/show_bug.cgi?id=153483

Reviewed by Csaba Osztrogonác.

  • BuildSlaveSupport/kill-old-processes:

(main): Allow to specify extra tasks to kill via the environment variable WEBKITBOT_TASKSTOKILL

6:48 AM WebKitGTK/Gardening/Calendar edited by clopez@igalia.com
(diff)
1:45 AM Changeset in webkit [195586] by mario@webkit.org
  • 5 edits
    2 adds in trunk

[GTK] WebProcess crashes when quickly attempting many DnD operations
https://bugs.webkit.org/show_bug.cgi?id=138468

Reviewed by Michael Catanzaro.

Source/WebKit2:

Do not allow different DnD operations over the same element at the
same time, so that any new attempt to DnD an element happening before
a previous attempt has ended will take precedence, cancelling the older
operation before going ahead with the new one.

This is consistent with how WebCore::EventHandler handles DnD operations,
preventing the web process from crashing in scenarios where the user might
try to perform many DnD operations over the same element very quickly.

  • UIProcess/gtk/DragAndDropHandler.cpp:

(WebKit::DragAndDropHandler::DragAndDropHandler): Initialized new member.
(WebKit::DragAndDropHandler::startDrag): Ensure a previous DnD operation
is cancelled before handling the new one that has just started.
(WebKit::DragAndDropHandler::fillDragData): Protect against calling this
function from webkitWebViewBaseDragDataGet for already cancelled operations.
(WebKit::DragAndDropHandler::finishDrag): Protect against calling this
function from webkitWebViewBaseDragEnd for already cancelled operations.

  • UIProcess/gtk/DragAndDropHandler.h:

LayoutTests:

New test added to check that the web process does not crash when multiple
DnD operations are quickly attempted over the same draggable element.

  • fast/events/drag-and-drop-link-fast-multiple-times-does-not-crash-expected.txt: Added.
  • fast/events/drag-and-drop-link-fast-multiple-times-does-not-crash.html: Added.

Added the new test to the failure expectations for mac-wk2, as there's no
suitable implementation of eventSender in place yet (see bug 42194).

  • platform/mac-wk2/TestExpectations: Added failure expectation for the new test.
1:45 AM WebKitGTK/2.10.x edited by mario@webkit.org
(diff)
12:17 AM Changeset in webkit [195585] by fpizlo@apple.com
  • 12 edits
    1 add in trunk/Source

FTLB3Output should maintain good block order like the LLVM one does
https://bugs.webkit.org/show_bug.cgi?id=152222

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

This fixes FTLB3Output to emit an ordered B3 IR. This makes inspecting IR *a lot* easier.
It will also be a performance win whenever we use range-based data structures for
liveness.

Also two small other changes:

  • Added some more dumping in integer range optimization phase.
  • Refined the disassembler's printing of instruction width suffixes so that "jzl" is not a thing. It was using "l" as the suffix because jumps take a 32-bit immediate.
  • b3/B3Procedure.cpp:

(JSC::B3::Procedure::addBlock):
(JSC::B3::Procedure::setBlockOrderImpl):
(JSC::B3::Procedure::clone):

  • b3/B3Procedure.h:

(JSC::B3::Procedure::frontendData):
(JSC::B3::Procedure::setBlockOrder):

  • dfg/DFGIntegerRangeOptimizationPhase.cpp:
  • disassembler/udis86/udis86_syn-att.c:

(ud_translate_att):

  • ftl/FTLB3Output.cpp:

(JSC::FTL::Output::initialize):
(JSC::FTL::Output::newBlock):
(JSC::FTL::Output::applyBlockOrder):
(JSC::FTL::Output::appendTo):

  • ftl/FTLB3Output.h:

(JSC::FTL::Output::setFrequency):
(JSC::FTL::Output::insertNewBlocksBefore):
(JSC::FTL::Output::callWithoutSideEffects):
(JSC::FTL::Output::newBlock): Deleted.

  • ftl/FTLLowerDFGToLLVM.cpp:

(JSC::FTL::DFG::LowerDFGToLLVM::lower):

Source/WTF:

In the FTL we need to be able to construct a list by inserting elements before other
specific elements. We didn't already have a scalable way to do this, so this adds such a
data structure to WTF. This also has changes to SentinelLinkedList to make it support
these kinds of insertions.

  • WTF.xcodeproj/project.pbxproj:
  • wtf/OrderMaker.h: Added.

(WTF::OrderMaker::Node::Node):
(WTF::OrderMaker::OrderMaker):
(WTF::OrderMaker::prepend):
(WTF::OrderMaker::append):
(WTF::OrderMaker::insertBefore):
(WTF::OrderMaker::insertAfter):
(WTF::OrderMaker::iterator::iterator):
(WTF::OrderMaker::iterator::operator*):
(WTF::OrderMaker::iterator::operator++):
(WTF::OrderMaker::iterator::operator==):
(WTF::OrderMaker::iterator::operator!=):
(WTF::OrderMaker::begin):
(WTF::OrderMaker::end):
(WTF::OrderMaker::newNode):

  • wtf/SentinelLinkedList.h:

(WTF::BasicRawSentinelNode::isOnList):
(WTF::BasicRawSentinelNode<T>::remove):
(WTF::BasicRawSentinelNode<T>::prepend):
(WTF::BasicRawSentinelNode<T>::append):
(WTF::RawNode>::SentinelLinkedList):
(WTF::RawNode>::push):
(WTF::RawNode>::append):
(WTF::RawNode>::remove):
(WTF::RawNode>::prepend):
(WTF::RawNode>::isOnList):

Jan 25, 2016:

11:32 PM Changeset in webkit [195584] by youenn.fablet@crf.canon.fr
  • 5 edits in trunk/Source/WebCore

WebCoreJSBuiltins do not use to do conditional include
https://bugs.webkit.org/show_bug.cgi?id=153306

Reviewed by Alex Christensen.

Removing compilation guards as builtin generator adds them in the files themselves.
Fixing MediaDevices.js to generate MEDIA_STREAM compilation guard.

No change in behavior.

  • Modules/mediastream/MediaDevices.js: Changing @optional to @conditional.
  • Modules/mediastream/NavigatorUserMedia.js: Making it @conditional.
  • bindings/js/WebCoreJSBuiltins.cpp:
  • bindings/js/WebCoreJSBuiltins.h:
11:28 PM Changeset in webkit [195583] by youenn.fablet@crf.canon.fr
  • 3 edits
    4 adds in trunk/LayoutTests

imported/w3c/web-platform-tests/streams-api/readable-streams/garbage-collection.html asserts frequently
https://bugs.webkit.org/show_bug.cgi?id=152436

Reviewed by Alexey Proskuryakov.

LayoutTests/imported/w3c:

Adding temporary tests that splits garbage collection readable stream
tests in worker and window mode.

  • web-platform-tests/streams-api/readable-streams/garbage-collection-1-expected.txt: Added.
  • web-platform-tests/streams-api/readable-streams/garbage-collection-1.html: Added.
  • web-platform-tests/streams-api/readable-streams/garbage-collection-2-expected.txt: Added.
  • web-platform-tests/streams-api/readable-streams/garbage-collection-2.html: Added.

LayoutTests:

  • platform/mac/TestExpectations: Marked imported/w3c/web-platform-tests/streams-api/readable-streams/garbage-collection.html as crash/pass.
10:12 PM Changeset in webkit [195582] by commit-queue@webkit.org
  • 11 edits in trunk

Fix internal Windows build
https://bugs.webkit.org/show_bug.cgi?id=153469

Patch by Alex Christensen <achristensen@webkit.org> on 2016-01-25
Reviewed by Brent Fulgham.

.:

  • Source/cmake/WebKitMacros.cmake:

Pass the GPERF_EXECUTABLE that we found to make-hash-tools.pl.

Source/WebCore:

  • CMakeLists.txt:

Pass the GPERF_EXECUTABLE that we found to perl scripts so they can use it instead of just calling gperf.
This is needed for builds where gperf is not in the PATH.

  • DerivedSources.make:

Pass "gperf" as the gperf command to retain existing functionality on mac.

  • bindings/scripts/preprocess-idls.pl:

(CygwinPathIfNeeded):

  • bindings/scripts/preprocessor.pm:

(applyPreprocessor):
Add /cygdrive/c/cygwin/bin to the PATH before calling cygpath.
This is needed for builds where we are using cygwin, but C:/cygwin/bin is not in the PATH.

  • css/makeSelectorPseudoClassAndCompatibilityElementMap.py:
  • css/makeSelectorPseudoElementsMap.py:
  • css/makeprop.pl:
  • platform/network/create-http-header-name-table:

Use the gperf executable passed in as a command line parameter if it is given.

9:43 PM Changeset in webkit [195581] by commit-queue@webkit.org
  • 7 edits
    9 adds in trunk

[ES6] Arrow function syntax. Arrow function specific features. Lexical bind "arguments"
https://bugs.webkit.org/show_bug.cgi?id=145132

Patch by Skachkov Oleksandr <gskachkov@gmail.com> on 2016-01-25
Reviewed by Saam Barati.
Source/JavaScriptCore:

Added support of ES6 arrow function specific feature, lexical bind of arguments.
http://www.ecma-international.org/ecma-262/6.0/#sec-arrow-function-definitions-runtime-semantics-evaluation
'arguments' variable in arrow function must resolve to a binding in a lexically enclosing environment.
In srict mode it points to arguments object, and in non-stric mode it points to arguments object or varible
with name 'arguments' if it was declared.

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):

  • parser/Parser.h:

(JSC::Scope::Scope):
(JSC::Scope::setSourceParseMode):
(JSC::Scope::isArrowFunction):
(JSC::Scope::collectFreeVariables):
(JSC::Scope::setIsArrowFunction):

  • tests/es6.yaml:
  • tests/stress/arrowfunction-lexical-bind-arguments-non-strict-1.js: Added.
  • tests/stress/arrowfunction-lexical-bind-arguments-non-strict-2.js: Added.
  • tests/stress/arrowfunction-lexical-bind-arguments-strict.js: Added.

Source/WebInspectorUI:

Current patch is implementing lexical bind of arguments, so in this callback we need
to return to ordinary function.

  • UserInterface/Base/Object.js:

(WebInspector.Object.singleFireEventListener.let.wrappedCallback):
(WebInspector.Object.singleFireEventListener):

LayoutTests:

  • js/arrowfunction-lexical-bind-arguments-non-strict-expected.txt: Added.
  • js/arrowfunction-lexical-bind-arguments-non-strict.html: Added.
  • js/arrowfunction-lexical-bind-arguments-strict-expected.txt: Added.
  • js/arrowfunction-lexical-bind-arguments-strict.html: Added.
  • js/script-tests/arrowfunction-lexical-bind-arguments-non-strict.js: Added.
  • js/script-tests/arrowfunction-lexical-bind-arguments-strict.js: Added.
9:41 PM Changeset in webkit [195580] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

DisplayList items can log paths now
https://bugs.webkit.org/show_bug.cgi?id=153417

Reviewed by Zalan Bujtas.

Now that Path supports TextStream logging, clean up its output a little and
enable dumping of Paths in DisplayListItems.

  • platform/graphics/Path.cpp:

(WebCore::operator<<):

  • platform/graphics/displaylists/DisplayListItems.cpp:

(WebCore::DisplayList::operator<<):

9:40 PM Changeset in webkit [195579] by Simon Fraser
  • 4 edits in trunk

Give the layout test results file a <title> showing the date and time the tests were run
https://bugs.webkit.org/show_bug.cgi?id=153187

Reviewed by Darin Adler.

Tools:

Include a 'date' property in the JSON with the date and time the tests completed.

  • Scripts/webkitpy/layout_tests/models/test_run_results.py:

(summarize_results):

LayoutTests:

Generate a <title> element from the 'date' property in the JSON.

  • fast/harness/results.html:
8:01 PM Changeset in webkit [195578] by commit-queue@webkit.org
  • 5 edits in trunk/Source/JavaScriptCore

[JSC] We should never use x18 on iOS ARM64
https://bugs.webkit.org/show_bug.cgi?id=153461

Patch by Benjamin Poulain <bpoulain@apple.com> on 2016-01-25
Reviewed by Filip Pizlo.

The register x18 is reserved in the iOS variant of the ARM64 ABI.

The weird thing is: if you use it, its value will change completely
randomly. It looks like it is changed by the system on interrupts.

This patch adds x18 to the reserved register and add assertions
to the assembler to prevent similar problems in the future.

  • assembler/ARM64Assembler.h:

(JSC::ARM64Assembler::xOrSp):
(JSC::ARM64Assembler::xOrZr):

  • assembler/AbstractMacroAssembler.h:

(JSC::isIOS): Deleted.

  • assembler/AssemblerCommon.h:

(JSC::isIOS):

  • jit/RegisterSet.cpp:

(JSC::RegisterSet::reservedHardwareRegisters):

7:13 PM Changeset in webkit [195577] by Antti Koivisto
  • 2 edits in trunk/Source/WebCore

Fix the comment.

  • rendering/style/RenderStyle.h:
7:12 PM Changeset in webkit [195576] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed, rolling out r195550.
https://bugs.webkit.org/show_bug.cgi?id=153471

broke animometer bot (and now we have crash logs!) (Requested
by kling on #webkit).

Reverted changeset:

"Restore CodeBlock jettison code Geoff accidentally removed"
https://bugs.webkit.org/show_bug.cgi?id=151241
http://trac.webkit.org/changeset/195550

6:57 PM Changeset in webkit [195575] by akling@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

MarkedSpace should have more precise allocators.
<https://webkit.org/b/153448>
<rdar://problem/23897477>

Reviewed by Geoffrey Garen.

The four classes responsible for the bulk of MarkedBlock allocations today are:

  • FunctionCodeBlock (640 bytes)
  • UnlinkedFunctionCodeBlock (304 bytes)
  • FunctionExecutable (168 bytes)
  • UnlinkedFunctionExecutable (144 bytes)

Due to the size class distribution in MarkedSpace, we've been wasting quite a lot
of heap space on these objects. Our "precise" allocators allowed allocation sizes
in 16-byte increments up to 128 bytes, but after that point, we'd only allocate
in 256-byte size increments.

Thus each instance of those classes would waste space as follows:

  • FunctionCodeBlock (768-byte cell, 128 bytes wasted)
  • UnlinkedFunctionCodeBlock (512-byte cell, 208 bytes wasted)
  • FunctionExecutable(256-byte cell, 88 bytes wasted)
  • UnlinkedFunctionExecutable(256-byte cell, 112 bytes wasted)

This patch raises the limit for precise allocations from 128 to 768, allowing us
to allocate these objects with far better space efficiency.

The cost of this is 7kB worth of MarkedAllocators and 70 (~2x) more allocators to
iterate whenever we iterate all the allocators.

  • heap/MarkedSpace.h:
  • heap/MarkedSpace.cpp:

(JSC::MarkedSpace::MarkedSpace):
(JSC::MarkedSpace::resetAllocators):
(JSC::MarkedSpace::forEachAllocator):
(JSC::MarkedSpace::isPagedOut):

6:18 PM Changeset in webkit [195574] by enrica@apple.com
  • 13 edits
    2 moves in trunk/Source

Add support for DataDetectors in WK (iOS).
https://bugs.webkit.org/show_bug.cgi?id=152989
rdar://problem/22855960

Reviewed by Tim Horton.

Source/WebCore:

Adding new helper functions for data detection related tasks.
The patch also fixes a bug when creating DOM ranges from DDQueryRange
spanning multiple fragments.

  • editing/cocoa/DataDetection.h:
  • editing/cocoa/DataDetection.mm:

(WebCore::DataDetection::isDataDetectorLink):
(WebCore::DataDetection::dataDetectorIdentifier):
(WebCore::detectItemAtPositionWithRange):
(WebCore::DataDetection::detectItemAroundHitTestResult):
(WebCore::resultIsURL):
(WebCore::removeResultLinksFromAnchor):
(WebCore::searchForLinkRemovingExistingDDLinks):
(WebCore::DataDetection::detectContentInRange):

Source/WebKit2:

Moving InteractionInformationAtPosition files to platform folder,
since this is only used on iOS and changing from .cpp to .mm.
The structure is extended to include data detection specific fields
and the relevant encode/decode functions have been updated to
handle the new fields.
The patch also adds a new WKUIDelegatePrivate method to allow
the client to provide additional context for data detection actions.

  • Platform/spi/ios/UIKitSPI.h:
  • Shared/InteractionInformationAtPosition.cpp: Removed.
  • Shared/InteractionInformationAtPosition.h: Removed.
  • Shared/ios/InteractionInformationAtPosition.h: Copied from Shared/InteractionInformationAtPosition.h.
  • Shared/ios/InteractionInformationAtPosition.mm: Copied from Shared/InteractionInformationAtPosition.cpp.

(WebKit::InteractionInformationAtPosition::encode):
(WebKit::InteractionInformationAtPosition::decode):

  • UIProcess/API/Cocoa/WKUIDelegatePrivate.h:
  • UIProcess/WebPageProxy.h:
  • UIProcess/ios/WKActionSheetAssistant.h:
  • UIProcess/ios/WKActionSheetAssistant.mm:

(-[WKActionSheetAssistant showDataDetectorsSheet]):

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView actionSheetAssistantDidStopInteraction:]):
(-[WKContentView dataDetectionContextForActionSheetAssistant:]):
(-[WKContentView selectedTextForActionSheetAssistant:]):
(-[WKContentView _dataForPreviewItemController:atPosition:type:]):

  • UIProcess/ios/WebPageProxyIOS.mm:
  • WebKit2.xcodeproj/project.pbxproj:
  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::getPositionInformation):

5:56 PM Changeset in webkit [195573] by clopez@igalia.com
  • 29 edits
    1 add in trunk/LayoutTests

[GTK] Unreviewed GTK gardening.

Skip all inspector/sampling-profiler tests meanwhile the feature is not enabled on the GTK+ port.
Report and mark a new regression on test inspector/dom-debugger/node-removed.html timing out.
Rebaseline a bunch of tests after r194847.

  • platform/gtk/TestExpectations:
  • platform/gtk/fast/forms/auto-fill-button/input-auto-fill-button-expected.txt: Rebaseline after r194847.
  • platform/gtk/fast/forms/auto-fill-button/input-auto-fill-button-expected.png: Added. Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug1188-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug1188-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug18359-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug18359-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug2479-3-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug2479-3-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug2479-4-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug2479-4-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug29326-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug29326-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug33855-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug33855-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug4382-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug4382-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug96334-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/bugs/bug96334-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/core/margins-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/core/margins-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/dom/tableDom-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla/dom/tableDom-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: Rebaseline after r194847.
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug92647-1-expected.png: Rebaseline after r194847.
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt: Rebaseline after r194847.
  • platform/gtk/transforms/2d/zoom-menulist-expected.png: Rebaseline after r194847.
  • platform/gtk/transforms/2d/zoom-menulist-expected.txt: Rebaseline after r194847.
5:56 PM WebKitGTK/Gardening/Calendar edited by clopez@igalia.com
(diff)
5:19 PM WebKitGTK/Gardening/Calendar edited by Michael Catanzaro
sign up for tomorrow since I missed last week too (diff)
4:43 PM Changeset in webkit [195572] by matthew_hanson@apple.com
  • 2 edits in branches/safari-601.1.46-branch/LayoutTests

Merge r195492. rdar://problem/24001780

4:43 PM Changeset in webkit [195571] by matthew_hanson@apple.com
  • 6 edits
    8 adds in branches/safari-601.1.46-branch

Merge r195477. rdar://problem/24001780

4:43 PM Changeset in webkit [195570] by matthew_hanson@apple.com
  • 4 edits in branches/safari-601.1.46-branch/Source/WebKit2

Merge r195424. rdar://problem/24222456

4:43 PM Changeset in webkit [195569] by matthew_hanson@apple.com
  • 2 edits in branches/safari-601.1.46-branch/Source/WebCore

Merge r195393. rdar://problem/24042909

4:43 PM Changeset in webkit [195568] by matthew_hanson@apple.com
  • 3 edits
    2 adds in branches/safari-601.1.46-branch

Merge r195150. rdar://problem/24208162

4:35 PM Changeset in webkit [195567] by mmaxfield@apple.com
  • 3 edits in trunk/Source/WebCore

Remove broken cache from CSSFontFaceSource
https://bugs.webkit.org/show_bug.cgi?id=153440

Reviewed by Simon Fraser.

This cache has been broken since 2013 (r158085). Given we didn't notice a perf
hit when it broke, and the fact it's been broken for years, it clearly isn't
necessary.

https://bugs.webkit.org/show_bug.cgi?id=153414 consists of a fairly invasive
change to CSSFontFaceSource; this patch includes a working version of this
cache, along with an easy way to enable/disable it (to measure possible perf
changes).

This patch is a short-term cleanup patch in the mean time until the above
invasive change gets landed.

No new tests because there is no behavior (or performance!) change.

  • css/CSSFontFaceSource.cpp:

(WebCore::CSSFontFaceSource::font):
(WebCore::CSSFontFaceSource::~CSSFontFaceSource): Deleted.
(WebCore::CSSFontFaceSource::pruneTable): Deleted.
(WebCore::CSSFontFaceSource::fontLoaded): Deleted.

  • css/CSSFontFaceSource.h:
4:25 PM Changeset in webkit [195566] by sbarati@apple.com
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: Have top-level ScriptTimelineDataGridNode events show sample counts
https://bugs.webkit.org/show_bug.cgi?id=153447
<rdar://problem/24334137>

Reviewed by Joseph Pecoraro.

  • UserInterface/Models/ScriptTimelineRecord.js:

(WebInspector.ScriptTimelineRecord):
(WebInspector.ScriptTimelineRecord.prototype.get profile):
(WebInspector.ScriptTimelineRecord.prototype.get callCount):
(WebInspector.ScriptTimelineRecord.prototype.isGarbageCollection):
(WebInspector.ScriptTimelineRecord.prototype._initializeProfileFromPayload):

  • UserInterface/Views/ScriptTimelineDataGridNode.js:

(WebInspector.ScriptTimelineDataGridNode.prototype.get data):

4:16 PM Changeset in webkit [195565] by weinig@apple.com
  • 2 edits in trunk/Source/WebCore

Try to fix the simulator build.

  • platform/spi/cocoa/DataDetectorsCoreSPI.h:
3:54 PM Changeset in webkit [195564] by weinig@apple.com
  • 5 edits
    2 copies in trunk/Source/WebCore

Roll back in r195559 with a build fix.

  • WebCore.xcodeproj/project.pbxproj:
  • editing/cocoa/DataDetection.mm:
  • platform/cocoa/DataDetectorsCoreSoftLink.mm: Added.
  • platform/cocoa/DataDetectorsCoreSoftLink.h: Added.
  • platform/spi/cocoa/DataDetectorsCoreSPI.h:
3:44 PM Changeset in webkit [195563] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Fix the comment about FTL_USES_B3.

  • dfg/DFGCommon.h:
3:41 PM Changeset in webkit [195562] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Switch FTL to B3 on X86_64/Mac
https://bugs.webkit.org/show_bug.cgi?id=153445

Rubber stamped by Geoffrey Garen.

This finally switches from LLVM to B3 in the FTL on X86_64 on the Mac. We recommend that other
X86_64 platforms make the switch as well. We will be focusing our performance work on B3 rather
than LLVM in the future. ARM64 support is also coming soon, so we will be able to remove FTL
LLVM code once that lands.

Right now this mostly appears as perf-neutral on the major tests. However, it does have the
following immediate benefits:

  • Dramatic reduction in FTL compile times, on the order of 5x-10x. This means huge speed-ups in shorter-running tests like V8Spider (21%) and JSRegress (8%).
  • It makes the FTL simpler and more robust because we don't have to do stackmap section parsing. This makes it easier to add new FTL features. We are already working on features, like the sampling profiler, which will only have a FTL B3 implementation.
  • Speed-ups on some throughput benchmarks like mandreel, richards, imaging-gaussian-blur. It's still a slow down on other throughput benchmarks, though.

We started writing B3 in October, so it's pretty awesome that the throughput of the code it
generates is already on par with LLVM.

This does not fundamentally change how the FTL works. FTL was built to lower DFG IR to a C-like
SSA IR, and then rely on powerful SSA optimizations and comprehensive instruction selection and
register allocation to turn that code into something that runs fast. B3 also has a C-like SSA
IR, has an instruction selector that is in some ways more powerful than LLVM's (B3 does global
instruction selection rather than block-local like LLVM), and it has a register allocator that
is in some ways more powerful also (B3 uses IRC, a mature graph coloring allocator, while LLVM
does not do graph coloring). We expect FTL B3's performance to improve a lot after we turn it
on and can focus our efforts on tuning it.

I didn't find any test regressions after running both JSC tests and layout tests. Basic
browsing still works. JetStream performance difference is within the margin of error. EWS is
happy.

  • dfg/DFGCommon.h:
3:38 PM Changeset in webkit [195561] by Ryan Haddad
  • 4 edits
    2 deletes in trunk/Source/WebCore

Unreviewed, rolling out r195559.
https://bugs.webkit.org/show_bug.cgi?id=153458

This change broke the iOS build (Requested by ryanhaddad on
#webkit).

Reverted changeset:

"Fix the ASAN build."
http://trac.webkit.org/changeset/195559

Patch by Commit Queue <commit-queue@webkit.org> on 2016-01-25

3:33 PM Changeset in webkit [195560] by Antti Koivisto
  • 8 edits in trunk/Source/WebCore

Resolving direction and writing mode properties should not mutate document
https://bugs.webkit.org/show_bug.cgi?id=153446

Reviewed by Andreas Kling.

Replace directionSetOnDocumentElement/writingModeSetOnDocumentElement document flags them with style flags.

  • css/StyleBuilderCustom.h:

(WebCore::StyleBuilderCustom::applyValueDirection):
(WebCore::StyleBuilderCustom::resetEffectiveZoom):
(WebCore::StyleBuilderCustom::applyValueWebkitWritingMode):
(WebCore::StyleBuilderCustom::applyValueWebkitTextOrientation):

  • css/StyleResolver.cpp:

(WebCore::StyleResolver::styleForElement):

  • dom/Document.cpp:

(WebCore::Document::Document):

  • dom/Document.h:

(WebCore::Document::markers):
(WebCore::Document::directionSetOnDocumentElement): Deleted.
(WebCore::Document::writingModeSetOnDocumentElement): Deleted.
(WebCore::Document::setDirectionSetOnDocumentElement): Deleted.
(WebCore::Document::setWritingModeSetOnDocumentElement): Deleted.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::styleDidChange):

  • rendering/style/RenderStyle.h:
  • style/StyleResolveForDocument.cpp:

(WebCore::Style::resolveForDocument):

3:12 PM Changeset in webkit [195559] by weinig@apple.com
  • 4 edits
    2 adds in trunk/Source/WebCore

Fix the ASAN build.

  • WebCore.xcodeproj/project.pbxproj:
  • editing/cocoa/DataDetection.mm:
  • platform/cocoa/DataDetectorsCoreSoftLink.mm: Added.
  • platform/cocoa/DataDetectorsCoreSoftLink.h: Added.
  • platform/spi/cocoa/DataDetectorsCoreSPI.h:
3:08 PM Changeset in webkit [195558] by commit-queue@webkit.org
  • 13 edits in trunk

Unreviewed, rolling out r195543.
https://bugs.webkit.org/show_bug.cgi?id=153451

regressed performance of test bots by ~6% (Requested by dydz
on #webkit).

Reverted changeset:

"WebKitTestRunner: Credential cache is not cleared between
tests"
https://bugs.webkit.org/show_bug.cgi?id=153407
http://trac.webkit.org/changeset/195543

2:37 PM Changeset in webkit [195557] by aakash_jain@apple.com
  • 2 edits in trunk/Tools

Failing to upload to flakiness dashboard should not be a hard error
https://bugs.webkit.org/show_bug.cgi?id=153444
<rdar://problem/22146294>

Reviewed by Alexey Proskuryakov.

  • Scripts/webkitpy/layout_tests/controllers/manager.py:

(Manager._upload_json_files): If JSON file is not generated, do not try to upload it.

2:35 PM Changeset in webkit [195556] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking imported/w3c/indexeddb/keyorder-private.html as flaky on mac-wk1
https://bugs.webkit.org/show_bug.cgi?id=153438

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
2:13 PM Changeset in webkit [195555] by Chris Dumez
  • 2 edits in trunk/Source/WebKit2

[WK2][NetworkCache] Enable speculative revalidation
https://bugs.webkit.org/show_bug.cgi?id=153443
<rdar://problem/23092196>

Reviewed by Antti Koivisto.

Enable speculative revalidation to better evaluate performance and
robustness.

  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:

(WebKit::registerUserDefaultsIfNeeded):

2:07 PM Changeset in webkit [195554] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking imported/w3c/web-platform-tests/XMLHttpRequest/getresponseheader-chunked-trailer.htm as flaky
on ios-simulator, removing flaky expectation that was incorrectly added for a different WPT LayoutTest.
https://bugs.webkit.org/show_bug.cgi?id=153371

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
1:40 PM Changeset in webkit [195553] by Beth Dakin
  • 2 edits in trunk/Source/WebKit/mac

Build fix.

  • WebView/WebHTMLView.mm:

(-[WebHTMLView initWithFrame:]):
(-[WebHTMLView insertText:]):

1:38 PM Changeset in webkit [195552] by Beth Dakin
  • 4 edits in trunk/Source/WebKit/mac

WK1: Handle soft spaces after accepted candidates
https://bugs.webkit.org/show_bug.cgi?id=153442
-and corresponding-
rdar://problem/23958418

Reviewed by Tim Horton.

The space at the end of candidates is a soft space. If that space exists,
cache the range of the space in m_softSpaceRange.

  • WebCoreSupport/WebEditorClient.mm:

(WebEditorClient::handleAcceptedCandidate):

New ivar in WebHTMLViewPrivate softSpaceRange keeps track to the NSRange of a
soft space if the last text that was inserted has a soft space at the end.

  • WebView/WebHTMLView.mm:

(-[WebHTMLView initWithFrame:]):
(-[WebHTMLView _setSoftSpaceRange:]):

When new text is inserted, find out if it is being inserted right after a
soft space. If it is, then [NSSpellChecker deletesAutospaceBeforeString] will
tell us if the space needs to be removed. If that is the case, then set the
replacementString to the soft space.
(-[WebHTMLView insertText:]):

  • WebView/WebHTMLViewInternal.h:
1:12 PM Changeset in webkit [195551] by achristensen@apple.com
  • 2 edits in trunk/Source/WebCore

[Win] Another build fix after r195545

  • CMakeLists.txt:

r195548 didn't change all the pre-builds back to post-builds.

1:04 PM Changeset in webkit [195550] by akling@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Restore CodeBlock jettison code Geoff accidentally removed
https://bugs.webkit.org/show_bug.cgi?id=151241

Rubber-stamped by Geoffrey Garen.

Geoff meant to add this back in <http://trac.webkit.org/changeset/190827>
but missed.

Then he added it back in, but it was rolled out due to a crash on Animometer.
I can no longer produce a crash on Animometer, either with today's version of
the benchmark, or the one that existed at the time of the rollout.

Given this, let's roll it back in and see how it goes.

  • bytecode/CodeBlock.cpp:

(JSC::timeToLive):
(JSC::CodeBlock::shouldJettisonDueToOldAge):

12:47 PM Changeset in webkit [195549] by fpizlo@apple.com
  • 10 edits in trunk/Source/JavaScriptCore

mandreel should run just as fast in FTL B3 as FTL LLVM
https://bugs.webkit.org/show_bug.cgi?id=153394

Reviewed by Gavin Barraclough.

This fixes two performance bugs and one disassembler bug.

  • B3 now turns Branches into Jumps when they are dominated by a Check on the same condition. This is like the opposite of foldPathConstants() was doing.
  • Air now supports adding to 8-bit or 16-bit memory locations on x86. B3 now knows how to lower Store8(Add(Load8Z(...))) and various other things to these new instructions.
  • Disassembler now knows to print out the instruction's width, whenever it has one. Previously, we'd print movb, movw, movl, and movq as "mov", which is unhelpful if you're storing an immediate, for example.

This adds a bunch of tests for the new instruction forms. This is a big speed-up on
mandreel. It makes us just as fast as LLVM on that benchmark.

  • assembler/MacroAssemblerX86Common.h:

(JSC::MacroAssemblerX86Common::add32):
(JSC::MacroAssemblerX86Common::add8):
(JSC::MacroAssemblerX86Common::add16):
(JSC::MacroAssemblerX86Common::add32AndSetFlags):
(JSC::MacroAssemblerX86Common::clz32AfterBsr):

  • assembler/X86Assembler.h:

(JSC::X86Assembler::addl_rm):
(JSC::X86Assembler::addb_rm):
(JSC::X86Assembler::addw_rm):
(JSC::X86Assembler::addl_ir):
(JSC::X86Assembler::addl_im):
(JSC::X86Assembler::addb_im):
(JSC::X86Assembler::addw_im):
(JSC::X86Assembler::addq_rr):

  • b3/B3LowerToAir.cpp:

(JSC::B3::Air::LowerToAir::addr):
(JSC::B3::Air::LowerToAir::loadPromiseAnyOpcode):
(JSC::B3::Air::LowerToAir::loadPromise):
(JSC::B3::Air::LowerToAir::tryAppendStoreBinOp):
(JSC::B3::Air::LowerToAir::lower):

  • b3/B3PureCSE.cpp:

(JSC::B3::PureCSE::clear):
(JSC::B3::PureCSE::findMatch):
(JSC::B3::PureCSE::process):

  • b3/B3PureCSE.h:
  • b3/B3ReduceStrength.cpp:
  • b3/air/AirOpcode.opcodes:
  • b3/testb3.cpp:

(JSC::B3::testNegPtr):
(JSC::B3::testStoreAddLoad32):
(JSC::B3::testStoreAddLoadImm32):
(JSC::B3::testStoreAddLoad8):
(JSC::B3::testStoreAddLoadImm8):
(JSC::B3::testStoreAddLoad16):
(JSC::B3::testStoreAddLoadImm16):
(JSC::B3::testStoreAddLoad64):
(JSC::B3::testStoreAddLoadImm64):
(JSC::B3::testStoreAddLoad32Index):
(JSC::B3::testStoreAddLoadImm32Index):
(JSC::B3::testStoreAddLoad8Index):
(JSC::B3::testStoreAddLoadImm8Index):
(JSC::B3::testStoreAddLoad16Index):
(JSC::B3::testStoreAddLoadImm16Index):
(JSC::B3::testStoreAddLoad64Index):
(JSC::B3::testStoreAddLoadImm64Index):
(JSC::B3::testStoreSubLoad):
(JSC::B3::run):
(JSC::B3::testStoreAddLoad): Deleted.

  • disassembler/udis86/udis86_syn-att.c:

(ud_translate_att):

12:37 PM Changeset in webkit [195548] by achristensen@apple.com
  • 3 edits in trunk/Source/WebCore

[Win] Fix clean build after r195545.

  • CMakeLists.txt:
  • PlatformWin.cmake:

I got a little carried away. WebCore already had a pre-build event. It was correct before r195545.

12:29 PM Changeset in webkit [195547] by Beth Dakin
  • 6 edits in trunk/Source

Handle soft spaces after accepted candidates
https://bugs.webkit.org/show_bug.cgi?id=153331
-and corresponding-
rdar://problem/23958418

Reviewed by Darin Adler.

Source/WebCore:

Candidates now come with built-in spaces, so we should not insert a space for
them.

  • editing/Editor.cpp:

(WebCore::Editor::handleAcceptedCandidate):

New SPI to properly handle these soft spaces.

  • platform/spi/mac/NSSpellCheckerSPI.h:

Source/WebKit2:

New member variable m_softSpaceRange keeps track to the NSRange of a soft
space if the last text that was inserted has a soft space at the end.

  • UIProcess/Cocoa/WebViewImpl.h:
  • UIProcess/Cocoa/WebViewImpl.mm:

(WebKit::WebViewImpl::WebViewImpl):

The space at the end of candidates is a soft space. If that space exists,
cache the range of the space in m_softSpaceRange.
(WebKit::WebViewImpl::handleAcceptedCandidate):

When new text is inserted, find out if it is being inserted right after a
soft space. If it is, then [NSSpellChecker deletesAutospaceBeforeString] will
tell us if the space needs to be removed. If that is the case, then set the
replacementString to the soft space.
(WebKit::WebViewImpl::insertText):

12:25 PM Changeset in webkit [195546] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking inspector/heap/garbageCollected.html as flaky on mac-wk1 debug
https://bugs.webkit.org/show_bug.cgi?id=153039

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
12:12 PM Changeset in webkit [195545] by achristensen@apple.com
  • 11 edits in trunk/Source

[Win] Copy forwarding headers before building a project
https://bugs.webkit.org/show_bug.cgi?id=153434

Reviewed by Brent Fulgham.

Source/JavaScriptCore:

  • CMakeLists.txt:
  • PlatformWin.cmake:

Source/WebCore:

  • CMakeLists.txt:
  • PlatformWin.cmake:

Source/WebKit:

  • PlatformWin.cmake:

Source/WTF:

  • wtf/CMakeLists.txt:
  • wtf/PlatformWin.cmake:
11:48 AM Changeset in webkit [195544] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Reduce unnecessary forced layouts in TimelineOverview
https://bugs.webkit.org/show_bug.cgi?id=153392
<rdar://problem/24312344>

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-25
Reviewed by Timothy Hatcher.

  • UserInterface/Views/TimelineOverview.js:

(WebInspector.TimelineOverview.prototype.layout):
Ignore setting the scrollLeft if we would be setting it to 0.
This helps avoid a forced layout in common cases.

10:41 AM Changeset in webkit [195543] by dbates@webkit.org
  • 13 edits in trunk

WebKitTestRunner: Credential cache is not cleared between tests
https://bugs.webkit.org/show_bug.cgi?id=153407
<rdar://problem/24280834>

Reviewed by Brady Eidson.

Source/WebKit2:

Add SPI to call NetworkStorageSession::switchToNewTestingSession() to create a new testing session.
The new testing session will have an empty credential cache.

  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::switchToNewTestingSession): Added.

  • NetworkProcess/NetworkProcess.h:
  • NetworkProcess/NetworkProcess.messages.in: Added message SwitchToNewTestingSession().
  • UIProcess/API/C/WKContext.cpp:

(WKContextResetTestingNetworkSession): Added.

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

(WebKit::WebProcessPool::resetTestingNetworkSession): Added.

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

(WebKit::WebProcess::switchToNewTestingSession): Added.

  • WebProcess/WebProcess.h:
  • WebProcess/WebProcess.messages.in: Added message SwitchToNewTestingSession().

Tools:

  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::resetStateToConsistentValues): Reset testing network session
to clear cached credentials.

10:38 AM Changeset in webkit [195542] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking http/tests/loading/preload-no-store-frame-src.html as failing on ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=152446

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
10:20 AM Changeset in webkit [195541] by beidson@apple.com
  • 4 edits in trunk

Modern IDB: Implement getIndexRecord in the SQLite backing store.
https://bugs.webkit.org/show_bug.cgi?id=153425

Reviewed by Darin Adler.

Source/WebCore:

No new tests (Some failures now pass, other failures progressed closer to passing).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::getIndexRecord):

LayoutTests:

  • platform/mac-wk1/TestExpectations:
9:55 AM Changeset in webkit [195540] by eric.carlson@apple.com
  • 3 edits
    2 adds in trunk

Media "ended" event incorrectly fires when currentTime is set
https://bugs.webkit.org/show_bug.cgi?id=150348
<rdar://problem/24247974>

Reviewed by Jer Noble.

Source/WebCore:

Test: media/media-ended-fired-once.html

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::invalidateCachedTime): Always mark m_cachedTime as invalid.

LayoutTests:

  • media/media-ended-fired-once-expected.txt: Added.
  • media/media-ended-fired-once.html: Added.
9:49 AM Changeset in webkit [195539] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Do not convert GlyphBufferAdvance to FloatSize
https://bugs.webkit.org/show_bug.cgi?id=153421

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-25
Reviewed by Simon Fraser.

No new tests needed.

  • platform/graphics/displaylists/DisplayListItems.cpp:

(WebCore::DisplayList::DrawGlyphs::computeBounds):

9:23 AM Changeset in webkit [195538] by rniwa@webkit.org
  • 20 edits
    2 adds in trunk

document.createElement should be able to create a custom element
https://bugs.webkit.org/show_bug.cgi?id=153173

Reviewed by Darin Adler.

Source/WebCore:

Added the support for constructing a custom element via document.createElement.

Extracted HTMLElementFactory::createKnownElement, which returns nullptr when the specified name doesn't match
any builtin element instead of out of HTMLUnknownElement, out of HTMLElementFactory::createElement.

Test: fast/custom-elements/Document-createElement.html

  • bindings/js/JSCustomElementInterface.cpp:

(WebCore::JSCustomElementInterface::constructHTMLElement): Added. Constructs a custom element by invoking its
constructor. We allow exceptions to be thrown by the constructor so the caller is responsible for checking
any exceptions in the ExecState before preceeding if the returned value is null.

  • bindings/js/JSCustomElementInterface.h:

(WebCore::JSCustomElementInterface::constructSVGElement): Added.

  • bindings/js/JSElementCustom.cpp:

(WebCore::toJSNewlyCreated): Exit early if the element is a custom element as the wrapper had already been
created by super() call inside the custom element'c constructor.

  • bindings/js/JSMainThreadExecState.h:

(WebCore::JSMainThreadExecState):

  • bindings/js/JSMainThreadExecStateInstrumentation.h:

(WebCore::JSMainThreadExecState::instrumentFunctionInternal): Generalized from instrumentFunctionCall so that
we can use it for both call and construct.
(WebCore::JSMainThreadExecState::instrumentFunctionCall): Specialized the above function for call.
(WebCore::JSMainThreadExecState::instrumentFunctionConstruct): Ditto for construct.

  • dom/CustomElementDefinitions.cpp:

(WebCore::CustomElementDefinitions::findInterface): Added.

  • dom/CustomElementDefinitions.h:
  • dom/Document.cpp:

(WebCore::createHTMLElementWithNameValidation): Extracted from createElement.
(WebCore::Document::createElementForBindings): Renamed from createElement. Specifies
ShouldCreateCustomElement::Create to create a custom element before using fallback elements.

  • dom/Document.h:
  • dom/Document.idl:
  • dom/Node.h:

(WebCore::Node::isCustomElement): Added. This flag is used to identify a custom element.
(WebCore::Node::setIsCustomElement): Added.

  • dom/make_names.pl: Extracted createKnownElement from createElement for createHTMLElementWithNameValidation.
  • inspector/InspectorCSSAgent.cpp:

(WebCore::InspectorCSSAgent::createInspectorStyleSheetForDocument): Use qualified name object to instantiate
a style element and set type content attribute.

  • inspector/InspectorDOMAgent.cpp:

(WebCore::InspectorDOMAgent::setNodeName): Use createElementForBindings here since we might be creating an
arbitrary element here. Also use RefPtr instead of raw pointers while mutating DOM for safety.

Source/WebKit/win:

Use createElementForBindings here since this is a C++ binding for Windows.

  • DOMCoreClasses.cpp:

(DOMDocument::createElement):

Source/WebKit2:

Use createElementForBindings here since this is for SPI.

  • WebProcess/InjectedBundle/API/mac/WKDOMDocument.mm:

(-[WKDOMDocument createElement:]):
(-[WKDOMDocument createTextNode:]):

LayoutTests:

Add a test for creating a custom elemnet via document.createElement.
The behavior is to be documented later.

  • fast/custom-elements/Document-createElement-expected.txt: Added.
  • fast/custom-elements/Document-createElement.html: Added.
9:13 AM Changeset in webkit [195537] by Carlos Garcia Campos
  • 3 edits in trunk/Source/WebCore

REGRESSION(r192773): [GTK] maps.google.com unresponsive/stalls since r192773
https://bugs.webkit.org/show_bug.cgi?id=153194

Reviewed by Michael Catanzaro.

In r192773 we implemented the JavaScriptCore garbage collector
timers for the GTK+ port. Those timers schedule sources in the
current thread default main context, but JS web worker threads
implementation doesn't use WTF::RunLoop, but its own WorkerRunLoop
class that doesn't create a GMainContext for the new thread. This
means that for web sites using workers, we are now doing garbage
collection of worker VMs in the main thread which ends up in a
deadlock at some point. We need to ensure that worker threads
create a GMainContext and push it as the default one for the
thread before the WorkerGlobalScope is created. This way when the
worker Heap is created, the GC timers use the right context to
schedule their sources. And then we need to check if there are
sources pending in the thread main context on every worker run
loop iteration.

  • workers/WorkerRunLoop.cpp:

(WebCore::WorkerRunLoop::runInMode):

  • workers/WorkerThread.cpp:

(WebCore::WorkerThread::workerThread):

8:19 AM Changeset in webkit [195536] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: timelines clear button should be inactive if nothing can be cleared
https://bugs.webkit.org/show_bug.cgi?id=132756

Patch by Johan K. Jensen <jj@johanjensen.dk> on 2016-01-25
Reviewed by Timothy Hatcher.

  • UserInterface/Views/TimelineRecordingContentView.js:

(WebInspector.TimelineRecordingContentView.prototype.shown):
Enable clear button if timeline is not readonly and contains data, when switching timelines.
(WebInspector.TimelineRecordingContentView.prototype._capturingStarted):
Enable clear button when a capturing starts.
(WebInspector.TimelineRecordingContentView.prototype._recordingReset):
Disable clear button after resetting recording.

8:18 AM Changeset in webkit [195535] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

Unreviewed, rolling out r195533.
https://bugs.webkit.org/show_bug.cgi?id=153423

It is again breaking builds of several ports (Requested by
youenn on #webkit).

Reverted changeset:

"WebCoreJSBuiltins do not use to do conditional include"
https://bugs.webkit.org/show_bug.cgi?id=153306
http://trac.webkit.org/changeset/195533

8:17 AM Changeset in webkit [195534] by Matt Baker
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Timelines: "Timer Installed150ms delay" — no space before the delay number
https://bugs.webkit.org/show_bug.cgi?id=153416

Reviewed by Timothy Hatcher.

Fix for tree element subtitle rule that regressed in https://bugs.webkit.org/show_bug.cgi?id=153146.

  • UserInterface/Views/TreeOutline.css:

(.tree-outline .item .alternate-subtitle::before):
Em dash should be inserted before both subtitle types.

6:06 AM Changeset in webkit [195533] by youenn.fablet@crf.canon.fr
  • 4 edits in trunk/Source/WebCore

WebCoreJSBuiltins do not use to do conditional include
https://bugs.webkit.org/show_bug.cgi?id=153306

Reviewed by Alex Christensen.

Removing compilation guards as builtin generator adds them in the files themselves.
Fixing MediaDevices.js to generate MEDIA_STREAM compilation guard.

No change in behavior.

  • Modules/mediastream/MediaDevices.js: Changing @optional to @conditional.
  • bindings/js/WebCoreJSBuiltins.cpp:
  • bindings/js/WebCoreJSBuiltins.h:
3:57 AM Changeset in webkit [195532] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Unreviewed, rolling out r195531.
https://bugs.webkit.org/show_bug.cgi?id=153420

It is breaking builds of several ports (Requested by youenn on
#webkit).

Reverted changeset:

"WebCoreJSBuiltins do not use to do conditional include"
https://bugs.webkit.org/show_bug.cgi?id=153306
http://trac.webkit.org/changeset/195531

3:36 AM Changeset in webkit [195531] by youenn.fablet@crf.canon.fr
  • 3 edits in trunk/Source/WebCore

WebCoreJSBuiltins do not use to do conditional include
https://bugs.webkit.org/show_bug.cgi?id=153306

Reviewed by Alex Christensen.

Removing compilation guards as builtin generator adds them in the files themselves.

No change in behavior.

  • bindings/js/WebCoreJSBuiltins.cpp:
  • bindings/js/WebCoreJSBuiltins.h:
2:53 AM Changeset in webkit [195530] by youenn.fablet@crf.canon.fr
  • 21 edits
    22 adds in trunk

[Fetch API] Implement Fetch API Headers
https://bugs.webkit.org/show_bug.cgi?id=152384

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

  • web-platform-tests/fetch/api/headers/headers-basic-expected.txt: Added.
  • web-platform-tests/fetch/api/headers/headers-basic.html: Added.
  • web-platform-tests/fetch/api/headers/headers-casing-expected.txt: Added.
  • web-platform-tests/fetch/api/headers/headers-casing.html: Added.
  • web-platform-tests/fetch/api/headers/headers-errors-expected.txt: Added.
  • web-platform-tests/fetch/api/headers/headers-errors.html: Added.
  • web-platform-tests/fetch/api/headers/headers-idl-expected.txt: Added.
  • web-platform-tests/fetch/api/headers/headers-idl.html: Added.
  • web-platform-tests/fetch/api/headers/headers-nameshake-expected.txt: Added.
  • web-platform-tests/fetch/api/headers/headers-nameshake.html: Added.
  • web-platform-tests/fetch/api/headers/headers-normalize-expected.txt: Added.
  • web-platform-tests/fetch/api/headers/headers-normalize.html: Added.
  • web-platform-tests/fetch/api/headers/headers-structure-expected.txt: Added.
  • web-platform-tests/fetch/api/headers/headers-structure.html: Added.

Source/WebCore:

Adding Fetch Headers API as a wapper around HTTPHeaderMap.

Tests: imported/w3c/web-platform-tests/fetch/api/headers/headers-basic.html

imported/w3c/web-platform-tests/fetch/api/headers/headers-casing.html
imported/w3c/web-platform-tests/fetch/api/headers/headers-errors.html
imported/w3c/web-platform-tests/fetch/api/headers/headers-idl.html
imported/w3c/web-platform-tests/fetch/api/headers/headers-nameshake.html
imported/w3c/web-platform-tests/fetch/api/headers/headers-normalize.html
imported/w3c/web-platform-tests/fetch/api/headers/headers-structure.html

  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • Modules/fetch/FetchHeaders.cpp: Added.

(WebCore::FetchHeaders::initializeWith):
(WebCore::isForbiddenHeaderName):
(WebCore::isForbiddenResponseHeaderName):
(WebCore::isSimpleHeader):
(WebCore::canWriteHeader):
(WebCore::FetchHeaders::append):
(WebCore::FetchHeaders::remove):
(WebCore::FetchHeaders::get):
(WebCore::FetchHeaders::has):
(WebCore::FetchHeaders::set):

  • Modules/fetch/FetchHeaders.h: Added.

(WebCore::FetchHeaders::create):
(WebCore::FetchHeaders::~FetchHeaders):
(WebCore::FetchHeaders::internalHeaders):
(WebCore::FetchHeaders::FetchHeaders):

  • Modules/fetch/FetchHeaders.idl: Added.
  • Modules/fetch/FetchHeaders.js: Added.

(initializeFetchHeaders):

  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/WebCoreBuiltinNames.h:
  • bindings/js/WebCoreJSBuiltins.cpp:
  • bindings/js/WebCoreJSBuiltins.h:

(WebCore::JSBuiltinFunctions::JSBuiltinFunctions):
(WebCore::JSBuiltinFunctions::fetchHeadersBuiltins):

  • platform/network/HTTPHeaderMap.cpp:

(WebCore::HTTPHeaderMap::contains):
(WebCore::HTTPHeaderMap::remove):

  • platform/network/HTTPHeaderMap.h:

LayoutTests:

  • js/dom/global-constructors-attributes-dedicated-worker-expected.txt:
  • js/dom/global-constructors-attributes-expected.txt:
  • platform/efl/js/dom/global-constructors-attributes-dedicated-worker-expected.txt:
  • platform/efl/js/dom/global-constructors-attributes-expected.txt:
  • platform/gtk/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-mavericks/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac-yosemite/js/dom/global-constructors-attributes-expected.txt:
  • platform/mac/js/dom/global-constructors-attributes-expected.txt:
  • platform/win/js/dom/global-constructors-attributes-expected.txt:
1:24 AM Changeset in webkit [195529] by svillar@igalia.com
  • 6 edits in trunk

[css-grid] grid shorthand must reset gap properties to their initial values
https://bugs.webkit.org/show_bug.cgi?id=153354

Reviewed by Darin Adler.

Source/WebCore:

Both 'grid-row-gap' & 'grid-column-gap' are considered reset-only subproperties of the
'grid' shorthand meaning that, even thought the shorthand does not offer a way to set
their values, it must in any case reset them to the initial ones.

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseGridShorthand):

  • css/CSSPropertyNames.in:

LayoutTests:

  • fast/css-grid-layout/grid-shorthand-get-set-expected.txt:
  • fast/css-grid-layout/grid-shorthand-get-set.html:
12:18 AM Changeset in webkit [195528] by akling@apple.com
  • 24 edits in trunk/Source/JavaScriptCore

Reduce number of Structures created at startup.
<https://webkit.org/b/153399>

Reviewed by Darin Adler.

For *Constructor and *Prototype objects that are only created once per JSGlobalObject,
build up the Structures using addPropertyWithoutTransition() helpers to avoid creating
tons of transitions that would just end up floating around and never getting used.

  • inspector/JSInjectedScriptHostPrototype.cpp:

(Inspector::JSInjectedScriptHostPrototype::finishCreation):

  • inspector/JSJavaScriptCallFramePrototype.cpp:

(Inspector::JSJavaScriptCallFramePrototype::finishCreation):

  • runtime/ArrayPrototype.cpp:

(JSC::ArrayPrototype::finishCreation):

  • runtime/ConsolePrototype.cpp:

(JSC::ConsolePrototype::finishCreation):

  • runtime/DatePrototype.cpp:

(JSC::DatePrototype::finishCreation):

  • runtime/JSArrayBufferConstructor.cpp:

(JSC::JSArrayBufferConstructor::finishCreation):

  • runtime/JSArrayBufferPrototype.cpp:

(JSC::JSArrayBufferPrototype::finishCreation):

  • runtime/JSObject.cpp:

(JSC::JSObject::putDirectNativeFunctionWithoutTransition):
(JSC::JSObject::putDirectBuiltinFunctionWithoutTransition): Deleted.

  • runtime/JSObject.h:
  • runtime/JSPromiseConstructor.cpp:

(JSC::JSPromiseConstructor::addOwnInternalSlots):

  • runtime/JSPromisePrototype.cpp:

(JSC::JSPromisePrototype::addOwnInternalSlots):

  • runtime/JSTypedArrayViewConstructor.cpp:

(JSC::JSTypedArrayViewConstructor::finishCreation):

  • runtime/JSTypedArrayViewPrototype.cpp:

(JSC::JSTypedArrayViewPrototype::finishCreation):

  • runtime/MapIteratorPrototype.cpp:

(JSC::MapIteratorPrototype::finishCreation):

  • runtime/MapPrototype.cpp:

(JSC::MapPrototype::finishCreation):

  • runtime/NumberPrototype.cpp:

(JSC::NumberPrototype::finishCreation):

  • runtime/ObjectConstructor.cpp:

(JSC::ObjectConstructor::finishCreation):

  • runtime/ObjectPrototype.cpp:

(JSC::ObjectPrototype::finishCreation):

  • runtime/SetIteratorPrototype.cpp:

(JSC::SetIteratorPrototype::finishCreation):

  • runtime/SetPrototype.cpp:

(JSC::SetPrototype::finishCreation):

  • runtime/StringPrototype.cpp:

(JSC::StringPrototype::finishCreation):

  • runtime/WeakMapPrototype.cpp:

(JSC::WeakMapPrototype::finishCreation):

  • runtime/WeakSetPrototype.cpp:

(JSC::WeakSetPrototype::finishCreation):

Jan 24, 2016:

11:55 PM Changeset in webkit [195527] by beidson@apple.com
  • 18 edits in trunk

Modern IDB: Implement deleteIndex and getCount for the SQLite backing store.
https://bugs.webkit.org/show_bug.cgi?id=153415

Reviewed by Darin Adler.

Source/WebCore:

No new tests (Handful of tests now pass, improvements on a handful of others).

  • Modules/indexeddb/server/IDBBackingStore.h:
  • Modules/indexeddb/server/MemoryIDBBackingStore.cpp:

(WebCore::IDBServer::MemoryIDBBackingStore::deleteIndex):

  • Modules/indexeddb/server/MemoryIDBBackingStore.h:
  • Modules/indexeddb/server/MemoryObjectStore.cpp:

(WebCore::IDBServer::MemoryObjectStore::takeIndexByIdentifier):
(WebCore::IDBServer::MemoryObjectStore::deleteIndex):
(WebCore::IDBServer::MemoryObjectStore::deleteAllIndexes):
(WebCore::IDBServer::MemoryObjectStore::takeIndexByName): Deleted.

  • Modules/indexeddb/server/MemoryObjectStore.h:
  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::createIndex):
(WebCore::IDBServer::SQLiteIDBBackingStore::deleteIndex):
(WebCore::IDBServer::SQLiteIDBBackingStore::getCount):

  • Modules/indexeddb/server/SQLiteIDBBackingStore.h:
  • Modules/indexeddb/server/SQLiteIDBCursor.cpp:

(WebCore::IDBServer::SQLiteIDBCursor::maybeCreateBackingStoreCursor):
(WebCore::IDBServer::SQLiteIDBCursor::SQLiteIDBCursor):

  • Modules/indexeddb/server/SQLiteIDBCursor.h:
  • Modules/indexeddb/server/SQLiteIDBTransaction.cpp:

(WebCore::IDBServer::SQLiteIDBTransaction::maybeOpenBackingStoreCursor):

  • Modules/indexeddb/server/SQLiteIDBTransaction.h:
  • Modules/indexeddb/server/UniqueIDBDatabase.cpp:

(WebCore::IDBServer::UniqueIDBDatabase::deleteIndex):
(WebCore::IDBServer::UniqueIDBDatabase::performDeleteIndex):
(WebCore::IDBServer::UniqueIDBDatabase::didPerformDeleteIndex):

  • Modules/indexeddb/server/UniqueIDBDatabase.h:
  • Modules/indexeddb/shared/IDBObjectStoreInfo.cpp:

(WebCore::IDBObjectStoreInfo::deleteIndex):

  • Modules/indexeddb/shared/IDBObjectStoreInfo.h:

LayoutTests:

  • platform/mac-wk1/TestExpectations:
11:45 PM Changeset in webkit [195526] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebKit2

Report upload progress to NetworkLoadClient when using NetworkSession
https://bugs.webkit.org/show_bug.cgi?id=153388

Patch by Alex Christensen <achristensen@webkit.org> on 2016-01-24
Reviewed by Darin Adler.

This fixes http/tests/xmlhttprequest/upload-onload-event.html and a few other tests.

  • NetworkProcess/NetworkLoad.cpp:

(WebKit::NetworkLoad::didBecomeDownload):
(WebKit::NetworkLoad::didSendData):
(WebKit::NetworkLoad::didReceiveResponseAsync):

  • NetworkProcess/NetworkLoad.h:
  • NetworkProcess/NetworkSession.h:

(WebKit::NetworkSessionTaskClient::~NetworkSessionTaskClient):

  • NetworkProcess/cocoa/NetworkSessionCocoa.mm:

(-[WKNetworkSessionDelegate initWithNetworkSession:]):
(-[WKNetworkSessionDelegate URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:]):
(-[WKNetworkSessionDelegate URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:]):

11:04 PM Changeset in webkit [195525] by beidson@apple.com
  • 2 edits in trunk/Source/WebCore

Unreviewed, speculative fix for:
Modern IDB: Some IDB tests crash in ~SQLiteIDBBackingStore
https://bugs.webkit.org/show_bug.cgi?id=153418

No new tests.

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::~SQLiteIDBBackingStore): Clear the global object

before wiping out the VM.

10:13 PM Changeset in webkit [195524] by Gyuyoung Kim
  • 18 edits in trunk/Source

Reduce PassRefPtr uses in dom - 4
https://bugs.webkit.org/show_bug.cgi?id=153270

Reviewed by Darin Adler.

As a step to remove PassRefPtr uses, this patch reduces the uses in WebCore/dom.

Source/WebCore:

  • bindings/js/JSDeviceMotionEventCustom.cpp:

(WebCore::JSDeviceMotionEvent::initDeviceMotionEvent):

  • dom/DeviceMotionData.cpp:

(WebCore::DeviceMotionData::create):
(WebCore::DeviceMotionData::DeviceMotionData):

  • dom/DeviceMotionData.h:
  • dom/Document.cpp:

(WebCore::Document::setBodyOrFrameset):
(WebCore::Document::setFocusedElement):
(WebCore::Document::setDecoder):
(WebCore::Document::pushCurrentScript):

  • dom/Document.h:
  • dom/Event.cpp:

(WebCore::Event::cloneFor):

  • dom/Event.h:
  • dom/MouseEvent.cpp:

(WebCore::MouseEvent::cloneFor):

  • dom/MouseEvent.h:
  • dom/NodeIterator.cpp:

(WebCore::NodeIterator::NodePointer::NodePointer):
(WebCore::NodeIterator::NodeIterator):

  • dom/NodeIterator.h:

(WebCore::NodeIterator::create):

  • html/RadioInputType.cpp:

(WebCore::RadioInputType::handleKeydownEvent):

  • platform/ios/DeviceMotionClientIOS.mm:

(WebCore::DeviceMotionClientIOS::motionChanged):

  • xml/XSLTProcessor.cpp:

(WebCore::XSLTProcessor::createDocumentFromSource):

Source/WebKit/win:

  • Plugins/PluginView.cpp:

(WebCore::PluginView::focusPluginElement):

Source/WebKit2:

  • WebProcess/Plugins/PluginView.cpp:

(WebKit::PluginView::focusPluginElement):

9:23 PM Changeset in webkit [195523] by mmaxfield@apple.com
  • 9 edits in trunk/Source/WebCore

[Font Loading] General cleanup
https://bugs.webkit.org/show_bug.cgi?id=153403

Reviewed by Darin Adler.

It turns out that CSSFontFaceSource::m_hasExternalSVGFont exactly equals
whether or not CSSFontFaceSource::m_font is a CachedSVGFont. Therefore,
the variable is redundant.

In addition, it was being passed to functions on CSSFontFaceSource::m_font,
which means it was always true inside the CachedSVGFont subclass and
always false for the CachedFont. Therefore, there is no reason pass this
variable to these functions because its value can be determined at
authorship time.

No new tests because there is no behavior change.

  • css/CSSFontFaceSource.cpp:

(WebCore::CSSFontFaceSource::font):
(WebCore::CSSFontFaceSource::CSSFontFaceSource): Deleted.

  • css/CSSFontFaceSource.h:
  • css/CSSFontSelector.cpp:

(WebCore::createFontFace):

  • loader/cache/CachedFont.cpp:

(WebCore::CachedFont::ensureCustomFontData):
(WebCore::CachedFont::createFont):

  • loader/cache/CachedFont.h:
  • loader/cache/CachedSVGFont.cpp:

(WebCore::CachedSVGFont::createFont):
(WebCore::CachedSVGFont::ensureCustomFontData):

  • loader/cache/CachedSVGFont.h:
  • platform/network/HTTPParsers.cpp:

(WebCore::isValidHTTPToken):

  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::uppercaseKnownHTTPMethod):

8:00 PM Changeset in webkit [195522] by Matt Baker
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: add support for placing Views in DataGrid column headers
https://bugs.webkit.org/show_bug.cgi?id=153387
<rdar://problem/24310797>

Reviewed by Timothy Hatcher.

This patch adds a new DataGrid column property, headerView, allowing a
custom View object to be placed in a column's header cell. The grid ensures
that the left and right edges of the view are kept in sync as columns are
resized. As most views use absolute positioning and are styled in CSS, the
vertical position and height of the view isn't set by the grid.

  • UserInterface/Views/DataGrid.js:

(WebInspector.DataGrid.prototype.insertColumn):
If the new column includes the headerView column data property,
it should take priority over titleDOMFragment and title text.
The specified View object is inserted into the DOM under the
column's <th> element, and added as a subview of the data grid.
(WebInspector.DataGrid.prototype.layout):
Update header views after performing default layout.
(WebInspector.DataGrid.prototype._showColumn):
Set hidden column property false instead of deleting it.
(WebInspector.DataGrid.prototype._positionHeaderViews):
Update the left and right style positions for all Views embedded in
column header cells, then update their layouts.
(WebInspector.DataGrid.prototype.resizerDragging):
Update header views after column resizers are repositioned.

5:19 PM Changeset in webkit [195521] by Chris Dumez
  • 3 edits in trunk/LayoutTests

Unreviewed, update test after r195497

This test did not make much sense as it was, after the behavior change
in r195497.

  • fast/dom/Document/document-charset-expected.txt:
  • fast/dom/Document/document-charset.html:
5:11 PM Changeset in webkit [195520] by Chris Dumez
  • 45 edits
    2 adds in trunk

An XMLDocument interface should be exposed on the global Window object
https://bugs.webkit.org/show_bug.cgi?id=153378
<rdar://problem/24315465>

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Rebaseline several W3C DOM and HTML tests now that more checks are
passing.

  • web-platform-tests/dom/interfaces-expected.txt:
  • web-platform-tests/dom/nodes/Document-constructor-expected.txt:
  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Expose an XMLDocument interface on the global Window object, as per:

DOMImplementation.createDocument() now returns an XMLDocument instead
of a Document, as per:

Previously, WebKit would alias XMLDocument to Document which caused
some W3C tests to fail.

Chrome and Firefox already match the specification here.

No new tests, already covered by existing tests.

  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • WebCore.vcxproj/WebCore.vcxproj:
  • WebCore.vcxproj/WebCore.vcxproj.filters:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSBindingsAllInOne.cpp:
  • bindings/js/JSDocumentCustom.cpp:

(WebCore::createNewDocumentWrapper):

  • dom/DOMImplementation.cpp:

(WebCore::DOMImplementation::createDocument):

  • dom/DOMImplementation.h:
  • dom/DOMImplementation.idl:
  • dom/Document.cpp:

(WebCore::Document::cloneDocumentWithoutChildren):

  • dom/Document.h:

(WebCore::Document::isXMLDocument):
(WebCore::Document::create): Deleted.
(WebCore::Document::createNonRenderedPlaceholder): Deleted.

  • dom/XMLDocument.h: Added.

(WebCore::XMLDocument::create):
(WebCore::XMLDocument::createXHTML):
(WebCore::XMLDocument::XMLDocument):
(isType):

  • dom/XMLDocument.idl: Added.
  • inspector/DOMPatchSupport.cpp:

(WebCore::DOMPatchSupport::patchDocument):

  • inspector/InspectorDOMAgent.cpp:

(WebCore::InspectorDOMAgent::setOuterHTML):

  • page/DOMWindow.idl:
  • page/PageSerializer.cpp:

(WebCore::SerializerMarkupAccumulator::SerializerMarkupAccumulator):

  • svg/SVGDocument.cpp:

(WebCore::SVGDocument::SVGDocument):

  • svg/SVGDocument.h:
  • svg/SVGDocument.idl:
  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::responseXML):

  • xml/XSLTProcessor.cpp:

(WebCore::XSLTProcessor::createDocumentFromSource):

LayoutTests:

Rebaseline some layout tests now that XMLDocument is exposed.

  • fast/dom/DOMImplementation/createDocument-namespace-err-expected.txt:
  • fast/dom/DOMImplementation/script-tests/createDocument-namespace-err.js:
  • fast/dom/Document/clone-node-expected.txt:
  • fast/dom/Document/clone-node.html:
  • fast/dom/Document/xml-document-focus-expected.txt:
  • fast/dom/Document/xml-document-focus.xml:
  • fast/dom/dom-parse-serialize-display-expected.txt:
  • fast/dom/dom-parse-serialize-expected.txt:
  • fast/dom/wrapper-classes-expected.txt:
  • fast/dom/wrapper-classes.html:
  • fast/dom/xmlserializer-serialize-to-string-exception-expected.txt:
  • fast/xmlhttprequest/xmlhttprequest-bad-mimetype-expected.txt:
  • http/tests/xmlhttprequest/supported-xml-content-types-expected.txt:
  • platform/mac/fast/dom/Window/window-lookup-precedence-expected.txt:
4:58 PM Changeset in webkit [195519] by Nikita Vasilyev
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Highlight timeline range handles on hover
https://bugs.webkit.org/show_bug.cgi?id=153395
<rdar://problem/24312364>

Reviewed by Timothy Hatcher.

  • UserInterface/Views/TimelineRuler.css:

(.timeline-ruler > .selection-handle.clamped):
Gardening. No need to repeat "1px solid".

(.timeline-ruler > .selection-handle:hover, .timeline-ruler > .selection-handle:active):
":active" pseudo selector is needed to keep the handle highligted while it's being dragged
regardress if the mouse cursor is hovering over it or not.

3:43 PM Changeset in webkit [195518] by Simon Fraser
  • 3 edits in trunk/LayoutTests

New WK1 baselines.

  • platform/mac-wk1/displaylists/extent-includes-shadow-expected.txt:
  • platform/mac-wk1/displaylists/extent-includes-transforms-expected.txt:
3:42 PM Changeset in webkit [195517] by beidson@apple.com
  • 9 edits in trunk

Modern IDB: Support IDBObjectStore.createIndex in the SQLite backing store.
https://bugs.webkit.org/show_bug.cgi?id=153410

Reviewed by Darin Adler.

Source/WebCore:

No new tests (Covered by unskipping many existing tests).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::~SQLiteIDBBackingStore):
(WebCore::IDBServer::SQLiteIDBBackingStore::createIndex):
(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedHasIndexRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::uncheckedPutIndexRecord):

  • Modules/indexeddb/server/SQLiteIDBBackingStore.h:
  • Modules/indexeddb/server/SQLiteIDBCursor.cpp:

(WebCore::IDBServer::SQLiteIDBCursor::maybeCreateBackingStoreCursor):
(WebCore::IDBServer::SQLiteIDBCursor::SQLiteIDBCursor):

  • Modules/indexeddb/server/SQLiteIDBCursor.h:
  • Modules/indexeddb/server/SQLiteIDBTransaction.cpp:

(WebCore::IDBServer::SQLiteIDBTransaction::maybeOpenBackingStoreCursor):

  • Modules/indexeddb/server/SQLiteIDBTransaction.h:

LayoutTests:

  • platform/mac-wk1/TestExpectations:
12:39 PM Changeset in webkit [195516] by Simon Fraser
  • 7 edits in trunk

Make the dumped display list representation a bit more compact
https://bugs.webkit.org/show_bug.cgi?id=153409

Reviewed by Zalan Bujtas.
Source/WebCore:

Don't make a group for every display list item.

  • platform/graphics/displaylists/DisplayList.cpp:

(WebCore::DisplayList::DisplayList::asText):

LayoutTests:

Updated results.

  • displaylists/extent-includes-shadow-expected.txt:
  • displaylists/extent-includes-transforms-expected.txt:
  • displaylists/layer-dispay-list-expected.txt:
  • displaylists/replay-skip-clipped-rect-expected.txt:
12:39 PM Changeset in webkit [195515] by Simon Fraser
  • 14 edits
    3 adds in trunk

Add testing for display list replay, and skip clipped-out items on replay
https://bugs.webkit.org/show_bug.cgi?id=153408

Reviewed by Zalan Bujtas.
Source/WebCore:

Make it possible to save and serialize a DisplayList of Items which were
actually applied on replay, so that replay-time optimizations can be tested.

This exposes internals.setElementTracksDisplayListReplay() and
internals.replayDisplayListForElement().

Do a trivial replay-time optimization, which is to skip items whose extents are
outside the replay clip.

Test: displaylists/replay-skip-clipped-rect.html

  • platform/graphics/GraphicsLayer.cpp:

(WebCore::GraphicsLayer::GraphicsLayer):

  • platform/graphics/GraphicsLayer.h:

(WebCore::GraphicsLayer::setIsTrackingDisplayListReplay):
(WebCore::GraphicsLayer::isTrackingDisplayListReplay):
(WebCore::GraphicsLayer::replayDisplayListAsText):

  • platform/graphics/ca/GraphicsLayerCA.cpp:

(WebCore::layerDisplayListMap): Use a singleton map to store the replay display lists
to avoid bloating GraphicsLayerCA for test-only code. The map stores a pair of the
replay list and a clip rect, which are both dumped. Dumping the clip rect ensures that
we're reporting the replay for the correct tile in a test (since there will be a replay
for each tile).
(WebCore::GraphicsLayerCA::~GraphicsLayerCA):
(WebCore::GraphicsLayerCA::platformCALayerPaintContents):
(WebCore::GraphicsLayerCA::setIsTrackingDisplayListReplay):
(WebCore::GraphicsLayerCA::replayDisplayListAsText):

  • platform/graphics/ca/GraphicsLayerCA.h:
  • platform/graphics/displaylists/DisplayList.h:

(WebCore::DisplayList::DisplayList::appendItem):

  • platform/graphics/displaylists/DisplayListReplayer.cpp:

(WebCore::DisplayList::Replayer::replay): In the unlikely event of tracking replays,
allocate a new DisplayList and append to it items which actually get applied.

  • platform/graphics/displaylists/DisplayListReplayer.h:
  • rendering/RenderLayerBacking.cpp:

(WebCore::RenderLayerBacking::setIsTrackingDisplayListReplay):
(WebCore::RenderLayerBacking::replayDisplayListAsText):

  • rendering/RenderLayerBacking.h:
  • testing/Internals.cpp:

(WebCore::Internals::setElementTracksDisplayListReplay):
(WebCore::Internals::replayDisplayListForElement):

  • testing/Internals.h:
  • testing/Internals.idl:

LayoutTests:

Test that a clipped-out rectangle is not painted.

In order to get the rect into the display list, we need to make the target
compositing layer be tiled, and to be clipped by an ancestor so that only the
second tile renders. (This complexity is required because in simpler scenarios,
the rect is clipped out at recording time.)

  • displaylists/replay-skip-clipped-rect-expected.txt: Added.
  • displaylists/replay-skip-clipped-rect.html: Added.
  • displaylists/resources/dump-target-replay-list.js: Added.

(doTest):

12:39 PM Changeset in webkit [195514] by Simon Fraser
  • 2 edits in trunk/LayoutTests

Layout Test displaylists/extent-includes-transforms.html is flaky on mac-wk1
https://bugs.webkit.org/show_bug.cgi?id=153308

Reviewed by Dan Bernstein.

Rather than assuming that a zero-delay timer will fire after the next layer flush,
force a flush with testRunner.display(), which fixes flakiness.

  • displaylists/resources/dump-target-display-list.js:

(doTest):

9:06 AM Changeset in webkit [195513] by mitz@apple.com
  • 2 edits in trunk/Tools

Added project.xcworkspace and xcuserdata to this project’s svn:ignore.

  • LayoutTestRelay/LayoutTestRelay.xcodeproj: Added property svn:ignore.
Note: See TracTimeline for information about the timeline view.