Timeline



Feb 1, 2016:

10:35 PM Changeset in webkit [196004] by Chris Dumez
  • 3 edits
    2 adds in trunk

object.lookupGetter() / object.lookupSetter() does not work for native bindings
https://bugs.webkit.org/show_bug.cgi?id=153765
<rdar://problem/24439699>

Reviewed by Oliver Hunt.

Source/JavaScriptCore:

Add support for CustomAccessor slots to objectProtoFuncLookupGetter() and
objectProtoFuncLookupSetter() by return getOwnPropertyDescriptor().get / set.
getOwnPropertyDescriptor() now correctly deals with CustomAccessors since
r196001.

  • runtime/ObjectPrototype.cpp:

(JSC::objectProtoFuncLookupGetter):
(JSC::objectProtoFuncLookupSetter):

LayoutTests:

Add layout tests to test that object.lookupGetter() / object.lookupSetter()
works for native bindings.

  • js/lookupGetterGetter-native-bindings-expected.txt: Added.
  • js/lookupGetterGetter-native-bindings.html: Added.
10:15 PM Changeset in webkit [196003] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Option+Up/Down should not move cursor outside of number
https://bugs.webkit.org/show_bug.cgi?id=153784
<rdar://problem/24453133>

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

  • UserInterface/Views/CodeMirrorAdditions.js:

When selectionStart === selectionEnd we were duplicating the
movement mutation by performing it twice on the same object.
After much experimentation, I left in the existing code path
for handling mutation with a selection. It is not perfect,
but it is better then just applying the ch diff.

10:12 PM Changeset in webkit [196002] by Chris Dumez
  • 2 edits in trunk/LayoutTests

Unreviewed, fix http/tests/security/cross-origin-window-property-access.html

Update http/tests/security/cross-origin-window-property-access.html that was
introduced in r196001 so that it does not assert on Mac DRT. Mac DRT asserts
that testRunner.waitUntilDone() must be called *BEFORE* calling window.open().

  • http/tests/security/cross-origin-window-property-access.html:
7:47 PM Changeset in webkit [196001] by Chris Dumez
  • 19 edits
    13 adds in trunk

Native Bindings Descriptors are Incomplete
https://bugs.webkit.org/show_bug.cgi?id=140575
<rdar://problem/19506502>

Reviewed by Oliver Hunt.

LayoutTests/imported/w3c:

Rebaseline several W3C tests now that a lot 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/JavaScriptCore:

This patch is based on initial work by Joe Pecoraro and Matthew Mirman.

This patch was initially rolled out for breaking chromeexperiments.com,
presumably because our IDL attributes were not marked as [configurable]
at the time. However, since r190104, our IDL attributes are now
configurable. Based on local testing, chromeexperiments.com seems to be
working fine now.

  • JavaScriptCore.xcodeproj/project.pbxproj:
  • inspector/InjectedScriptSource.js:

(endsWith):
(InjectedScript.prototype.processProperties):

  • runtime/JSBoundSlotBaseFunction.cpp: Added.

(JSC::boundSlotBaseFunctionCall):
(JSC::JSBoundSlotBaseFunction::JSBoundSlotBaseFunction):
(JSC::JSBoundSlotBaseFunction::create):
(JSC::JSBoundSlotBaseFunction::visitChildren):
(JSC::JSBoundSlotBaseFunction::finishCreation):

  • runtime/JSBoundSlotBaseFunction.h: Added.

(JSC::JSBoundSlotBaseFunction::createStructure):
(JSC::JSBoundSlotBaseFunction::boundSlotBase):
(JSC::JSBoundSlotBaseFunction::customGetterSetter):
(JSC::JSBoundSlotBaseFunction::isSetter):

  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::init):
(JSC::JSGlobalObject::visitChildren):

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::boundSlotBaseFunctionStructure):

  • runtime/JSObject.cpp:

(JSC::getBoundSlotBaseFunctionForGetterSetter):
(JSC::JSObject::getOwnPropertyDescriptor):

  • runtime/VM.cpp:

(JSC::VM::VM):

  • runtime/VM.h:

LayoutTests:

Add test coverage.

  • http/tests/security/cross-origin-window-property-access-expected.txt: Added.
  • http/tests/security/cross-origin-window-property-access.html: Added.
  • inspector/runtime/getProperties-expected.txt:
  • js/dom/native-bindings-descriptors-expected.txt: Added.
  • js/dom/native-bindings-descriptors.html: Added.
  • js/dom/native-bindings-descriptors2-expected.txt: Added.
  • js/dom/native-bindings-descriptors2.html: Added.
  • js/dom/native-bindings-descriptors3-expected.txt: Added.
  • js/dom/native-bindings-descriptors3.html: Added.
  • js/dom/native-bindings-descriptors4-expected.txt: Added.
  • js/dom/native-bindings-descriptors4.html: Added.
  • js/dom/native-bindings-descriptors5-expected.txt: Added.
  • js/dom/native-bindings-descriptors5.html: Added.
6:35 PM Changeset in webkit [196000] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

[GTK] [EFL] [AppleWin] Layout Test fast/shadow-dom/slot-removal-crash-2.html timeouts
https://bugs.webkit.org/show_bug.cgi?id=153772

Reviewed by Michael Catanzaro.

Don't call wait untilDone if attachShadow is not available.

  • fast/shadow-dom/slot-removal-crash-2.html:
5:52 PM Changeset in webkit [195999] by Joseph Pecoraro
  • 32 edits
    6 copies
    14 adds in trunk

Web Inspector: High Level Memory Overview Instrument
https://bugs.webkit.org/show_bug.cgi?id=153516
<rdar://problem/24356378>

Reviewed by Brian Burg.

Source/JavaScriptCore:

  • CMakeLists.txt:
  • Configurations/FeatureDefines.xcconfig:
  • DerivedSources.make:
  • inspector/protocol/Memory.json: Added.
  • inspector/scripts/codegen/generator.py:

New Memory domain guarded by ENABLE(RESOURCE_USAGE).
This feature flag was already used in WebCore.

Source/WebCore:

Add a new agent that gathers data from the ResourceUsageThread
and sends to the frontend.

Test: inspector/memory/tracking.html

  • CMakeLists.txt:
  • Configurations/FeatureDefines.xcconfig:
  • WebCore.xcodeproj/project.pbxproj:

New files.

  • inspector/InspectorController.cpp:

(WebCore::InspectorController::InspectorController):
Add the new agent.

  • inspector/InspectorMemoryAgent.h: Added.
  • inspector/InspectorMemoryAgent.cpp: Added.

(WebCore::InspectorMemoryAgent::InspectorMemoryAgent):
(WebCore::InspectorMemoryAgent::didCreateFrontendAndBackend):
(WebCore::InspectorMemoryAgent::willDestroyFrontendAndBackend):
(WebCore::InspectorMemoryAgent::startTracking):
(WebCore::InspectorMemoryAgent::stopTracking):
(WebCore::InspectorMemoryAgent::collectSample):
Implement the agent by adding / removing it as a ResourceUsage
observer. When receiving the data forward it to the frontend.

Source/WebInspectorUI:

Use the new "Memory" domain to track page memory size over time.
This allows the timeline to help visualize total process memory
broken down into a few different categories. The timeline graph
allows seeing the total size over time, and you can drill in to
a specific section and get a better breakdown and comparison
of the different categories of memory that we currently track.

  • Localizations/en.lproj/localizedStrings.js:

New UI strings.

  • UserInterface/Main.html:

New files.

  • UserInterface/Base/Main.js:

(WebInspector.loaded):

  • UserInterface/Protocol/MemoryObserver.js:

(WebInspector.MemoryObserver.prototype.trackingStart):
(WebInspector.MemoryObserver.prototype.trackingUpdate):
(WebInspector.MemoryObserver.prototype.trackingComplete):
Add a memory observer.

  • UserInterface/Controllers/TimelineManager.js:

(WebInspector.TimelineManager.defaultInstruments):
(WebInspector.TimelineManager.prototype.memoryTrackingStart):
(WebInspector.TimelineManager.prototype.memoryTrackingUpdate):
(WebInspector.TimelineManager.prototype.memoryTrackingComplete):
Create Memory timeline records from Memory tracking updates.

  • UserInterface/Models/MemoryCategory.js:

(WebInspector.MemoryCategory):
Consolidate some of the raw data of categories we get from the backend
into a set of 4 user-facing categories.

  • UserInterface/Models/MemoryTimelineRecord.js: Added.

(WebInspector.MemoryTimelineRecord):
(WebInspector.MemoryTimelineRecord.memoryCategoriesFromProtocol):
(WebInspector.MemoryTimelineRecord.prototype.get timestamp):
(WebInspector.MemoryTimelineRecord.prototype.get categories):
(WebInspector.MemoryTimelineRecord.prototype.get totalSize):
(WebInspector.MemoryTimelineRecord.prototype.get startTime):
(WebInspector.MemoryTimelineRecord.prototype.get endTime):
Memory timeline record for the event data.

  • UserInterface/Models/MemoryInstrument.js:

(WebInspector.MemoryInstrument):
(WebInspector.MemoryInstrument.supported):
(WebInspector.MemoryInstrument.prototype.get timelineRecordType):
(WebInspector.MemoryInstrument.prototype.startInstrumentation):
(WebInspector.MemoryInstrument.prototype.stopInstrumentation):
Instrument to start / stop memory tracking.

  • UserInterface/Models/TimelineRecord.js:

Add a new "Memory" Timeline type.

  • UserInterface/Views/ContentView.js:

(WebInspector.ContentView.createFromRepresentedObject):

  • UserInterface/Models/TimelineRecording.js:

(WebInspector.TimelineRecording):
Add the new "Memory" Timeline.

(WebInspector.TimelineRecording.prototype.addRecord):
Memory timeline records do not show in the SourceCode Timelines Overview.

  • UserInterface/Views/CircleChart.css:

(.circle-chart):
(.circle-chart > svg > path.background):
(.circle-chart > .center):

  • UserInterface/Views/CircleChart.js: Added.

(WebInspector.CircleChart):
(WebInspector.CircleChart.prototype.get element):
(WebInspector.CircleChart.prototype.get points):
(WebInspector.CircleChart.prototype.get size):
(WebInspector.CircleChart.prototype.get centerElement):
(WebInspector.CircleChart.prototype.get segments):
(WebInspector.CircleChart.prototype.set segments):
(WebInspector.CircleChart.prototype.get values):
(WebInspector.CircleChart.prototype.set values):
(WebInspector.CircleChart.prototype.clear):
(WebInspector.CircleChart.prototype.needsLayout):
(WebInspector.CircleChart.prototype.updateLayout):
(WebInspector.CircleChart.prototype._needsLayout):
(WebInspector.CircleChart.prototype._createCompleteCirclePathData):
(WebInspector.CircleChart.prototype._createSegmentPathData):
(WebInspector.CircleChart.prototype._updateLayout):
Standalone circle "donut" chart, copied mostly from Rendering Frames Timeline.
Initialize the chart's segments, then feed it a set of ([v1, v2, ...]) values
corresponding to each of the segments.

  • UserInterface/Views/LineChart.js: Added.

(WebInspector.LineChart):
(WebInspector.LineChart.prototype.get element):
(WebInspector.LineChart.prototype.get points):
(WebInspector.LineChart.prototype.get size):
(WebInspector.LineChart.prototype.set size):
(WebInspector.LineChart.prototype.addPoint):
(WebInspector.LineChart.prototype.clear):
(WebInspector.LineChart.prototype.needsLayout):
(WebInspector.LineChart.prototype.updateLayout):
(WebInspector.LineChart.prototype._needsLayout):
(WebInspector.LineChart.prototype._updateLayout):
Standalone line chart. Uses a single SVG path, given a set of (x, y) points.

  • UserInterface/Views/StackedLineChart.js: Added.

(WebInspector.StackedLineChart):
(WebInspector.StackedLineChart.prototype.get element):
(WebInspector.StackedLineChart.prototype.get points):
(WebInspector.StackedLineChart.prototype.get size):
(WebInspector.StackedLineChart.prototype.set size):
(WebInspector.StackedLineChart.prototype.initializeSections):
(WebInspector.StackedLineChart.prototype.addPointSet):
(WebInspector.StackedLineChart.prototype.clear):
(WebInspector.StackedLineChart.prototype.needsLayout):
(WebInspector.StackedLineChart.prototype.updateLayout):
(WebInspector.StackedLineChart.prototype._needsLayout):
(WebInspector.StackedLineChart.prototype._updateLayout):
Standalone stacked line chart. Initialize the chart's sections,
then feed it a set of (x, [y1, y2 ...]) points where the y
values correspond to each of the sections.

  • UserInterface/Views/TimelineOverview.js:

(WebInspector.TimelineOverview.prototype.get scrollContainerWidth):
Add a way to get this value without forcing layout all the time.

  • UserInterface/Views/TimelineTabContentView.js:

(WebInspector.TimelineTabContentView.displayNameForTimeline):
(WebInspector.TimelineTabContentView.iconClassNameForTimeline):
(WebInspector.TimelineTabContentView.genericClassNameForTimeline):
(WebInspector.TimelineTabContentView.iconClassNameForRecord):
(WebInspector.TimelineTabContentView.displayNameForRecord):
Add placeholders for the new Memory Timeline Type.

  • UserInterface/Views/MemoryCategoryView.css:

(.memory-category-view):
(.memory-category-view > .details):
(.memory-category-view > .details > .name):
(.memory-category-view > .graph):

  • UserInterface/Views/MemoryCategoryView.js: Added.

(WebInspector.MemoryCategoryView):
(WebInspector.MemoryCategoryView.prototype.get element):
(WebInspector.MemoryCategoryView.prototype.get category):
(WebInspector.MemoryCategoryView.prototype.clear):
(WebInspector.MemoryCategoryView.prototype.layoutWithDataPoints):
(WebInspector.MemoryCategoryView.prototype._updateDetails):

  • UserInterface/Views/MemoryTimelineOverviewGraph.css:

(body .timeline-overview > .graphs-container > .timeline-overview-graph.memory):
(.timeline-overview-graph.memory):
(.timeline-overview-graph.memory > .legend):
(.timeline-overview-graph.memory > .stacked-line-chart > svg > path.javascript):
(.timeline-overview-graph.memory > .stacked-line-chart > svg > path.images):
(.timeline-overview-graph.memory > .stacked-line-chart > svg > path.layers):
(.timeline-overview-graph.memory > .stacked-line-chart > svg > path.page):

  • UserInterface/Views/MemoryTimelineOverviewGraph.js: Added.

(WebInspector.MemoryTimelineOverviewGraph):
(WebInspector.MemoryTimelineOverviewGraph.prototype.get height):
(WebInspector.MemoryTimelineOverviewGraph.prototype.reset):
(WebInspector.MemoryTimelineOverviewGraph.prototype.layout.timeToX):
(WebInspector.MemoryTimelineOverviewGraph.prototype.layout.sizeToY):
(WebInspector.MemoryTimelineOverviewGraph.prototype.layout.sizesToYs):
(WebInspector.MemoryTimelineOverviewGraph.prototype.layout.ysForRecord):
(WebInspector.MemoryTimelineOverviewGraph.prototype.layout):
(WebInspector.MemoryTimelineOverviewGraph.prototype._updateLegend):
(WebInspector.MemoryTimelineOverviewGraph.prototype._visibleRecords):
(WebInspector.MemoryTimelineOverviewGraph.prototype._memoryTimelineRecordAdded):

  • UserInterface/Views/MemoryTimelineView.css: Added.

(.timeline-view.memory):
(.timeline-view.memory > .content):
(.timeline-view.memory > .content > .overview):
(.timeline-view.memory > .content .title):
(.timeline-view.memory > .content .subtitle):
(.timeline-view.memory > .content > .details > .timeline-ruler):
(.timeline-view.memory > .content > .details > .subtitle):
(.timeline-view.memory > .content > .overview > .chart):
(.timeline-view.memory > .content > .overview > .chart > .subtitle):
(.timeline-view.memory > .content > .overview > .chart > .container):
(.timeline-view.memory > .content > .overview > .divider):
(.timeline-view.memory > .content > .overview .max-percentage):
(.timeline-view.memory .legend):
(.timeline-view.memory .legend > .row):
(.timeline-view.memory .legend > .row > .swatch):
(.timeline-view.memory .legend > .row > p):
(.timeline-view.memory .legend > .row > .label):
(.timeline-view.memory .legend > .row > .size):
(.timeline-view.memory .legend > .row > .swatch.javascript):
(.timeline-view.memory .legend > .row > .swatch.images):
(.timeline-view.memory .legend > .row > .swatch.layers):
(.timeline-view.memory .legend > .row > .swatch.page):
(.memory-category-view.javascript .line-chart > svg > path):
(.memory-category-view.images .line-chart > svg > path):
(.memory-category-view.layers .line-chart > svg > path):
(.memory-category-view.page .line-chart > svg > path):
(.timeline-view.memory .legend > .row > .swatch.current):
(.timeline-view.memory .circle-chart > svg > path.current):
(.timeline-view.memory .circle-chart > svg > path.remainder):

  • UserInterface/Views/MemoryTimelineView.js: Added.

(WebInspector.MemoryTimelineView):
(WebInspector.MemoryTimelineView.displayNameForCategory):
(WebInspector.MemoryTimelineView.prototype.get navigationSidebarTreeOutlineLabel):
(WebInspector.MemoryTimelineView.prototype.shown):
(WebInspector.MemoryTimelineView.prototype.hidden):
(WebInspector.MemoryTimelineView.prototype.closed):
(WebInspector.MemoryTimelineView.prototype.reset):
(WebInspector.MemoryTimelineView.prototype.treeElementPathComponentSelected):
(WebInspector.MemoryTimelineView.prototype.layout.timeToX):
(WebInspector.MemoryTimelineView.prototype.layout.sizeToY):
(WebInspector.MemoryTimelineView.prototype.layout.layoutCategoryView):
(WebInspector.MemoryTimelineView.prototype.layout):
(WebInspector.MemoryTimelineView.prototype._clearUsageLegend):
(WebInspector.MemoryTimelineView.prototype._updateUsageLegend):
(WebInspector.MemoryTimelineView.prototype._clearMaxComparisonLegend):
(WebInspector.MemoryTimelineView.prototype._updateMaxComparisonLegend):
(WebInspector.MemoryTimelineView.prototype._visibleRecords):
(WebInspector.MemoryTimelineView.prototype._initializeCategoryViews.appendLegendRow):
(WebInspector.MemoryTimelineView.prototype._initializeCategoryViews):
(WebInspector.MemoryTimelineView.prototype._memoryTimelineRecordAdded):

  • UserInterface/Views/Variables.css:

(:root):
Memory timeline view styles.

Source/WebKit/mac:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

  • Configurations/FeatureDefines.xcconfig:

LayoutTests:

  • inspector/memory/tracking-expected.txt: Added.
  • inspector/memory/tracking.html: Added.

Basic test for the new domain tracking commands and events.

  • platform/efl/TestExpectations:
  • platform/gtk/TestExpectations:
  • platform/win/TestExpectations:

Skip the directory on ports that have not implemented ENABLE(RESOURCE_USAGE).

5:51 PM Changeset in webkit [195998] by achristensen@apple.com
  • 4 edits in trunk/Source

Fix CMake build.

  • PlatformMac.cmake:
5:42 PM Changeset in webkit [195997] by beidson@apple.com
  • 13 edits
    2 adds in trunk/Source/WebCore

Modern IDB: Cursors (still) do not keep their opening request alive.
https://bugs.webkit.org/show_bug.cgi?id=153724

Reviewed by Alex Christensen.

No new tests (All existing tests pass without flakiness).

IDBCursors did not properly keep their JS wrappers alive.
Making them ActiveDOMObjects that keep track of how many requests might be in flight fixes this.
This also makes them actually keep their opening-request live via the opaque-root mechanism.

IDBCursorWithValue also needed to opt in to all of these mechanisms.

  • CMakeLists.txt:
  • WebCore.xcodeproj/project.pbxproj:
  • Modules/indexeddb/IDBCursor.h:

(WebCore::IDBCursor::hasPendingActivity): The base IDBCursor always has no pending activity,

to maintain current behavior in LegacyIDB. This weirdness will go away when LegacyIDB does.

  • Modules/indexeddb/IDBCursor.idl:
  • Modules/indexeddb/IDBCursorWithValue.idl:

Track a count for all outstanding requests to keep the cursor alive as an ActiveDOMObject.

  • Modules/indexeddb/client/IDBCursorImpl.cpp:

(WebCore::IDBClient::IDBCursor::IDBCursor):
(WebCore::IDBClient::IDBCursor::update):
(WebCore::IDBClient::IDBCursor::uncheckedIterateCursor):
(WebCore::IDBClient::IDBCursor::deleteFunction):
(WebCore::IDBClient::IDBCursor::activeDOMObjectName):
(WebCore::IDBClient::IDBCursor::canSuspendForDocumentSuspension):
(WebCore::IDBClient::IDBCursor::hasPendingActivity):
(WebCore::IDBClient::IDBCursor::decrementOutstandingRequestCount):

  • Modules/indexeddb/client/IDBCursorImpl.h:

Rework the "delete" family of functions on the object store to allow for returning a modern IDBRequest.
A lot of this can go away when LegacyIDB does.

  • Modules/indexeddb/client/IDBObjectStoreImpl.cpp:

(WebCore::IDBClient::IDBObjectStore::deleteFunction):
(WebCore::IDBClient::IDBObjectStore::doDelete):
(WebCore::IDBClient::IDBObjectStore::modernDelete):

  • Modules/indexeddb/client/IDBObjectStoreImpl.h:
  • Modules/indexeddb/client/IDBRequestImpl.cpp:

(WebCore::IDBClient::IDBRequest::setSource): Setup a ScopeGuard to decrement the cursor's request

count whenever it makes sense to do so.

(WebCore::IDBClient::IDBRequest::dispatchEvent): Clear the ScopeGuard (if it exists) to decrement the count.
(WebCore::IDBClient::IDBRequest::willIterateCursor): Set the ScopeGuard.
(WebCore::IDBClient::IDBRequest::didOpenOrIterateCursor): Clear the ScopeGuard (if it exists) to decrement the count.

  • Modules/indexeddb/client/IDBRequestImpl.h:
  • Modules/indexeddb/server/UniqueIDBDatabase.cpp:

(WebCore::IDBServer::ScopeGuard::ScopeGuard): Deleted.
(WebCore::IDBServer::ScopeGuard::~ScopeGuard): Deleted.
(WebCore::IDBServer::ScopeGuard::enable): Deleted.
(WebCore::IDBServer::ScopeGuard::disable): Deleted.

  • bindings/js/JSIDBCursorWithValueCustom.cpp: Added.

(WebCore::JSIDBCursorWithValue::visitAdditionalChildren):

  • platform/ScopeGuard.h: Added.

(WebCore::ScopeGuard::ScopeGuard):
(WebCore::ScopeGuard::~ScopeGuard):
(WebCore::ScopeGuard::enable):
(WebCore::ScopeGuard::disable):

5:39 PM Changeset in webkit [195996] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skipping http/tests/plugins/visible_plugins.html on Yosemite during investigation.
https://bugs.webkit.org/show_bug.cgi?id=153752

Unreviewed test gardening.

  • platform/mac/TestExpectations:
5:27 PM Changeset in webkit [195995] by Matt Baker
  • 8 edits in trunk/Source/WebInspectorUI

Web Inspector: add a LayoutReason enum to the View base class
https://bugs.webkit.org/show_bug.cgi?id=153731
<rdar://problem/24430938>

Reviewed by Brian Burg.

Added a LayoutReason enum to the View base class, which can be passed as an optional
argument to needsLayout() and updateLayout(). The value is propagated to the view's
subtree during layout.

  • UserInterface/Base/Main.js:

Update top-level views with Resize layout reason when window is resized.

  • UserInterface/Views/DataGrid.js:

(WebInspector.DataGrid.prototype._positionHeaderViews):
Update header view with Resize layout reason when column is resized.

  • UserInterface/Views/OverviewTimelineView.js:

(WebInspector.OverviewTimelineView.prototype.shown):
Assume the view has been resized when shown, and update layout.
(WebInspector.OverviewTimelineView.prototype.updateLayoutForResize): Deleted.
No longer needed, handled by the View base class.

  • UserInterface/Views/TimelineOverview.js:

(WebInspector.TimelineOverview.prototype.shown):
Assume the view has been resized when shown, and update layout.
(WebInspector.TimelineOverview.prototype.layout):
Invalidate cached scroll container width if resized.
(WebInspector.TimelineOverview.prototype.updateLayoutForResize): Deleted.
No longer needed, handled by the View base class.

  • UserInterface/Views/TimelineRecordingContentView.js:

(WebInspector.TimelineRecordingContentView.prototype.layout): Deleted.
No longer needed, handled by the View base class.

  • UserInterface/Views/TimelineRuler.js:

(WebInspector.TimelineRuler.prototype.needsLayout):
(WebInspector.TimelineRuler.prototype.layout):
Update cached client width if resized.
(WebInspector.TimelineRuler.prototype.resize): Deleted.
Moved resize logic to layout override.

  • UserInterface/Views/View.js:

(WebInspector.View):
(WebInspector.View.prototype.updateLayout):
Set layout reason.
(WebInspector.View.prototype.needsLayout):
Set layout reason even if an animation frame has already been scheduled,
since the layout reason could have changed.
(WebInspector.View.prototype._layoutSubtree):
Propagate layout reason to subtree, and reset the value when done.
(WebInspector.View.prototype._setLayoutReason):
Helper method for updating the layout reason. Ensures that LayoutReason.Resize
has priority over the default (LayoutReason.Dirty).

5:12 PM Changeset in webkit [195994] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking imported/w3c/web-platform-tests/streams-api/readable-streams/garbage-collection-1.html as flaky on Mac debug
https://bugs.webkit.org/show_bug.cgi?id=153781

Unreviewed test gardening.

  • platform/mac/TestExpectations:
4:55 PM Changeset in webkit [195993] by jmarcell@apple.com
  • 4 edits
    1 add in trunk/Tools

Add code to parse the git branches out of the Trac RSS feed https://bugs.webkit.org/show_bug.cgi?id=153624

Reviewed by Daniel Bates.

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

(Trac.prototype.commitsOnBranch): Update filter to check for Git branches.
(Trac.prototype._convertCommitInfoElementToObject): Parse Git branches from the Trac RSS feed. Also changed "branchName" to
"branches" and updated the code to work with an array instead of a string.

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

(MockTrac): Refactored example commits out into a constant, MockTrac.EXAMPLE_TRAC_COMMITS.

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

fixture that contains XML with a Git branch.

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

branches from Trac RSS feed. Also updated code to work with the new MockTrac.EXAMPLE_TRAC_COMMITS constant.

4:46 PM Changeset in webkit [195992] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Free Colormap when XWindow is destroyed.
https://bugs.webkit.org/show_bug.cgi?id=153413

Patch by Sun-woo Nam <sunny.nam@samsung.com> on 2016-02-01
Reviewed by Žan Doberšek.

Colormap is needed to create XWindow and it should be freed when XWindow is destroyed.
Unless Colormap is freed before destroying XWindow, memory leak is suspected.
XFreeColormap therefore is needed on X11Helper.

  • platform/graphics/surfaces/glx/X11Helper.cpp: Added XFreeColormap.

(WebCore::X11Helper::destroyWindow):

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

More iOS build fix.

  • Platform/spi/ios/UIKitSPI.h:
4:41 PM Changeset in webkit [195990] by mitz@apple.com
  • 2 edits in trunk/Source/WebKit2

iOS build fix.

  • Platform/IPC/mac/ConnectionMac.mm:
4:35 PM Changeset in webkit [195989] by mitz@apple.com
  • 2 edits in trunk/Source/WebKit2

Copy sandbox profiles during installhdrs.

Reviewed by Anders Carlsson.

  • Configurations/SandboxProfiles.xcconfig:
4:32 PM Changeset in webkit [195988] by matthew_hanson@apple.com
  • 1 edit
    2 adds in branches/safari-601-branch/LayoutTests

Merge Layout Tests for r191331. rdar://problem/24448992

4:20 PM Changeset in webkit [195987] by matthew_hanson@apple.com
  • 3 edits
    2 adds in branches/safari-601-branch

Merge r195837. rdar://problem/24002220

4:19 PM WebKitGTK/Gardening/Calendar edited by clopez@igalia.com
(diff)
4:00 PM Changeset in webkit [195986] by clopez@igalia.com
  • 4 edits in trunk/LayoutTests

[GTK] Unreviewed GTK+ Gardening.

  • platform/efl/TestExpectations: Add fast/shadow-dom/slot-removal-crash-2.html timeout expectation.
  • platform/gtk/TestExpectations: Report and update a bunch of test expectations.
  • platform/win/TestExpectations: Add fast/shadow-dom/slot-removal-crash-2.html timeout expectation.
3:55 PM Changeset in webkit [195985] by mitz@apple.com
  • 7 edits in trunk/Source/WebKit2

[Cocoa] Remove some more has_include guards
https://bugs.webkit.org/show_bug.cgi?id=153774

Reviewed by Tim Horton.

Guard private header includes with #if USE(APPLE_INTERNAL_SDK) rather than with has_include.

  • Platform/IPC/mac/ConnectionMac.mm:
  • Platform/IPC/mac/ImportanceAssertion.h:
  • Shared/EntryPointUtilities/mac/XPCService/XPCServiceEntryPoint.h:
  • Shared/cf/ArgumentCodersCF.cpp:
  • Shared/mac/ChildProcessMac.mm:
  • Shared/mac/SecItemShim.cpp:
3:40 PM Changeset in webkit [195984] by beidson@apple.com
  • 2 edits in trunk/Tools

Add command line flag to DRT to output the number of tests completed in server mode.
https://bugs.webkit.org/show_bug.cgi?id=153750

Reviewed by Darin Adler.

  • DumpRenderTree/mac/DumpRenderTree.mm:

(initializeGlobalsFromCommandLineOptions):
(runTestingServerLoop):

3:37 PM Changeset in webkit [195983] by mitz@apple.com
  • 3 edits in trunk/Source/WebKit2

[Xcode] Let Xcode know that the WebKit XPC service products are XPC services
https://bugs.webkit.org/show_bug.cgi?id=153773

Reviewed by Tim Horton.

  • Configurations/BaseXPCService.xcconfig: Removed now-redundant definitions of MACH_O_TYPE and WRAPPER_EXTENSION.
  • WebKit2.xcodeproj/project.pbxproj: Updated product types.
3:31 PM Changeset in webkit [195982] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebKit2

Crash using WKPDFView, in -[UIPDFPageView showContent]
https://bugs.webkit.org/show_bug.cgi?id=153770
<rdar://problem/20157864>

Reviewed by Anders Carlsson.

When scrolling, we throw away UIPDFPageViews, but forget to unhook their delegates.
In some cases (also because their delegate is a raw pointer, not weak), they can call
back into a deleted WKPDFView, causing a crash.

  • UIProcess/ios/WKPDFView.mm:

(detachViewForPage):
Add a helper to detach a page view, and unhook its delegates.

(-[WKPDFView _clearPages]):
(-[WKPDFView _revalidateViews]):
Make use of the new helper.

3:19 PM Changeset in webkit [195981] by benjamin@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

[JSC] IRC can coalesce the frame pointer with a Tmp that is modified
https://bugs.webkit.org/show_bug.cgi?id=153694

Reviewed by Filip Pizlo.

Let's say we have:

Move(FP, Tmp1)
Add64(#1, Tmp1)

If we were to coalesce the Move, we would modify the frame pointer.
Well, that's exactly what was happening with IRC.

Since the epilogue is not know to Air before IRC, the liveness analysis
never discovers that FP is live when Tmp1 is UseDef by Add64. Adding
FP would a be a problem anyway for a bunch of reasons.

I tried two ways to prevent IRC to override IRC:
1) Add an interference edge with FP for all non-duplication Defs.
2) Let coalesce() know about FP and constraint any coalescing with a re-Def.

The two are within margin of error for performance. The second one was considerably
more complicated. This patch implements the first one.

Some extra note:
-It is very important to not increment the degree of a Tmp when making it interfere

with FP. FP is not a valid color, it is not counted in the "K" colors considered
for coloring. Increasing the degree with the edge to FP would make every stage
pessimistic since there is an extra degree that can never be removed.

-I put "interferenceEdges" and "adjacencyList" in an inconsistent state.

This is intentional, "interferenceEdges" is used to test the existence of an edge,
"adjacencyList" is used to go over all the edges. In this case, we don't want
the edge with FP to be considered when pruning the graph.

  • b3/air/AirIteratedRegisterCoalescing.cpp:

One branch could be transformed into an assertion: TmpLiveness is type specific now.

  • b3/testb3.cpp:

(JSC::B3::testOverrideFramePointer):
(JSC::B3::run):

2:13 PM Changeset in webkit [195980] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking imported/w3c/web-platform-tests/XMLHttpRequest/open-url-multi-window-4.htm as flaky on ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=153336

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
2:07 PM Changeset in webkit [195979] by timothy_horton@apple.com
  • 3 edits in trunk/Source/WebCore

Move some SPI declarations into the appropriate SPI header
https://bugs.webkit.org/show_bug.cgi?id=153755

Reviewed by Darin Adler.

  • platform/graphics/cocoa/IOSurface.mm:
  • platform/spi/cg/CoreGraphicsSPI.h:
1:50 PM Changeset in webkit [195978] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking http/tests/appcache/404-resource-with-slow-main-resource.php as flaky on ios-simulator-wk2
https://bugs.webkit.org/show_bug.cgi?id=153503

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
1:31 PM Changeset in webkit [195977] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking fast/replaced/preferred-widths.html as flaky on ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=153311

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
1:25 PM Changeset in webkit [195976] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Skip fast/shadow-dom/touch-event-ios.html on ios-simulator since touch events are not supported.
https://bugs.webkit.org/show_bug.cgi?id=149592

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
12:47 PM Changeset in webkit [195975] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebCore

Snapshot surfaces are forever wired after being compressed
https://bugs.webkit.org/show_bug.cgi?id=153751
<rdar://problem/24354546>

Reviewed by Darin Adler.

  • platform/graphics/cocoa/IOSurface.mm:

(IOSurface::convertToFormat):
Allow IOSurfaceAccelerator to unwire surfaces after they're transformed.

12:40 PM Changeset in webkit [195974] by bshafiei@apple.com
  • 2 edits in tags/Safari-602.1.18.0.1/Source/WebKit2

Merged r195964. rdar://problem/24424987

12:35 PM Changeset in webkit [195973] by bshafiei@apple.com
  • 5 edits in tags/Safari-602.1.18.0.1/Source

Versioning.

12:33 PM Changeset in webkit [195972] by bshafiei@apple.com
  • 1 copy in tags/Safari-602.1.18.0.1

New tag.

12:23 PM Changeset in webkit [195971] by mitz@apple.com
  • 5 edits in trunk/Source

<rdar://problem/20150072> [iOS] Remove some file upload code only needed before iOS 9
https://bugs.webkit.org/show_bug.cgi?id=153754

Reviewed by Darin Adler.

Source/WebCore:

  • English.lproj/Localizable.strings: Updated for removal of WebKit2 string.

Source/WebKit2:

  • Platform/spi/ios/UIKitSPI.h: Removed conditional forward declaration of SPI.
  • UIProcess/ios/forms/WKFileUploadPanel.mm:

(photoLibraryIcon): Removed check for HAVE_WEBKIT_DOC_PICKER_ICONS, which is always true in

iOS 9 and later.

(cameraIcon): Ditto.
(-[WKFileUploadPanel presentWithParameters:resultListener:]): Removed branch for when

UIDocumentMenuViewController doesn’t respond to
-_initIgnoringApplicationEntitlementForImportOfTypes:.

(-[WKFileUploadPanel _showMediaSourceSelectionSheet]): Deleted now-unused method.

11:45 AM Changeset in webkit [195970] by commit-queue@webkit.org
  • 8 edits in trunk/Source

Cache the Path instead of creating it every time it is required
https://bugs.webkit.org/show_bug.cgi?id=152939

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

Source/WebCore:

Instead of creating the Path object every time it is required, we should
cache it in an LRU cache. TinyLRUCache returns a reference to the cached
entry so we do not have to pay the cost of copying it either.

  • platform/graphics/FloatRoundedRect.h:

(WebCore::operator!=):
Implement the inequality operator for FloatRoundedRect since it is
called by TinyLRUCache.

  • rendering/ClipPathOperation.h:

Return a reference to the path in the cache since instead of creating a
new copy.

  • rendering/style/BasicShapes.cpp:

(WebCore::SVGPathTranslatedByteStream::SVGPathTranslatedByteStream):
(WebCore::SVGPathTranslatedByteStream::operator==):
(WebCore::SVGPathTranslatedByteStream::operator!=):
(WebCore::SVGPathTranslatedByteStream::isEmpty):
(WebCore::SVGPathTranslatedByteStream::path):
This struct holds an offset and an SVGPathByteStream. It is the key of
the LRU cache for the the translated SVGPathByteStream.

(WebCore::EllipsePathPolicy::isKeyNull):
(WebCore::EllipsePathPolicy::createValueForKey):
(WebCore::RoundedRectPathPolicy::isKeyNull):
(WebCore::RoundedRectPathPolicy::createValueForKey):
(WebCore::PolygonPathPolicy::isKeyNull):
(WebCore::PolygonPathPolicy::createValueForKey):
(WebCore::TranslatedByteStreamPathPolicy::isKeyNull):
(WebCore::TranslatedByteStreamPathPolicy::createValueForKey):
Inherit from the LRU cache policy template, so have a specific name for
the desired path contents and pass this class explicitly to the LRU cache
template.

(WebCore::cachedEllipsePath):
(WebCore::cachedRoundedRectPath):
(WebCore::cachedPolygonPath):
(WebCore::cachedTranslatedByteStreamPath):
Return a cached path object for specific path contents.

(WebCore::BasicShapeCircle::path):
(WebCore::BasicShapeEllipse::path):
(WebCore::BasicShapePolygon::path):
(WebCore::BasicShapePath::path):
(WebCore::BasicShapeInset::path):
Get the Path object from the cache; create a new one if it does not exist.

  • rendering/style/BasicShapes.h:

Change the prototype of the path() function to return a reference to the
path in the cache instead of a having to copying it.

  • svg/SVGPathByteStream.h:

(WebCore::SVGPathByteStream::operator!=):
Implement the inequality operator for SVGPathByteStream because it is
called by TinyLRUCache.

Source/WTF:

If the key type of an LRU cache can't to be strongly tided to a specific
data type; e.g. FloatRect -> Path, we need to be able to pass the policy
type to the TinyLRUCache template instead of just specializing it. This
will make the code more readable and will allow different caches for the
same key type.

  • wtf/TinyLRUCache.h:

(WebCore::TinyLRUCache::get):

11:42 AM Changeset in webkit [195969] by Chris Dumez
  • 20 edits in trunk

Move properties that use custom bindings to the prototype
https://bugs.webkit.org/show_bug.cgi?id=153735

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Rebaseline several W3C tests now that more checks are passing.

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

Source/WebCore:

Move properties that use custom bindings to the prototype. Whether a
property's bindings code is generated or custom-written should not
impact where the property is located.

No new tests, already covered by existing tests.

  • bindings/js/JSHTMLDocumentCustom.cpp:

(WebCore::JSHTMLDocument::getOwnPropertySlot):
Add null-check for staticPropHashTable. HTMLDocument no longer has
any property on the instance so staticPropHashTable is now null.

  • bindings/scripts/CodeGeneratorJS.pm:

LayoutTests:

Rebaseline / update existing tests now that properties using custom
bindings are on the prototype, as expected.

  • fast/mediastream/MediaStream-video-element-expected.txt:
  • fast/xmlhttprequest/xmlhttprequest-properties-prototype-expected.txt:
  • inspector/model/remote-object-get-properties-expected.txt:
  • js/dom/dom-attributes-on-mismatch-type-expected.txt:
  • js/dom/dom-attributes-on-mismatch-type.html:
  • platform/mac/inspector/model/remote-object-expected.txt:
11:05 AM Changeset in webkit [195968] by achristensen@apple.com
  • 5 edits in trunk

[Win] WTFHeaderDetection.h no longer needed
https://bugs.webkit.org/show_bug.cgi?id=153753
rdar://problem/24434627

Reviewed by Darin Adler.

.:

  • Source/cmake/WebKitFS.cmake:

Source/WTF:

  • wtf/Platform.h:
  • wtf/PlatformWin.cmake:
10:24 AM Changeset in webkit [195967] by Matt Baker
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Rendering Frames timeline draws all frame bars at minimum height
https://bugs.webkit.org/show_bug.cgi?id=153736
<rdar://problem/21946301>

Reviewed by Timothy Hatcher.

  • UserInterface/Views/TimelineRecordingContentView.js:

(WebInspector.TimelineRecordingContentView.prototype._currentContentViewDidChange):
Update the new timeline overview's height before it's shown. Showing the
overview causes the rendering frames graph to do a layout, which requires
the height of the containing view to be a valid value.

10:22 AM Changeset in webkit [195966] by Matt Baker
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: DataGridNode should support adding go-to arrow buttons to any cell
https://bugs.webkit.org/show_bug.cgi?id=153733
<rdar://problem/24431813>

Reviewed by Brian Burg.

Provide a way to add go-to arrow buttons to any grid cell from within a
DataGridNode subclass's implementation of createCellContent.

  • UserInterface/Views/DataGrid.js:

New event type, GoToArrowClicked.
(WebInspector.DataGridNode.prototype.createGoToArrowButton.buttonClicked):
(WebInspector.DataGridNode.prototype.createGoToArrowButton):
Adds a go-to arrow button to the cell's content element. Clicking the button
dispatches an event on the DataGrid, with event data containing the
DataGridNode and identifier of the cell containing the arrow button.

10:15 AM Changeset in webkit [195965] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

REGRESSION(r195770): Use-after-free in ResourceLoaderOptions::cachingPolicy
https://bugs.webkit.org/show_bug.cgi?id=153727
<rdar://problem/24429886>

Reviewed by Chris Dumez.

The this object may be freed after calling deleteIfPossible(). Make the early-return-if-
deleted more explicit, and only check allowsCaching() after the deleteIfPossible() return
value check.

  • loader/cache/CachedResource.cpp:

(WebCore::CachedResource::removeClient):

9:56 AM Changeset in webkit [195964] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

Stop linking to PassKit
https://bugs.webkit.org/show_bug.cgi?id=153746

Reviewed by Tim Horton.

  • Configurations/WebKit.xcconfig:
9:53 AM Changeset in webkit [195963] by mitz@apple.com
  • 7 edits in trunk/Source/WebKit2

[Cocoa] Get rid of WK_ macros for initializers
https://bugs.webkit.org/show_bug.cgi?id=153744

Reviewed by Anders Carlsson.

  • Shared/API/Cocoa/WKFoundation.h: Removed definitions of WK_DESIGNATED_INITIALIZER and WK_UNAVAILABLE.
  • mac/postprocess-framework-headers.sh: Removed rules for rewriting the above macros. Also removed Foundation import that became unnecessary, and definitions that were only needed before iOS 8.

Replaced instances of the above macros with their expansions.

  • UIProcess/API/Cocoa/WKProcessPoolPrivate.h:
  • UIProcess/API/Cocoa/WKSecurityOrigin.h:
  • UIProcess/API/Cocoa/WKWebView.h:
  • UIProcess/API/Cocoa/WKWebsiteDataStore.h:
9:02 AM Changeset in webkit [195962] by jmarcell@apple.com
  • 4 edits in trunk/Tools

Improvements to botwatcher's dashboard unit tests.
https://bugs.webkit.org/show_bug.cgi?id=153621

Reviewed by Darin Adler.

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

(PopoverTracker): Retain a reference to the PopoverTracker so that we can make assertions about it in the unit tests.

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

(MockTrac): Changing revision 33019 to be on a different branch so that _appendPendingRevisionCount and
_popoverLinesForCommitRange have to traverse commits from different branches.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/tests/tests.js: Changing equal to strictEqual

in unit test for _appendPendingRevisionCount. Also added assertions for Popover in test for
_revisionContentWithPopoverForIteration.

9:01 AM Changeset in webkit [195961] by jmarcell@apple.com
  • 3 edits in trunk/Tools

Refactor to add event listeners and start periodic updates for all trac instances.
https://bugs.webkit.org/show_bug.cgi?id=153609

Reviewed by Darin Adler.

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

(BuildbotQueueView): Adding event listeners for all trac instances.

  • BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Main.js: Starting periodic updates

for all trac instances.

8:00 AM Changeset in webkit [195960] by mitz@apple.com
  • 2 edits in trunk/Source/WebCore

Tried to fix a build after r195899.

  • dom/EventContext.h: Enabled TouchEventContext type trait specialization on iOS.
4:33 AM Changeset in webkit [195959] by youenn.fablet@crf.canon.fr
  • 6 edits in trunk/LayoutTests

Unreviewed. Updating global-constructors-attributes expectations after introducing Request in r195954.

4:31 AM Changeset in webkit [195958] by Csaba Osztrogonác
  • 2 edits in trunk/Source/WebKit2

One more unreviewed speculative buildfix after r195755.

  • PlatformMac.cmake:
4:19 AM Changeset in webkit [195957] by Csaba Osztrogonác
  • 2 edits in trunk/Source/WebKit2

Unreviewed speculative buildfix after r195755.

  • PlatformMac.cmake:
3:26 AM Changeset in webkit [195956] by Csaba Osztrogonác
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed speculative buildfix.

  • dfg/DFGCommon.h: FTL_USES_B3 should be false if FTL JIT is disabled.
3:20 AM Changeset in webkit [195955] by Csaba Osztrogonác
  • 2 edits in trunk/Source/WebKit2

Unreviewed speculative buildfix after r195795.

  • PlatformMac.cmake: Remove Shared/EntryPointUtilities/mac/XPCService/XPCServiceMain.Development.mm.
3:05 AM Changeset in webkit [195954] by youenn.fablet@crf.canon.fr
  • 23 edits
    2 copies
    36 adds in trunk

[Fetch API] Implement Fetch API Request
https://bugs.webkit.org/show_bug.cgi?id=153437

LayoutTests/imported/w3c:

Reviewed by Darin Adler.

  • web-platform-tests/fetch/api/headers/headers-basic.html:
  • web-platform-tests/fetch/api/request/request-clone.sub-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-clone.sub.html: Added.
  • web-platform-tests/fetch/api/request/request-consume-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-consume.html: Added.
  • web-platform-tests/fetch/api/request/request-disturbed-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-disturbed.html: Added.
  • web-platform-tests/fetch/api/request/request-error-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-error.html: Added.
  • web-platform-tests/fetch/api/request/request-headers-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-headers.html: Added.
  • web-platform-tests/fetch/api/request/request-idl-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-idl.html: Added.
  • web-platform-tests/fetch/api/request/request-init-001.sub-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-init-001.sub.html: Added.
  • web-platform-tests/fetch/api/request/request-init-002-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-init-002.html: Added.
  • web-platform-tests/fetch/api/request/request-init-003.sub-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-init-003.sub.html: Added.
  • web-platform-tests/fetch/api/request/request-structure-expected.txt: Added.
  • web-platform-tests/fetch/api/request/request-structure.html: Added.
  • web-platform-tests/fetch/api/resources/authentication.py: Added.

(main):

  • web-platform-tests/fetch/api/resources/clean-stash.py: Added.

(main):

  • web-platform-tests/fetch/api/resources/inspect-headers.py: Added.

(main):

  • web-platform-tests/fetch/api/resources/method.py: Added.

(main):

  • web-platform-tests/fetch/api/resources/preflight.py: Added.

(main):

  • web-platform-tests/fetch/api/resources/redirect.py: Added.

(main):

  • web-platform-tests/fetch/api/resources/top.txt: Added.
  • web-platform-tests/fetch/api/resources/trickle.py: Added.

(main):

  • web-platform-tests/fetch/api/resources/utils.js: Added.

(catch):
(dirname):
(checkRequest):
(readTextStream):

Source/WebCore:

Added support for Fetch Request and Body.
Body is sharing functionality between Request and Response.
Conversion between various body types are not implemented yet.

Added a FetchOptions class. Options in this class are partially redundant with ResourceLoaderOptions.

Fixing bug in Headers constructor.
Making error reporting in case of modifying headers compliant with the spec.

Reviewed by Darin Adler.

Tests: imported/w3c/web-platform-tests/fetch/api/request/request-clone.sub.html

imported/w3c/web-platform-tests/fetch/api/request/request-consume.html
imported/w3c/web-platform-tests/fetch/api/request/request-disturbed.html
imported/w3c/web-platform-tests/fetch/api/request/request-error.html
imported/w3c/web-platform-tests/fetch/api/request/request-headers.html
imported/w3c/web-platform-tests/fetch/api/request/request-idl.html
imported/w3c/web-platform-tests/fetch/api/request/request-init-001.sub.html
imported/w3c/web-platform-tests/fetch/api/request/request-init-002.html
imported/w3c/web-platform-tests/fetch/api/request/request-init-003.sub.html
imported/w3c/web-platform-tests/fetch/api/request/request-structure.html

  • CMakeLists.txt:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • Modules/fetch/FetchBody.cpp: Added.

(WebCore::FetchBody::initBody):
(WebCore::FetchBody::clear):
(WebCore::FetchBody::processIfEmptyOrDisturbed):
(WebCore::FetchBody::arrayBuffer):
(WebCore::FetchBody::formData):
(WebCore::FetchBody::blob):
(WebCore::FetchBody::text):
(WebCore::FetchBody::json):

  • Modules/fetch/FetchBody.h: Added.

(WebCore::FetchBody::~FetchBody):
(WebCore::FetchBody::isEmpty):
(WebCore::FetchBody::isDisturbed):
(WebCore::FetchBody::setDisturbed):
(WebCore::FetchBody::setMimeType):
(WebCore::FetchBody::mimeType):

  • Modules/fetch/FetchBody.idl: Added.
  • Modules/fetch/FetchHeaders.cpp:

(WebCore::canWriteHeader):
(WebCore::FetchHeaders::append):
(WebCore::FetchHeaders::remove):
(WebCore::FetchHeaders::set):
(WebCore::FetchHeaders::fill): Helper routine implementing https://fetch.spec.whatwg.org/#concept-headers-fill

  • Modules/fetch/FetchHeaders.h: Adding header getter/setter for FetchRequest.

(WebCore::FetchHeaders::fastGet):
(WebCore::FetchHeaders::fastSet):

  • Modules/fetch/FetchHeaders.js: Fixing bug in constructor (covered by modified headers-basc.html test).

(initializeFetchHeaders):

  • Modules/fetch/FetchOptions.h: Added.

(WebCore::FetchOptions::FetchOptions):
(WebCore::FetchOptions::type):
(WebCore::FetchOptions::destination):
(WebCore::FetchOptions::mode):
(WebCore::FetchOptions::credentials):
(WebCore::FetchOptions::cache):
(WebCore::FetchOptions::redirect):
(WebCore::FetchOptions::referrerPolicy):
(WebCore::FetchOptions::setType):
(WebCore::FetchOptions::setDestination):
(WebCore::FetchOptions::setMode):
(WebCore::FetchOptions::setCredentials):
(WebCore::FetchOptions::setCache):
(WebCore::FetchOptions::setRedirect):
(WebCore::FetchOptions::setReferrerPolicy):

  • Modules/fetch/FetchRequest.cpp: Added.

(WebCore::FetchRequest::create):
(WebCore::FetchRequest::FetchRequest):
(WebCore::FetchRequest::init):
(WebCore::FetchRequest::setReferrer):
(WebCore::FetchRequest::setReferrerPolicy):
(WebCore::FetchRequest::setMode):
(WebCore::FetchRequest::setCredentials):
(WebCore::FetchRequest::setCache):
(WebCore::FetchRequest::setRedirect):
(WebCore::FetchRequest::type):
(WebCore::FetchRequest::destination):
(WebCore::FetchRequest::referrerPolicy):
(WebCore::FetchRequest::referrer):
(WebCore::FetchRequest::mode):
(WebCore::FetchRequest::credentials):
(WebCore::FetchRequest::cache):
(WebCore::FetchRequest::redirect):
(WebCore::FetchRequest::setMethod):
(WebCore::FetchRequest::clone):

  • Modules/fetch/FetchRequest.h: Added.

(WebCore::FetchRequest::method):
(WebCore::FetchRequest::url):
(WebCore::FetchRequest::integrity):
(WebCore::FetchRequest::headers):

  • Modules/fetch/FetchRequest.idl: Added.
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/Dictionary.h:

(WebCore::Dictionary::execState):

  • bindings/js/JSDictionary.cpp:

(WebCore::JSDictionary::convertValue):

  • bindings/js/JSDictionary.h:

(WebCore::JSDictionary::get):

LayoutTests:

Reviewed by Darin Adler.

  • 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:

Jan 31, 2016:

10:34 PM Changeset in webkit [195953] by commit-queue@webkit.org
  • 17 edits
    4 adds in trunk

Add resize event for HTMLMediaElement
https://bugs.webkit.org/show_bug.cgi?id=125715

Patch by Jeremy Jones <jeremyj@apple.com> on 2016-01-31
Reviewed by Darin Adler.
LayoutTests/imported/w3c:

Rebaselined test after moving 'resize' from DOMWindow.idl to GlobalEventHandlers.idl
per https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers

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

Source/WebCore:

Tests: http/tests/media/hls/hls-video-resize.html

media/video-resize.html

Move resize javascript event from DOMWindow.idl to GlobalEventHandlers.idl
per https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers

Post resize event from video element when metadata loads and when content size changes.

  • dom/GlobalEventHandlers.idl: Add onresize.
  • html/HTMLElement.cpp:

(WebCore::HTMLElement::createEventHandlerNameMap): Add onresizeAttr.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::setReadyState):
(WebCore::HTMLMediaElement::mediaPlayerSizeChanged):

  • html/HTMLMediaElement.h:

(WebCore::HTMLMediaElement::scheduleResizeEvent):
(WebCore::HTMLMediaElement::scheduleResizeEventIfSizeChanged):

  • html/HTMLVideoElement.cpp:

(WebCore::HTMLVideoElement::scheduleResizeEvent): Sechedule event.
(WebCore::HTMLVideoElement::scheduleResizeEventIfSizeChanged): Schedule event if size has changed.

  • html/HTMLVideoElement.h: Add declarations.
  • page/DOMWindow.idl: Remove onresize.

Source/WebInspectorUI:

Add a display name for "resize" event.

  • UserInterface/Models/ScriptTimelineRecord.js:

(WebInspector.ScriptTimelineRecord.EventType.displayName):

LayoutTests:

Update test for change: move resize javascript event from DOMWindow.idl to GlobalEventHandlers.idl
per https://html.spec.whatwg.org/multipage/webappapis.html#globaleventhandlers

  • fast/dom/event-handler-attributes-expected.txt: Rebaselined.
  • fast/dom/event-handler-attributes.html:

Move resize from uniqueWindowEvents to eventsInGlobalEventHandlers.

  • http/tests/media/hls/hls-video-resize-expected.txt: Added.
  • http/tests/media/hls/hls-video-resize.html: Added.
  • js/dom/dom-static-property-for-in-iteration-expected.txt: Rebaselined.
  • media/video-resize-expected.txt: Added.
  • media/video-resize.html: Added.
  • media/video-test.js:

(requiredEvents): Deleted global. Value is now captured by closure.
(waitForEventsAndCall): Remove dependence on global variable, and fix event observation leak.

9:51 PM Changeset in webkit [195952] by Darin Adler
  • 2 edits in trunk/Source/WebCore

Revert accidental behavior change from previous patch.

  • platform/URL.cpp:

(WebCore::mimeTypeFromDataURL): Restore behavior where an empty MIME type would
be turned into "text/plain".

9:46 PM Changeset in webkit [195951] by Darin Adler
  • 53 edits in trunk/Source

Cut down on calls to String::lower; mostly replace with convertToASCIILowercase
https://bugs.webkit.org/show_bug.cgi?id=153732

Reviewed by Dean Jackson.

Source/WebCore:

  • Modules/mediasource/MediaSource.cpp:

(WebCore::MediaSource::isTypeSupported): Added comment about mysterious call
to lower(); should probably return here and remove it.

  • Modules/navigatorcontentutils/NavigatorContentUtils.cpp:

(WebCore::initProtocolHandlerWhitelist): Deleted. Moved into isProtocolWhitelisted.
(WebCore::isProtocolWhitelisted): Changed set to be ASCIICaseInsensitiveHash and
initialized it using a lambda instead of a separate function.
(WebCore::verifyProtocolHandlerScheme): Added a FIXME about some case sensitive
checking of the protocol prefix here.

  • Modules/plugins/QuickTimePluginReplacement.mm:

(WebCore::QuickTimePluginReplacement::supportsMimeType): Changed set to be
ASCIICaseInsensitiveHash and initialized it using a lambda instead of using
an explict check for empty.
(WebCore::QuickTimePluginReplacement::supportsFileExtension): Ditto.

  • Modules/plugins/YouTubePluginReplacement.cpp:

(WebCore::queryKeysAndValues): Use convertToASCIILowercase. The keys here are
going to be all ASCII.
(WebCore::isYouTubeURL): Use equalLettersIgnoringASCIICase instead of lowercasing
the string.
(WebCore::processAndCreateYouTubeURL): Use url.protocolIsInHTTPFamily instead of
listing "http" and then "https" explicitly. Use equalLettersIgnoringASCIICase
instead of lowercasing a string.
(WebCore::YouTubePluginReplacement::youTubeURL): Ditto.

  • Modules/websockets/WebSocketHandshake.cpp:

(WebCore::hostName): Use convertToASCIILowercase on host name.
(WebCore::WebSocketHandshake::host): Ditto.

  • accessibility/atk/WebKitAccessibleWrapperAtk.cpp:

(webkitAccessibleGetAttributes): Call convertToASCIILowercase instead of lower
to lowercase an element's tag name. This is a strange way to do things; typically
would be better to use some other function on Element, since tagName goes out of
its way to be capitalized, but some ATK expert can improve this later.

  • css/CSSGrammar.y.in: Use the new convertToASCIILowercaseInPlace function rather

than the old lower function. We only need to lowercase the ASCII letters, and it's
also better to have the function have a clearer name.

  • css/CSSParser.cpp:

(WebCore::convertToASCIILowercaseInPlace): Renamed from makeLower and made it deal
with only ASCII lowercasing.
(WebCore::CSSParserString::convertToASCIILowercaseInPlace): Renamed from lower.
(WebCore::isUniversalKeyword): Added. Helper for the function below that uses
equalLettersIgnoringASCIICase rather than lowercasing the string.
(WebCore::parseKeywordValue): Use isUniversalKeyword. Also clarified a comment.
(WebCore::CSSParser::parseAttr): Use convertToASCIILowercaseInPlace and delay
String creation until later in the function, using CSSParserString operations more.

  • css/CSSParserValues.cpp:

(WebCore::CSSParserSelector::parsePseudoElementSelector): Use
convertToASCIILowercaseInPlace by its new name, with its new behavior.

  • css/CSSParserValues.h: Tweaked comment and formatting a bit. Replaced the lower

function with the convertToASCIILowercaseInPlace function.

  • css/CSSSelector.cpp:

(WebCore::CSSSelector::RareData::parseNth): Rewrote this to avoid the need to
make a lowercased copy of m_argument. Use equalLettersIgnoringASCIICase, and two
calls to find. Also use String::toIntStrict so we don't have to create String
objects for substrings.

  • css/MediaQuery.cpp:

(WebCore::MediaQuery::MediaQuery): Use convertToASCIILowercase for media type name.

  • css/MediaQueryExp.cpp:

(WebCore::MediaQueryExp::serialize): Use convertToASCIILowercase for media feature name.

  • dom/Document.cpp:

(WebCore::isSeparator): Tweaked formatting and removed non-helpful comment.
(WebCore::processArguments): Changed this from a static member function to a non-member
file internal function. Use a std::function instead of a function pointer with a void*
pointer. Rewrote algorithm to simplify it and use StringView instead of String for the
keys and values.
(WebCore::Document::processViewport): Use a lambda instead of a function pointer to
call setViewportFeature, so that function's interface is no longer dictated by
the exact type of the function pointer argument to processArguments.
(WebCore::Document::processFormatDetection): Use a lambda instead of the
setParserFeature function above; use equalLettersIgnoringASCIICase for both the
key and the value, since processArguments no longer lowercases the string.
(WebCore::Document::processArguments): Deleted.

  • dom/Document.h: Removed unnecessary declaration of processArguments and

ArgumentsCallback. Both are now private to the cpp file.

  • dom/Element.cpp:

(WebCore::makeIdForStyleResolution): Use convertToASCIILowercase. When in quirks mode,
we want to match IDs in an ASCII case-insensitive way not match compatibility caseless.

  • dom/ScriptElement.cpp:

(WebCore::ScriptElement::isScriptTypeSupported): Remove the use of lower here since
the MIME type registry is now itself ASCII case-insensitive.

  • dom/ViewportArguments.cpp:

(WebCore::numericPrefix): Changed to use StringView and take a Document&, rearranged
argument order so Document& comes first.
(WebCore::findSizeValue): Ditto.
(WebCore::findScaleValue): Ditto.
(WebCore::findBooleanValue): Ditto. Also use std::abs instead of fabs, possibly
avoiding a conversion from float to double (not sure it was happening before but it's
definitely not happening now).
(WebCore::setViewportFeature): Changed to put arguments in a more logical order, to take
the ViewportArguments as a reference, not a void*, and to use StringView to avoid forcing
the caller to allocate strings. Also changed to use equalLettersIgnoringASCIICase so we
don't rely on the caller to make the key lowercase for us.
(WebCore::reportViewportWarning): Changed argument types. Added a couple comments about
mistakes in the function.

  • dom/ViewportArguments.h: Removed unnecessary declaration of reportViewportWarning,

which is now private to the cpp file. Updated for new arguments to setViewportFeature.

  • editing/EditorCommand.cpp:

(WebCore::executeFormatBlock): Use convertToASCIILowercase on the argument, which is
specifying a tag name.

  • fileapi/Blob.cpp:

(WebCore::Blob::isValidContentType): Removed unnecessary separate loops for
8-bit and 16-bit strings. Content types are short strings and this small optimization is
not worth the additional code complexity.
(WebCore::Blob::normalizedContentType): Use convertToASCIILowercase since valid
content types are guaranteed to be all ASCII.
(WebCore::Blob::isNormalizedContentType): Removed unnecessary separate loops for
8-bit and 16-bit strings. Content types are short strings and this small optimization is
not worth the additional code complexity.

  • html/parser/HTMLParserIdioms.cpp: Added now-needed include of QualifiedName.h.
  • html/parser/HTMLParserIdioms.h: Removed unneeded include of QualifiedName.h and

WTFString.h. Made sure every function is declared first, even if it's also defined
later in the header in the section for functions templates and inline functions.

  • loader/archive/ArchiveFactory.cpp:

(WebCore::ArchiveFactory::registerKnownArchiveMIMETypes): Use auto& for the type of
the set of MIME types here, since it's now using ASCIICaseInsensitiveHash.

  • platform/MIMETypeRegistry.cpp: Changed the MIME type sets to use

ASCIICaseInsensitiveHash since MIME type are not case sensitive.
(WebCore::initializeSupportedImageMIMETypes): Use a modern for loop.
(WebCore::initializeSupportedImageMIMETypesForEncoding): Updated for HashSet type change.
(WebCore::initializePDFMIMETypes): Use a modern for loop.
(WebCore::initializeSupportedNonImageMimeTypes): Use a modern for loop.
(WebCore::initializeSupportedMediaMIMETypes): Updated for HashSet type change.
(WebCore::initializeUnsupportedTextMIMETypes): Use a modern for loop.
(WebCore::initializeMIMETypeRegistry): Updated for HashSet type change.
(WebCore::MIMETypeRegistry::getSupportedImageMIMETypes): Ditto.
(WebCore::MIMETypeRegistry::getSupportedImageResourceMIMETypes): Ditto.
(WebCore::MIMETypeRegistry::getSupportedImageMIMETypesForEncoding): Ditto.
(WebCore::MIMETypeRegistry::getSupportedNonImageMIMETypes): Ditto.
(WebCore::MIMETypeRegistry::getSupportedMediaMIMETypes): Ditto.
(WebCore::MIMETypeRegistry::getPDFMIMETypes): Ditto.
(WebCore::MIMETypeRegistry::getPDFAndPostScriptMIMETypes): Ditto.
(WebCore::MIMETypeRegistry::getUnsupportedTextMIMETypes): Ditto.
(WebCore::mimeTypeAssociationMap): Use ASCIICaseInsensitiveHash.
(WebCore::MIMETypeRegistry::getNormalizedMIMEType): Use auto to make code tighter.

  • platform/MIMETypeRegistry.h: Changed return types of the getMIMETypes functions

to use ASCIICaseInsensitiveHash.

  • platform/SchemeRegistry.cpp:

(WebCore::schemesForbiddenFromDomainRelaxation): Changed type to
use ASCIICaseInsensitiveHash.

  • platform/URL.cpp:

(WebCore::mimeTypeFromDataURL): Use convertToASCIILowercase instead of lower.
Also removed some dead code that tried to handle the case where the data URL
has a comma as one of the first 5 characters: That can't happen since it's a
precondition of this function that the first five characters are "data:".

  • platform/graphics/MediaPlayer.cpp:

(WebCore::MediaPlayer::getSupportedTypes): Change type of argument to
a HashSet with ASCIICaseInsensitiveHash.

  • platform/graphics/MediaPlayer.h: Ditto.
  • platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:

(WebCore::MediaPlayerPrivateAVFoundation::staticMIMETypeList):
Changed type of HashSet to use ASCIICaseInsensitiveHash.

  • platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h: Ditto.
  • platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:

(WebCore::avfMIMETypes):
Changed type of HashSet to use ASCIICaseInsensitiveHash.
(WebCore::MediaPlayerPrivateAVFoundationCF::getSupportedTypes): Ditto.

  • platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.h: Ditto.
  • platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:

Changed type of HashSet to use ASCIICaseInsensitiveHash.

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

(WebCore::MediaPlayerPrivateAVFoundationObjC::paintWithImageGenerator): Removed
an unnecessary line of code to set a local variable to 0 just before it falls
out of scope.
(WebCore::avfMIMETypes): Ditto. Also tightened up the code a bit.
(WebCore::MediaPlayerPrivateAVFoundationObjC::getSupportedTypes): Ditto.

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

Changed type of HashSet to use ASCIICaseInsensitiveHash.

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

(WebCore::mimeTypeCache): Ditto.
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::getSupportedTypes): Ditto.

  • platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaStreamAVFObjC.h: Ditto.
  • platform/graphics/avfoundation/objc/MediaPlayerPrivateMediaStreamAVFObjC.mm:

(WebCore::MediaPlayerPrivateMediaStreamAVFObjC::getSupportedTypes): Ditto.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::mimeTypeCache): Ditto.
(WebCore::MediaPlayerPrivateGStreamer::getSupportedTypes): Ditto.

  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h: Ditto.
  • platform/graphics/mac/MediaPlayerPrivateQTKit.h: Ditto.
  • platform/graphics/mac/MediaPlayerPrivateQTKit.mm:

(WebCore::shouldRejectMIMEType): Made this non-case-sensitive by using startsWith
and the "false" argument. Later change this to startsWithIgnoringASCIICase or
startsWithLettersIgnoringASCIICase.
(WebCore::addFileTypesToCache): Use ASCIICaseInsensitiveHash. ALso rewrote to
tighten up the code a bit and use modern Objective-C for loops.
(WebCore::mimeCommonTypesCache): Use ASCIICaseInsensitiveHash.
(WebCore::mimeModernTypesCache): Ditto.
(WebCore::concatenateHashSets): Ditto.
(WebCore::MediaPlayerPrivateQTKit::getSupportedTypes): Ditto.
(WebCore::MediaPlayerPrivateQTKit::disableUnsupportedTracks): Initialied
track type set using lambda, but left it case sensitive.

  • platform/graphics/win/MediaPlayerPrivateMediaFoundation.cpp:

(WebCore::mimeTypeCache): Changed type of HashSet to use ASCIICaseInsensitiveHash.
(WebCore::MediaPlayerPrivateMediaFoundation::getSupportedTypes): Ditto.

  • platform/graphics/win/MediaPlayerPrivateMediaFoundation.h:
  • platform/mock/mediasource/MockMediaPlayerMediaSource.cpp:

(WebCore::mimeTypeCache): Ditto.
(WebCore::MockMediaPlayerMediaSource::getSupportedTypes): Ditto.

  • platform/mock/mediasource/MockMediaPlayerMediaSource.h: Ditto.

Source/WebKit/mac:

  • WebView/WebHTMLRepresentation.mm:

(newArrayWithStrings): Updated to use HashSet<String, ASCIICaseInsensitiveHash>
and also to use a modern for loop.

Source/WTF:

  • wtf/text/StringView.h: Added toIntStrict. Not thrilled about the name of this

function, but generally it seems likely to be useful more often than toInt.
And it's needed for one call site in WebCore that was using String::lower.

8:44 PM Changeset in webkit [195950] by Brent Fulgham
  • 3 edits
    4 adds in trunk

Add "WebKit built-in PDF" Plugin to set of publicly visible plugins
https://bugs.webkit.org/show_bug.cgi?id=153657
<rdar://problem/24413107>

Reviewed by Darin Adler.

Source/WebCore:

Tested by http/tests/plugins/visible_plugins.html.

A number of poorly-coded sites break when WebKit reports that it understands PDF mime types,
but does not have a list of plugins that the site can iterate through.

To avoid this compatibility problem, we should also expose the "WebKit built-in PDF" plugin
to avoid this edge case.

  • plugins/PluginData.cpp:

(WebCore::shouldBePubliclyVisible): Add "WebKit built-in PDF" plugin.

LayoutTests:

  • http/tests/plugins/visible_plugins-expected.txt: Added.
  • http/tests/plugins/visible_plugins.html: Added.
  • platform/mac-wk2/http/tests/plugins: Added.
  • platform/mac-wk2/http/tests/plugins/visible_plugins-expected.txt: Added.
8:09 PM Changeset in webkit [195949] by commit-queue@webkit.org
  • 11 edits
    2 adds in trunk

AX: Add a boundary value to AXTextStateChangeType
https://bugs.webkit.org/show_bug.cgi?id=153085

Patch by Doug Russell <d_russell@apple.com> on 2016-01-31
Reviewed by Darin Adler.

Post an AT notification when navigation is attempted past
an editable element's boundaries.

Source/WebCore:

Test: accessibility/mac/selection-boundary-userinfo.html

  • accessibility/AXObjectCache.cpp:

(WebCore::AXObjectCache::showIntent):

  • accessibility/AXTextStateChangeIntent.h:
  • accessibility/mac/AXObjectCacheMac.mm:

(platformChangeTypeForWebCoreChangeType):
(WebCore::AXObjectCache::postTextStateChangePlatformNotification):

  • editing/FrameSelection.cpp:

(WebCore::FrameSelection::modifyMovingRight):
(WebCore::FrameSelection::modifyMovingForward):
(WebCore::FrameSelection::modifyMovingLeft):
(WebCore::FrameSelection::modifyMovingBackward):
(WebCore::textSelectionWithDirectionAndGranularity):
(WebCore::FrameSelection::modify):
(WebCore::FrameSelection::modifyExtendingBackward): Deleted.
(WebCore::FrameSelection::textSelectionIntent): Deleted.

  • editing/FrameSelection.h:
  • editing/VisiblePosition.cpp:

(WebCore::VisiblePosition::next):
(WebCore::VisiblePosition::previous):
(WebCore::VisiblePosition::left):
(WebCore::VisiblePosition::right):
(WebCore::VisiblePosition::honorEditingBoundaryAtOrBefore):
(WebCore::VisiblePosition::honorEditingBoundaryAtOrAfter):
(WebCore::VisiblePosition::leftVisuallyDistinctCandidate): Deleted.
(WebCore::VisiblePosition::rightVisuallyDistinctCandidate): Deleted.

  • editing/VisiblePosition.h:
  • editing/VisibleUnits.cpp:

(WebCore::startOfLine):
(WebCore::logicalStartOfLine):
(WebCore::endOfLine):
(WebCore::logicalEndOfLine):
(WebCore::leftBoundaryOfLine):
(WebCore::rightBoundaryOfLine):
(WebCore::inSameLogicalLine): Deleted.
(WebCore::endOfEditableContent): Deleted.
(WebCore::isEndOfEditableOrNonEditableContent): Deleted.

  • editing/VisibleUnits.h:

LayoutTests:

  • accessibility/mac/selection-boundary-userinfo-expected.txt: Added.
  • accessibility/mac/selection-boundary-userinfo.html: Added.
7:10 PM Changeset in webkit [195948] by dbates@webkit.org
  • 26 edits
    10 adds in trunk

CSP: Use the served CSP header for dedicated workers
https://bugs.webkit.org/show_bug.cgi?id=153157
<rdar://problem/24383254>
And
https://bugs.webkit.org/show_bug.cgi?id=153156
<rdar://problem/24383246>

Patch by Daniel Bates <dabates@apple.com> on 2016-01-31
Reviewed by Brent Fulgham.

Source/WebCore:

Inspired by Blink commit:
<https://src.chromium.org/viewvc/blink?revision=194143&view=revision>

Implement support for respecting Content Security Policy (CSP) HTTP headers included in the
HTTP response for a Web Worker's script as per section Workers of the CSP 2.0 spec,
<https://w3c.github.io/webappsec-csp/2/#processing-model-workers> (29 August 2015).

Currently a Web Worker always inherits the CSP of its owner document. Instead a web worker
will inherit the CSP of its owner document only if its script is incapable of defining a
content security policy (i.e. its origin is a globally unique identifier). Otherwise, the
CSP HTTP headers delivered with the script will be used to define the CSP for the worker.

Tests: fast/workers/worker-inherits-csp-blocks-eval.html

fast/workers/worker-inherits-csp-blocks-xhr.html
http/tests/security/contentSecurityPolicy/worker-blob-inherits-csp-blocks-eval.html

  • CMakeLists.txt: Add file ContentSecurityPolicyResponseHeaders.cpp.
  • WebCore.vcxproj/WebCore.vcxproj: Add files ContentSecurityPolicyResponseHeaders.{cpp, h}.
  • WebCore.vcxproj/WebCore.vcxproj.filters: Ditto.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • dom/Document.cpp:

(WebCore::Document::processHttpEquiv): Update code to use enum class ContentSecurityPolicyHeaderType.

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::didBeginDocument): Extract logic to collect Content Security Policy HTTP headers
into class ContentSecurityPolicyResponseHeaders and make use of it here.

  • page/csp/ContentSecurityPolicy.cpp:

(WebCore::CSPDirectiveList::headerType): Modified to use enum class ContentSecurityPolicyHeaderType.
(WebCore::CSPDirectiveList::CSPDirectiveList): Ditto.
(WebCore::CSPDirectiveList::create): Ditto.
(WebCore::ContentSecurityPolicy::responseHeaders): Creates and returns a ContentSecurityPolicyResponseHeaders
object with the parsed CSP policy headers.
(WebCore::ContentSecurityPolicy::didReceiveHeaders): Processed the CSP policy headers represented by the
specified ContentSecurityPolicyResponseHeaders object.
(WebCore::ContentSecurityPolicy::deprecatedHeader): Deleted.
(WebCore::ContentSecurityPolicy::deprecatedHeaderType): Deleted.

  • page/csp/ContentSecurityPolicy.h: Defines a class that represents a collection of CSP policy headers.

This class has two purposes:

  • It extracts the CSP policy headers from a HTTP response (ResourceResponse object). We make use of this functionality in both FrameLoader::didBeginDocument() and Worker::didReceiveResponse().
  • It serves as a memento that externalizes the internal CSP policy details of an instance of ContentSecurityPolicy. We make use of this memento functionality to support inheriting the CSP policy of the worker's owner document in a thread-safe manner. You can create and restore a memento using ContentSecurityPolicy::responseHeaders() and ContentSecurityPolicy::didReceiveHeaders(), respectively.
  • page/csp/ContentSecurityPolicyResponseHeaders.cpp: Added.

(WebCore::ContentSecurityPolicyResponseHeaders::ContentSecurityPolicyResponseHeaders): Extracts the
CSP HTTP headers from a ResourceResponse object.
(WebCore::ContentSecurityPolicyResponseHeaders::isolatedCopy): Make a copy of this object that is
safe to pass to another thread.

  • page/csp/ContentSecurityPolicyResponseHeaders.h: Added.
  • workers/DedicatedWorkerGlobalScope.cpp:

(WebCore::DedicatedWorkerGlobalScope::create): Modified to use class ContentSecurityPolicyResponseHeaders.

  • workers/DedicatedWorkerGlobalScope.h:
  • workers/DedicatedWorkerThread.cpp:

(WebCore::DedicatedWorkerThread::create): Ditto.
(WebCore::DedicatedWorkerThread::DedicatedWorkerThread): Ditto.
(WebCore::DedicatedWorkerThread::createWorkerGlobalScope): Ditto.

  • workers/DedicatedWorkerThread.h:
  • workers/Worker.cpp:

(WebCore::Worker::didReceiveResponse): Create a ContentSecurityPolicyResponseHeaders if the origin of
the worker's script is capable of providing a CSP. Otherwise, we will inherit the CSP of the worker's owner
document in Worker::notifyFinished().
(WebCore::Worker::notifyFinished): Pass the appropriate CSP response headers to WorkerMessagingProxy::startWorkerGlobalScope().

  • workers/Worker.h:
  • workers/WorkerGlobalScope.cpp:

(WebCore::WorkerGlobalScope::applyContentSecurityPolicyResponseHeaders): Renamed; formerly named applyContentSecurityPolicyFromString().
Modified to take a ContentSecurityPolicyResponseHeaders and apply it to the ContentSecurityPolicy object associated with the worker.
(WebCore::WorkerGlobalScope::applyContentSecurityPolicyFromString): Deleted.

  • workers/WorkerGlobalScope.h:
  • workers/WorkerMessagingProxy.cpp:

(WebCore::WorkerMessagingProxy::startWorkerGlobalScope): Pass the worker's ContentSecurityPolicyResponseHeaders object.

  • workers/WorkerThread.cpp:

(WebCore::WorkerThreadStartupData::WorkerThreadStartupData): Added field m_contentSecurityPolicyResponseHeaders to store
the CSP response headers to be applied to the worker's ContentSecurityPolicy object.
(WebCore::WorkerThread::WorkerThread): Modified to use ContentSecurityPolicyResponseHeaders.
(WebCore::WorkerThread::workerThread): Pass the ContentSecurityPolicyResponseHeaders object from the start up data struct
to DedicatedWorkerThread::createWorkerGlobalScope().

  • workers/WorkerThread.h:

LayoutTests:

Add new tests to ensure we block eval() in blob-, file-URL workers and block XHR in a file-URL worker.

  • TestExpectations: Remove now passing tests http/tests/security/contentSecurityPolicy/worker-{multiple-csp-headers, without-own-csp}.html

and update the associated bug # for tests that fail.

  • fast/workers/resources/worker-inherits-csp-blocks-eval.js: Added.

(catch):

  • fast/workers/resources/worker-inherits-csp-blocks-xhr.js: Added.

(catch):

  • fast/workers/worker-inherits-csp-blocks-eval-expected.txt: Added.
  • fast/workers/worker-inherits-csp-blocks-eval.html: Added.
  • fast/workers/worker-inherits-csp-blocks-xhr-expected.txt: Added.
  • fast/workers/worker-inherits-csp-blocks-xhr.html: Added.
  • http/tests/security/contentSecurityPolicy/worker-blob-inherits-csp-blocks-eval-expected.txt: Added.
  • http/tests/security/contentSecurityPolicy/worker-blob-inherits-csp-blocks-eval.html: Added.
  • http/tests/security/contentSecurityPolicy/worker-multiple-csp-headers-expected.txt: Updated expected results as

the result was incorrect.

  • http/tests/security/contentSecurityPolicy/worker-without-own-csp-expected.txt: Ditto.
6:22 PM Changeset in webkit [195947] by Hunseop Jeong
  • 322 edits in trunk/LayoutTests

Unreviewed. EFL gardening: rebaseline tests after r195740. (more to follow)

  • platform/efl/css1/basic/containment-expected.txt:
  • platform/efl/css1/basic/contextual_selectors-expected.txt:
  • platform/efl/css1/basic/grouping-expected.txt:
  • platform/efl/css1/basic/id_as_selector-expected.txt:
  • platform/efl/css1/basic/inheritance-expected.txt:
  • platform/efl/css1/box_properties/border-expected.txt:
  • platform/efl/css1/box_properties/border_bottom-expected.txt:
  • platform/efl/css1/box_properties/border_bottom_inline-expected.txt:
  • platform/efl/css1/box_properties/border_bottom_width-expected.txt:
  • platform/efl/css1/box_properties/border_bottom_width_inline-expected.txt:
  • platform/efl/css1/box_properties/border_color-expected.txt:
  • platform/efl/css1/box_properties/border_color_inline-expected.txt:
  • platform/efl/css1/box_properties/border_inline-expected.txt:
  • platform/efl/css1/box_properties/border_left-expected.txt:
  • platform/efl/css1/box_properties/border_left_inline-expected.txt:
  • platform/efl/css1/box_properties/border_left_width-expected.txt:
  • platform/efl/css1/box_properties/border_left_width_inline-expected.txt:
  • platform/efl/css1/box_properties/border_right-expected.txt:
  • platform/efl/css1/box_properties/border_right_inline-expected.txt:
  • platform/efl/css1/box_properties/border_right_width-expected.txt:
  • platform/efl/css1/box_properties/border_right_width_inline-expected.txt:
  • platform/efl/css1/box_properties/border_style-expected.txt:
  • platform/efl/css1/box_properties/border_style_inline-expected.txt:
  • platform/efl/css1/box_properties/border_top-expected.txt:
  • platform/efl/css1/box_properties/border_top_inline-expected.txt:
  • platform/efl/css1/box_properties/border_top_width-expected.txt:
  • platform/efl/css1/box_properties/border_top_width_inline-expected.txt:
  • platform/efl/css1/box_properties/clear-expected.txt:
  • platform/efl/css1/box_properties/clear_float-expected.txt:
  • platform/efl/css1/box_properties/float-expected.txt:
  • platform/efl/css1/box_properties/float_elements_in_series-expected.txt:
  • platform/efl/css1/box_properties/float_margin-expected.txt:
  • platform/efl/css1/box_properties/height-expected.txt:
  • platform/efl/css1/box_properties/margin-expected.txt:
  • platform/efl/css1/box_properties/margin_bottom-expected.txt:
  • platform/efl/css1/box_properties/margin_bottom_inline-expected.txt:
  • platform/efl/css1/box_properties/margin_inline-expected.txt:
  • platform/efl/css1/box_properties/margin_left-expected.txt:
  • platform/efl/css1/box_properties/margin_left_inline-expected.txt:
  • platform/efl/css1/box_properties/margin_right-expected.txt:
  • platform/efl/css1/box_properties/margin_right_inline-expected.txt:
  • platform/efl/css1/box_properties/margin_top-expected.txt:
  • platform/efl/css1/box_properties/margin_top_inline-expected.txt:
  • platform/efl/css1/box_properties/padding-expected.txt:
  • platform/efl/css1/box_properties/padding_bottom-expected.txt:
  • platform/efl/css1/box_properties/padding_bottom_inline-expected.txt:
  • platform/efl/css1/box_properties/padding_inline-expected.txt:
  • platform/efl/css1/box_properties/padding_left-expected.txt:
  • platform/efl/css1/box_properties/padding_left_inline-expected.txt:
  • platform/efl/css1/box_properties/padding_right-expected.txt:
  • platform/efl/css1/box_properties/padding_right_inline-expected.txt:
  • platform/efl/css1/box_properties/padding_top-expected.txt:
  • platform/efl/css1/box_properties/padding_top_inline-expected.txt:
  • platform/efl/css1/box_properties/width-expected.txt:
  • platform/efl/css1/cascade/cascade_order-expected.txt:
  • platform/efl/css1/cascade/important-expected.txt:
  • platform/efl/css1/classification/display-expected.txt:
  • platform/efl/css1/classification/list_style-expected.txt:
  • platform/efl/css1/classification/list_style_image-expected.txt:
  • platform/efl/css1/classification/list_style_position-expected.txt:
  • platform/efl/css1/classification/list_style_type-expected.txt:
  • platform/efl/css1/classification/white_space-expected.txt:
  • platform/efl/css1/color_and_background/background-expected.txt:
  • platform/efl/css1/color_and_background/background_attachment-expected.txt:
  • platform/efl/css1/color_and_background/background_color-expected.txt:
  • platform/efl/css1/color_and_background/background_image-expected.txt:
  • platform/efl/css1/color_and_background/background_position-expected.txt:
  • platform/efl/css1/color_and_background/background_repeat-expected.txt:
  • platform/efl/css1/color_and_background/color-expected.txt:
  • platform/efl/css1/conformance/forward_compatible_parsing-expected.txt:
  • platform/efl/css1/font_properties/font-expected.txt:
  • platform/efl/css1/font_properties/font_family-expected.txt:
  • platform/efl/css1/font_properties/font_size-expected.txt:
  • platform/efl/css1/font_properties/font_style-expected.txt:
  • platform/efl/css1/font_properties/font_variant-expected.txt:
  • platform/efl/css1/font_properties/font_weight-expected.txt:
  • platform/efl/css1/formatting_model/canvas-expected.txt:
  • platform/efl/css1/formatting_model/height_of_lines-expected.txt:
  • platform/efl/css1/formatting_model/inline_elements-expected.txt:
  • platform/efl/css1/formatting_model/replaced_elements-expected.txt:
  • platform/efl/css1/formatting_model/vertical_formatting-expected.txt:
  • platform/efl/css1/pseudo/anchor-expected.txt:
  • platform/efl/css1/pseudo/firstletter-expected.txt:
  • platform/efl/css1/pseudo/firstline-expected.txt:
  • platform/efl/css1/pseudo/multiple_pseudo_elements-expected.txt:
  • platform/efl/css1/pseudo/pseudo_elements_in_selectors-expected.txt:
  • platform/efl/css1/text_properties/letter_spacing-expected.txt:
  • platform/efl/css1/text_properties/line_height-expected.txt:
  • platform/efl/css1/text_properties/text_align-expected.txt:
  • platform/efl/css1/text_properties/text_decoration-expected.txt:
  • platform/efl/css1/text_properties/text_indent-expected.txt:
  • platform/efl/css1/text_properties/text_transform-expected.txt:
  • platform/efl/css1/text_properties/vertical_align-expected.txt:
  • platform/efl/css1/text_properties/word_spacing-expected.txt:
  • platform/efl/css1/units/color_units-expected.txt:
  • platform/efl/css1/units/length_units-expected.txt:
  • platform/efl/css1/units/percentage_units-expected.txt:
  • platform/efl/css1/units/urls-expected.txt:
  • platform/efl/css2.1/20110323/border-collapse-offset-002-expected.txt:
  • platform/efl/css2.1/20110323/border-conflict-style-079-expected.txt:
  • platform/efl/css2.1/20110323/border-conflict-style-088-expected.txt:
  • platform/efl/css2.1/20110323/dynamic-top-change-002-expected.txt:
  • platform/efl/css2.1/20110323/dynamic-top-change-003-expected.txt:
  • platform/efl/css2.1/20110323/inline-table-001-expected.txt:
  • platform/efl/css2.1/20110323/inline-table-002a-expected.txt:
  • platform/efl/css2.1/20110323/inline-table-003-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-001-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-002-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-003-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-004-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-005-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-006-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-007-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-013-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-014-expected.txt:
  • platform/efl/css2.1/20110323/margin-applies-to-015-expected.txt:
  • platform/efl/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt:
  • platform/efl/css2.1/20110323/table-caption-001-expected.txt:
  • platform/efl/css2.1/20110323/table-caption-optional-001-expected.txt:
  • platform/efl/css2.1/20110323/table-caption-optional-002-expected.txt:
  • platform/efl/css2.1/t040302-c61-ex-len-00-b-a-expected.txt:
  • platform/efl/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt:
  • platform/efl/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt:
  • platform/efl/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt:
  • platform/efl/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt:
  • platform/efl/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt:
  • platform/efl/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-04-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-06-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-08-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-13-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-14-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-16-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-17-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-18-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-24-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-25-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-30-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-31-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-34-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-44-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-52-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-54-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-59-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-64-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-65-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-70-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-71-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-74-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-84-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-85-d-expected.txt:
  • platform/efl/css2.1/t170602-bdr-conflct-w-94-d-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-18-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-29-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-29b-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-33-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-73-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-73b-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-77-expected.txt:
  • platform/efl/css3/selectors3/html/css3-modsel-77b-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29b-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-33-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73b-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77-expected.txt:
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77b-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-18-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-29-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-29b-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-33-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-73-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-73b-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-77-expected.txt:
  • platform/efl/css3/selectors3/xml/css3-modsel-77b-expected.txt:
  • platform/efl/editing/deleting/4922367-expected.txt:
  • platform/efl/editing/deleting/5126166-expected.txt:
  • platform/efl/editing/deleting/5206311-1-expected.txt:
  • platform/efl/editing/deleting/5433862-2-expected.txt:
  • platform/efl/editing/inserting/paragraph-separator-in-table-1-expected.txt:
  • platform/efl/editing/selection/3690703-2-expected.txt:
  • platform/efl/editing/selection/3690703-expected.txt:
  • platform/efl/editing/selection/3690719-expected.txt:
  • platform/efl/editing/selection/5057506-2-expected.txt:
  • platform/efl/editing/selection/5057506-expected.txt:
  • platform/efl/editing/selection/5131716-1-expected.txt:
  • platform/efl/editing/selection/5131716-2-expected.txt:
  • platform/efl/editing/selection/5131716-3-expected.txt:
  • platform/efl/editing/selection/5131716-4-expected.txt:
  • platform/efl/editing/selection/move-by-line-001-expected.txt:
  • platform/efl/editing/selection/select-all-004-expected.txt:
  • platform/efl/editing/unsupported-content/table-type-after-expected.txt:
  • platform/efl/editing/unsupported-content/table-type-before-expected.txt:
  • platform/efl/fast/block/basic/016-expected.txt:
  • platform/efl/fast/block/basic/quirk-percent-height-table-cell-expected.txt:
  • platform/efl/fast/block/float/015-expected.txt:
  • platform/efl/fast/block/margin-collapse/006-expected.txt:
  • platform/efl/fast/block/margin-collapse/010-expected.txt:
  • platform/efl/fast/block/margin-collapse/011-expected.txt:
  • platform/efl/fast/block/margin-collapse/012-expected.txt:
  • platform/efl/fast/block/margin-collapse/015-expected.txt:
  • platform/efl/fast/block/margin-collapse/016-expected.txt:
  • platform/efl/fast/block/margin-collapse/017-expected.txt:
  • platform/efl/fast/block/margin-collapse/018-expected.txt:
  • platform/efl/fast/block/margin-collapse/019-expected.txt:
  • platform/efl/fast/block/margin-collapse/020-expected.txt:
  • platform/efl/fast/block/margin-collapse/021-expected.txt:
  • platform/efl/fast/block/margin-collapse/022-expected.txt:
  • platform/efl/fast/block/margin-collapse/025-expected.txt:
  • platform/efl/fast/block/margin-collapse/032-expected.txt:
  • platform/efl/fast/block/margin-collapse/033-expected.txt:
  • platform/efl/fast/block/margin-collapse/034-expected.txt:
  • platform/efl/fast/block/margin-collapse/041-expected.txt:
  • platform/efl/fast/block/margin-collapse/042-expected.txt:
  • platform/efl/fast/block/margin-collapse/055-expected.txt:
  • platform/efl/fast/block/margin-collapse/056-expected.txt:
  • platform/efl/fast/block/margin-collapse/057-expected.txt:
  • platform/efl/fast/block/margin-collapse/058-expected.txt:
  • platform/efl/fast/block/margin-collapse/059-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/006-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/010-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/011-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/012-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/015-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/016-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/017-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/018-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/019-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/020-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/021-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/022-expected.txt:
  • platform/efl/fast/block/margin-collapse/block-inside-inline/025-expected.txt:
  • platform/efl/fast/block/positioning/negative-right-pos-expected.txt:
  • platform/efl/fast/block/positioning/table-cell-static-position-expected.txt:
  • platform/efl/fast/borders/border-antialiasing-expected.txt:
  • platform/efl/fast/borders/border-radius-different-width-001-expected.txt:
  • platform/efl/fast/borders/table-borders-expected.txt:
  • platform/efl/fast/css-generated-content/first-letter-in-nested-before-expected.txt:
  • platform/efl/fast/css-generated-content/first-letter-in-nested-before-table-expected.txt:
  • platform/efl/fast/css-generated-content/nested-tables-with-before-after-content-crash-expected.txt:
  • platform/efl/fast/css-generated-content/table-cell-before-after-child-add-expected.txt:
  • platform/efl/fast/css-generated-content/table-parts-before-and-after-expected.txt:
  • platform/efl/fast/css-generated-content/table-row-group-with-before-expected.txt:
  • platform/efl/fast/css-generated-content/table-row-with-before-expected.txt:
  • platform/efl/fast/css-generated-content/table-with-before-expected.txt:
  • platform/efl/fast/css/003-expected.txt:
  • platform/efl/fast/css/absolute-poition-in-rtl-parent-expected.txt:
  • platform/efl/fast/css/acid2-expected.txt:
  • platform/efl/fast/css/acid2-pixel-expected.txt:
  • platform/efl/fast/css/bidi-override-in-anonymous-block-expected.txt:
  • platform/efl/fast/css/box-shadow-and-border-radius-expected.txt:
  • platform/efl/fast/css/caption-width-absolute-position-expected.txt:
  • platform/efl/fast/css/caption-width-absolute-position-offset-top-expected.txt:
  • platform/efl/fast/css/caption-width-fixed-position-expected.txt:
  • platform/efl/fast/css/caption-width-fixed-position-offset-top-expected.txt:
  • platform/efl/fast/css/caption-width-relative-position-expected.txt:
  • platform/efl/fast/css/caption-width-relative-position-offset-top-expected.txt:
  • platform/efl/fast/css/css3-nth-child-expected.txt:
  • platform/efl/fast/css/focus-ring-detached-expected.txt:
  • platform/efl/fast/css/focus-ring-multiline-expected.txt:
  • platform/efl/fast/css/h1-in-section-elements-expected.txt:
  • platform/efl/fast/css/image-rendering-expected.txt:
  • platform/efl/fast/css/min-width-with-spanned-cell-expected.txt:
  • platform/efl/fast/css/percentage-non-integer-expected.txt:
  • platform/efl/fast/css/table-text-align-quirk-expected.txt:
  • platform/efl/fast/css/table-text-align-strict-expected.txt:
  • platform/efl/fast/dom/34176-expected.txt:
  • platform/efl/fast/dom/HTMLTableElement/colSpan-expected.txt:
  • platform/efl/fast/dom/HTMLTableElement/createCaption-expected.txt:
  • platform/efl/fast/dom/row-inner-text-expected.txt:
  • platform/efl/fast/dynamic/001-expected.txt:
  • platform/efl/fast/dynamic/containing-block-change-expected.txt:
  • platform/efl/fast/dynamic/float-withdrawal-expected.txt:
  • platform/efl/fast/dynamic/insert-before-table-part-in-continuation-expected.txt:
  • platform/efl/fast/dynamic/subtree-table-cell-height-expected.txt:
  • platform/efl/fast/encoding/utf-16-big-endian-expected.txt:
  • platform/efl/fast/encoding/utf-16-little-endian-expected.txt:
  • platform/efl/fast/forms/001-expected.txt:
  • platform/efl/fast/forms/005-expected.txt:
  • platform/efl/fast/forms/basic-buttons-expected.txt:
  • platform/efl/fast/forms/form-element-geometry-expected.txt:
  • platform/efl/fast/forms/form-hides-table-expected.txt:
  • platform/efl/fast/forms/form-in-malformed-markup-expected.txt:
  • platform/efl/fast/forms/formmove3-expected.txt:
  • platform/efl/fast/forms/input-table-expected.txt:
  • platform/efl/fast/forms/listbox-bidi-align-expected.txt:
  • platform/efl/fast/forms/preserveFormDuringResidualStyle-expected.txt:
  • platform/efl/fast/forms/select-dirty-parent-pref-widths-expected.txt:
  • platform/efl/fast/html/details-writing-mode-expected.txt:
  • platform/efl/fast/inline-block/001-expected.txt:
  • platform/efl/fast/inline-block/overflow-clip-expected.txt:
  • platform/efl/fast/invalid/012-expected.txt:
  • platform/efl/fast/invalid/018-expected.txt:
  • platform/efl/fast/lists/004-expected.txt:
  • platform/efl/fast/lists/list-marker-before-content-table-expected.txt:
  • platform/efl/fast/multicol/span/before-child-anonymous-column-block-expected.txt:
  • platform/efl/fast/overflow/002-expected.txt:
  • platform/efl/fast/overflow/overflow-rtl-expected.txt:
  • platform/efl/fast/overflow/overflow-rtl-vertical-expected.txt:
  • platform/efl/fast/overflow/table-overflow-float-expected.txt:
  • platform/efl/fast/reflections/table-cell-expected.txt:
  • platform/efl/fast/repaint/block-selection-gap-in-table-cell-expected.txt:
  • platform/efl/fast/repaint/float-overflow-expected.txt:
  • platform/efl/fast/repaint/float-overflow-right-expected.txt:
  • platform/efl/fast/repaint/subtree-root-clip-3-expected.txt:
  • platform/efl/fast/repaint/table-cell-collapsed-border-expected.txt:
  • platform/efl/fast/repaint/table-cell-collapsed-border-scroll-expected.txt:
  • platform/efl/fast/repaint/table-cell-move-expected.txt:
  • platform/efl/fast/repaint/table-cell-overflow-expected.txt:
  • platform/efl/fast/repaint/table-cell-vertical-overflow-expected.txt:
  • platform/efl/fast/repaint/table-col-background-expected.txt:
  • platform/efl/fast/repaint/table-collapsed-border-expected.txt:
  • platform/efl/fast/repaint/table-extra-bottom-grow-expected.txt:
  • platform/efl/fast/repaint/table-outer-border-expected.txt:
  • platform/efl/fast/repaint/table-row-expected.txt:
  • platform/efl/fast/repaint/table-section-overflow-expected.txt:
  • platform/efl/fast/repaint/table-section-repaint-expected.txt:
  • platform/efl/fast/repaint/table-two-pass-layout-overpaint-expected.txt:
  • platform/efl/fast/repaint/table-writing-modes-h-expected.txt:
  • platform/efl/fast/repaint/table-writing-modes-v-expected.txt:
5:50 PM Changeset in webkit [195946] by Darin Adler
  • 9 edits in trunk/Source

Get rid of most calls to String::upper; mostly replace them with convertToASCIIUppercase
https://bugs.webkit.org/show_bug.cgi?id=153715

Reviewed by Gyuyoung Kim.

Source/WebCore:

  • editing/cocoa/HTMLConverter.mm:

(HTMLConverter::computedAttributesForElement): Use convertToASCIILowercase to fold
ASCII case when searching for fonts by name.

  • platform/network/cf/ResourceResponseCFNet.cpp:

(WebCore::ResourceResponse::platformLazyInit): Use convertToASCIIUppercase to make
the HTTP version string canonical. Not sure why it's needed at all, but the letters
we might be uppercasing are "HTTP", so no need to handle non-ASCII.

  • platform/network/cocoa/ResourceResponseCocoa.mm:

(WebCore::ResourceResponse::platformLazyInit): Ditto.

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::operator<<): Use convertToASCIIUppercase when writing the spread
method type into a text stream. The method types are all ASCII.

Source/WebKit2:

  • UIProcess/API/efl/tests/test_ewk2_text_checker.cpp:

Use convertToASCIIUppercase on language names.

Source/WTF:

  • wtf/text/AtomicString.h:

(WTF::AtomicString::upper): Deleted.

5:20 PM Changeset in webkit [195945] by jh718.park@samsung.com
  • 2 edits in trunk

[EFL] All API tests are broken on 15.10
https://bugs.webkit.org/show_bug.cgi?id=153528

Reviewed by Gyuyoung Kim.

  • CMakeLists.txt: Having include(WebKitCommon) statement follow

CMAKE_FOO_OUTPUT_DIRECTORY otherwise all the API tests gets blocked.

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

Versioning.

4:27 PM Changeset in webkit [195943] by bshafiei@apple.com
  • 5 edits in branches/safari-601.1.46-branch/Source

Versioning.

4:26 PM Changeset in webkit [195942] by mitz@apple.com
  • 6 edits in trunk/Source

[Cocoa] Remove unused definition of HAVE_HEADER_DETECTION_H
https://bugs.webkit.org/show_bug.cgi?id=153729

Reviewed by Sam Weinig.

After r141700, HAVE_HEADER_DETECTION_H is no longer used.

  • Configurations/Base.xcconfig:
4:10 PM Changeset in webkit [195941] by bshafiei@apple.com
  • 1 copy in tags/Safari-601.1.46.96

New tag.

4:10 PM Changeset in webkit [195940] by bshafiei@apple.com
  • 1 copy in tags/Safari-601.5.14

New tag.

4:07 PM Changeset in webkit [195939] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

B3->Air lowering should use MoveFloat more
https://bugs.webkit.org/show_bug.cgi?id=153714

Reviewed by Sam Weinig.

This is a very minor and benign bug. It just means that we will use the more canonical
MoveFloat instruction when moving floats, rather than using MoveDouble.

  • b3/B3LowerToAir.cpp:

(JSC::B3::Air::LowerToAir::relaxedMoveForType):

3:05 PM Changeset in webkit [195938] by Yusuke Suzuki
  • 5 edits
    7 adds in trunk/Source/JavaScriptCore

Should not predict OtherObj for ToThis with primitive types under strict mode
https://bugs.webkit.org/show_bug.cgi?id=153544

Reviewed by Filip Pizlo.

Currently, ToThis predicates OtherObj for primitive values.
But it's not true in strict mode.
In strict mode, ToThis does nothing on primitive values.

In this patch, we

  1. fix prediction. Handles primitive types in strict mode. And we also handles StringObject.
  2. convert it to Identity if the argument should be predicted as primitive types.

This optimization is important to implement Primitive.prototype.methods[1].
Otherwise, we always got BadType OSR exits.

[1]: https://bugs.webkit.org/show_bug.cgi?id=143889

  • dfg/DFGAbstractInterpreterInlines.h:

(JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):

  • dfg/DFGConstantFoldingPhase.cpp:

(JSC::DFG::ConstantFoldingPhase::foldConstants):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):
(JSC::DFG::FixupPhase::fixupToThis):

  • dfg/DFGPredictionPropagationPhase.cpp:

(JSC::DFG::PredictionPropagationPhase::propagate):

  • tests/stress/to-this-boolean.js: Added.

(Boolean.prototype.negate):
(Boolean.prototype.negate2):

  • tests/stress/to-this-double.js: Added.

(Number.prototype.negate):

  • tests/stress/to-this-int32.js: Added.

(Number.prototype.negate):

  • tests/stress/to-this-int52.js: Added.

(Number.prototype.negate):

  • tests/stress/to-this-number.js: Added.

(Number.prototype.negate):

  • tests/stress/to-this-string.js: Added.

(String.prototype.prefix):
(String.prototype.first):
(String.prototype.second):

  • tests/stress/to-this-symbol.js: Added.

(Symbol.prototype.identity):
(Symbol.prototype.identity2):

3:00 PM Changeset in webkit [195937] by mitz@apple.com
  • 20 edits in trunk/Source

[Cocoa] Remove has_include guards around use of WebKitAdditions
https://bugs.webkit.org/show_bug.cgi?id=153728

Reviewed by Andy Estes.

Guard WebKitAdditions includes with #if USE(APPLE_INTERNAL_SDK) rather than with has_include.

Source/WebCore:

  • dom/EventNames.h:
  • loader/EmptyClients.cpp:

(WebCore::fillWithEmptyClients):

  • page/MainFrame.cpp:

(WebCore::MainFrame::MainFrame):

  • page/MainFrame.h:
  • page/PageConfiguration.h:
  • platform/cocoa/WebKitAdditions.mm:
  • platform/graphics/ca/cocoa/PlatformCALayerCocoa.mm:
  • platform/ios/LegacyTileGridTile.mm:

Source/WebKit/mac:

  • WebKitAdditions.mm:
  • WebView/WebView.mm:

(-[WebView _commonInitializationWithFrameName:groupName:]):
(-[WebView initSimpleHTMLDocumentWithStyle:frame:preferences:groupName:]):

Source/WebKit2:

  • Shared/Cocoa/WebKitAdditions.mm:
  • Shared/WebCoreArgumentCoders.h:
  • Shared/mac/RemoteLayerBackingStore.mm:
  • UIProcess/API/Cocoa/WKWebView.mm:
  • UIProcess/WebPageProxy.cpp:

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

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

(WebKit::m_shouldDispatchFakeMouseMoveEvents):

2:46 PM Changeset in webkit [195936] by bshafiei@apple.com
  • 5 edits in tags/Safari-602.1.18.1/Source

Versioning.

2:42 PM Changeset in webkit [195935] by bshafiei@apple.com
  • 1 copy in tags/Safari-602.1.18.1

New tag.

12:59 PM Changeset in webkit [195934] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebKit2

Include the right WebKitAdditions files
<rdar://problem/24429804>

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::resetState):

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

Merged r195932. rdar://problem/24430138

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

Merge patch for rdar://problem/24426332 and rdar://problem/24209109.

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

Roll out r195817.

11:51 AM Changeset in webkit [195930] by bshafiei@apple.com
  • 5 edits in branches/safari-601.1.46-branch/Source

Versioning.

11:51 AM Changeset in webkit [195929] by bshafiei@apple.com
  • 5 edits in branches/safari-601-branch/Source

Versioning.

11:22 AM Changeset in webkit [195928] by Darin Adler
  • 37 edits in trunk

Replace CaseFoldingHash with ASCIICaseInsensitiveHash
https://bugs.webkit.org/show_bug.cgi?id=153639

Reviewed by Filip Pizlo.

Source/WebCore:

  • Modules/webdatabase/DatabaseAuthorizer.h: Use ASCIICaseInsensitiveHash

for whitelisted functions. Function names are all ASCII.

  • accessibility/AccessibilityObject.cpp: Use ASCIICaseInsensitiveHash

for ARIA roles. ARIA roles are all ASCII.

  • crypto/CryptoAlgorithmRegistry.h: Use ASCIICaseInsensitiveHash for

crypto algorithm names. Algorithm names are all ASCII.

  • css/CSSFontSelector.cpp:

(WebCore::registerLocalFontFacesForFamily): Use ASCIICaseInsensitiveHash
for font faces. Face names should use ASCII case insensitive matching;
there is no need for non-ASCII case folding.

  • css/CSSFontSelector.h: Ditto.
  • dom/DOMImplementation.cpp: Use ASCIICaseInsensitiveHash for the

FeatureSet. The features are all ASCII.

  • dom/Document.h: Use ASCIICaseInsensitiveHash for the access key

map. Access keys are all ASCII.

  • dom/ScriptElement.cpp:

(WebCore::isLegacySupportedJavaScriptLanguage): Use ASCIICaseInsensitiveHash
for the language set. These strings are all ASCII.

  • editing/EditorCommand.cpp: Use ASCIICaseInsensitiveHash for editor

command names. These names are all ASCII.

  • html/HTMLObjectElement.cpp:

(WebCore::HTMLObjectElement::parametersForPlugin): Use ASCIICaseInsensitiveHash
for parameter names. These names are all ASCII.

  • html/InputType.cpp: Use ASCIICaseInsensitiveHash for the input types.

The input types are all ASCII.

  • loader/CrossOriginAccessControl.h: Use ASCIICaseInsensitiveHash for

HTTP header field names. These names are all ASCII.

  • loader/CrossOriginPreflightResultCache.h: Ditto.
  • loader/archive/ArchiveFactory.cpp: Use ASCIICaseInsensitiveHash for

MIME types. MIME types are all ASCII.

  • platform/MIMETypeRegistry.cpp:

(WebCore::initializeSupportedImageMIMETypes): Ditto.

  • platform/SchemeRegistry.h: Use ASCIICaseInsensitiveHas for URL schemes.

URL schemes are all ASCII.

  • platform/URL.cpp: Ditto.
  • platform/graphics/FontCache.cpp:

(WebCore::FontPlatformDataCacheKey::operator==): Use ASCIICaseInsensitiveHash.
(WebCore::FontPlatformDataCacheKeyHash::hash): Use ASCIICaseInsensitiveHash.

  • platform/graphics/FontCascade.cpp:

(WebCore::keysMatch): Rename from operator== since this operation is not
equality. Changed to equalIgnoringASCIICase and did a little streamlining.
(WebCore::makeFontCascadeCacheKey): Use reserveInitialCapacity for slightly
better memory use.
(WebCore::computeFontCascadeCacheHash): Use IntegerHasher to make computing
a hash more efficient by eliminating the overhead of building a vector and
even possible heap allocation and deallocation.
(WebCore::retrieveOrAddCachedFonts): Use keysMatch instead of ==.

  • platform/graphics/cocoa/FontCacheCoreText.cpp: Use ASCIICaseInsensitiveHash

for font family names. These names should use ASCII case insensitive matching;
there is no need for non-ASCII case folding.

  • platform/network/HTTPHeaderMap.h: Use ASCIICaseInsensitiveHash for

HTTP header field names. These names are all ASCII.

  • rendering/style/RenderStyle.cpp:

(WebCore::computeFontHash): Use IntegerHasher to avoid allocating memory just
to compute a hash. Use ASCIICaseInsensitiveHash.

Source/WebKit/win:

  • WebCoreStatistics.cpp:

(WebCoreStatistics::memoryStatistics): Use ASCIICaseInsensitiveHash for field names.
These names are all ASCII.

  • WebURLResponse.cpp:

(WebURLResponse::allHeaderFields): Use ASCIICaseInsensitiveHash for HTTP header
field names. These names are all ASCII.

Source/WebKit2:

  • UIProcess/Cocoa/WKWebViewContentProviderRegistry.mm: Use ASCIICaseInsensitiveHash

for MIME types. MIME types are all ASCII.

  • UIProcess/Plugins/PlugInAutoStartProvider.h: Use ASCIICaseInsensitiveHash for

origins. Origin strings should use ASCII case insensitive matching and should not
fold non-ASCII case.

  • WebProcess/WebPage/WebPage.h: Use ASCIICaseInsensitiveHash for MIME types.

MIME types are all ASCII.

  • WebProcess/WebProcess.cpp:

(WebKit::addCaseFoldedCharacters): Use ASCIICaseInsensitiveHash to hash plug-in
origin strings. (See rationale above.)
(WebKit::hashForPlugInOrigin): Updated comment.

Source/WTF:

  • wtf/text/StringHash.h: Renamed CaseFoldingHash to ASCIICaseInsensitiveHash.

(WTF::ASCIICaseInsensitiveHash::foldCase): Use toASCIILower.
(WTF::ASCIICaseInsensitiveHash::equal): Use equalIgnoringASCIICase.
Also added some assertions.

  • wtf/text/StringImpl.cpp: Made the latin1CaseFoldTable private to this file,

since it's no longer needed by CaseFoldingHash. Moved it up before its first use.
(WTF::equalCompatibilityCaseless): Fixed typo in the name of this function.
(WTF::equalCompatibiltyCaselessNonNull): Deleted.

  • wtf/text/StringImpl.h: Removed declarations of latin1CaseFoldTable and

equalCompatibiltyCaselessNonNull

Tools:

  • Scripts/do-webcore-rename: Use script to do this rename.
4:08 AM Changeset in webkit [195927] by Gyuyoung Kim
  • 27 edits in trunk/Source

Reduce PassRefPtr uses in dom - 5
https://bugs.webkit.org/show_bug.cgi?id=153470

Reviewed by Darin Adler.

As a step to remove PassRefPtr, this patch reduces uses of PassRefPtr in WebCore/dom.

  • dom/Document.cpp:

(WebCore::Document::adoptNode):
(WebCore::Document::implicitClose):
(WebCore::Document::enqueuePopstateEvent):
(WebCore::Document::setInputCursor):

  • dom/Document.h:
  • dom/DocumentMarker.cpp:

(WebCore::DocumentMarkerTextMatch::instanceFor):

  • dom/Event.cpp:

(WebCore::Event::setUnderlyingEvent):

  • dom/Event.h:
  • dom/EventDispatcher.h:
  • dom/GenericEventQueue.cpp:

(WebCore::GenericEventQueue::enqueueEvent):

  • dom/GenericEventQueue.h:
  • dom/MouseEvent.cpp:

(WebCore::SimulatedMouseEvent::SimulatedMouseEvent):

  • dom/Node.cpp:

(WebCore::Node::dispatchDOMActivateEvent):

  • dom/NodeIterator.h:
  • dom/PendingScript.h:
  • dom/PopStateEvent.cpp:

(WebCore::PopStateEvent::create):

  • dom/PopStateEvent.h:
  • dom/ProcessingInstruction.cpp:

(WebCore::ProcessingInstruction::setCSSStyleSheet): Deleted. Nobody calls this function.

  • dom/ProcessingInstruction.h:
  • dom/RangeBoundaryPoint.h:

(WebCore::RangeBoundaryPoint::RangeBoundaryPoint):

  • dom/TextEvent.cpp:

(WebCore::TextEvent::createForFragmentPaste):
(WebCore::TextEvent::TextEvent):

  • dom/TextEvent.h:
  • editing/Editor.cpp:

(WebCore::Editor::pasteAsFragment):

  • editing/Editor.h:
  • editing/mac/EditorMac.mm:

(WebCore::Editor::replaceNodeFromPasteboard):

3:41 AM Changeset in webkit [195926] by commit-queue@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

[mips] don't save to a callee saved register too early
https://bugs.webkit.org/show_bug.cgi?id=153463

If we save $gp to $s4 in pichdr, then in some cases, we were
overwriting $s4 before LLInt's pushCalleeSaves() is called (as pichdr
is at the very beginning of a function). Now we save $gp to $s4 at the
end of pushCalleeSaves().

Patch by Guillaume Emont <guijemont@igalia.com> on 2016-01-31
Reviewed by Michael Saboff.

  • offlineasm/mips.rb:
  • llint/LowLevelInterpreter.asm:

Move the saving of $gp to $s4 from pichdr to pushCalleeSaves(). Take
the opportunity to only save $s4 as we never use the other callee
saved registers.

3:41 AM Changeset in webkit [195925] by Gyuyoung Kim
  • 14 edits in trunk/Source

Use std::make_unique<> when creating an unique_ptr object.
https://bugs.webkit.org/show_bug.cgi?id=153705

Reviewed by Darin Adler.

Source/WebCore:

Some factory functions have used std::unique_ptr<> for creating an unique_ptr object.
It is wrong. We have to use std::make_unique<>.

  • Modules/mediasession/WebMediaSessionManager.cpp:

(WebCore::WebMediaSessionManager::mockPicker):

  • inspector/InspectorTimelineAgent.cpp:

(WebCore::InspectorTimelineAgent::internalStart):

  • platform/cf/RunLoopObserver.cpp:

(WebCore::RunLoopObserver::create): Deleted.

  • platform/cf/RunLoopObserver.h:

(WebCore::RunLoopObserver::RunLoopObserver):

  • platform/graphics/avfoundation/WebMediaSessionManagerMac.cpp:

(WebCore::WebMediaSessionManagerMac::platformPicker):

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

(WebCore::MediaPlaybackTargetPickerMac::create): Deleted.

  • platform/graphics/ca/cocoa/LayerFlushSchedulerMac.cpp:

(WebCore::LayerFlushScheduler::LayerFlushScheduler):

  • platform/mock/MediaPlaybackTargetPickerMock.cpp:

(WebCore::MediaPlaybackTargetPickerMock::create): Deleted.

  • platform/mock/MediaPlaybackTargetPickerMock.h:
  • rendering/FloatingObjects.cpp:

(WebCore::FloatingObject::copyToNewContainer):

Source/WebKit2:

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::WebPageProxy): Use std::make_unique<> instead of RunLoopObserver::create().

1:20 AM Changeset in webkit [195924] by youenn.fablet@crf.canon.fr
  • 3 edits in trunk/LayoutTests/imported/w3c

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 Darin Adler.

GCController is not available in Worker environments, explaining probably why garbage-collection-2.html is not crashing at all.
Inlining half of the tests in garbage-collection-2.html (runned in window) to compare with garbage-collection-1.html.

  • web-platform-tests/streams-api/readable-streams/garbage-collection-2-expected.txt:
  • web-platform-tests/streams-api/readable-streams/garbage-collection-2.html:

Jan 30, 2016:

9:57 PM Changeset in webkit [195923] by hyatt@apple.com
  • 2 edits in trunk/Source/WebInspectorUI

Add the break-* properties to Web Inspector's completion set
https://bugs.webkit.org/show_bug.cgi?id=153706

Reviewed by Darin Adler.

  • UserInterface/Models/CSSKeywordCompletions.js:
8:11 PM Changeset in webkit [195922] by mitz@apple.com
  • 25 edits in trunk/Source/WebKit2

[Cocoa] Get rid of many WK_ macros for nullability
https://bugs.webkit.org/show_bug.cgi?id=153718

Sam Weinig reviewed an earlier version of this change, and Simon Fraser rubber-stamped this version.

  • Shared/API/Cocoa/WKFoundation.h: Removed definitions of WK_ASSUME_NONNULL_{BEGIN, END}, WK_NULLABLE, WK_NULL_UNSPECIFIED, and WK_NULLABLE_PROPERTY. Removed the __has_feature(assume_nonnull) case.
  • mac/postprocess-framework-headers.sh: Removed rules for rewriting the above macros. Also chanegd to rewrite WK_NULLABLE_SPECIFIER to the modern _Nullable instead of nullable.

Replaced instances of the above macros with their expansions.

  • UIProcess/API/Cocoa/WKBackForwardList.h:
  • UIProcess/API/Cocoa/WKBackForwardListItem.h:
  • UIProcess/API/Cocoa/WKError.h:
  • UIProcess/API/Cocoa/WKFrameInfo.h:
  • UIProcess/API/Cocoa/WKNavigationAction.h:
  • UIProcess/API/Cocoa/WKNavigationDelegate.h:
  • UIProcess/API/Cocoa/WKNavigationResponse.h:
  • UIProcess/API/Cocoa/WKScriptMessage.h:
  • UIProcess/API/Cocoa/WKScriptMessageHandler.h:
  • UIProcess/API/Cocoa/WKSecurityOrigin.h:
  • UIProcess/API/Cocoa/WKUIDelegate.h:
  • UIProcess/API/Cocoa/WKUserContentController.h:
  • UIProcess/API/Cocoa/WKUserScript.h:
  • UIProcess/API/Cocoa/WKWebView.h:
  • UIProcess/API/Cocoa/WKWebViewConfiguration.h:
  • UIProcess/API/Cocoa/WKWebsiteDataRecord.h:
  • UIProcess/API/Cocoa/WKWebsiteDataStore.h:
  • UIProcess/API/Cocoa/WKWindowFeatures.h:
  • UIProcess/API/Cocoa/_WKContextMenuElementInfo.h:
  • UIProcess/API/Cocoa/_WKElementInfo.h:
  • UIProcess/API/Cocoa/_WKPreviewElementInfo.h:
  • UIProcess/API/Cocoa/_WKUserStyleSheet.h:
7:59 PM Changeset in webkit [195921] by fpizlo@apple.com
  • 2 edits in trunk/Websites/webkit.org

B3 documentation style shouldn't have hacks for h1
https://bugs.webkit.org/show_bug.cgi?id=153725

Reviewed by Alexey Proskuryakov.

  • docs/b3/style.css:
5:22 PM Changeset in webkit [195920] by mitz@apple.com
  • 25 edits in trunk/Source/WebKit2

Reverted r195914, because at least one of the build.webkit.org builders still uses a compiler that doesn’t understand _Nullable.

  • Shared/API/Cocoa/WKFoundation.h:
  • UIProcess/API/Cocoa/WKBackForwardList.h:
  • UIProcess/API/Cocoa/WKBackForwardListItem.h:
  • UIProcess/API/Cocoa/WKError.h:
  • UIProcess/API/Cocoa/WKFrameInfo.h:
  • UIProcess/API/Cocoa/WKNavigationAction.h:
  • UIProcess/API/Cocoa/WKNavigationDelegate.h:
  • UIProcess/API/Cocoa/WKNavigationResponse.h:
  • UIProcess/API/Cocoa/WKScriptMessage.h:
  • UIProcess/API/Cocoa/WKScriptMessageHandler.h:
  • UIProcess/API/Cocoa/WKSecurityOrigin.h:
  • UIProcess/API/Cocoa/WKUIDelegate.h:
  • UIProcess/API/Cocoa/WKUserContentController.h:
  • UIProcess/API/Cocoa/WKUserScript.h:
  • UIProcess/API/Cocoa/WKWebView.h:
  • UIProcess/API/Cocoa/WKWebViewConfiguration.h:
  • UIProcess/API/Cocoa/WKWebsiteDataRecord.h:
  • UIProcess/API/Cocoa/WKWebsiteDataStore.h:
  • UIProcess/API/Cocoa/WKWindowFeatures.h:
  • UIProcess/API/Cocoa/_WKContextMenuElementInfo.h:
  • UIProcess/API/Cocoa/_WKElementInfo.h:
  • UIProcess/API/Cocoa/_WKPreviewElementInfo.h:
  • UIProcess/API/Cocoa/_WKUserStyleSheet.h:
  • mac/postprocess-framework-headers.sh:
5:19 PM Changeset in webkit [195919] by Michael Catanzaro
  • 2 edits in trunk/Source/WebCore

Unreviewed, fix GTK debug build after r195899

  • dom/EventContext.h:

(isType):

5:15 PM Changeset in webkit [195918] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Add missing include to fix building debug configuration
https://bugs.webkit.org/show_bug.cgi?id=153719

Patch by Jeremy Huddleston Sequoia <jeremyhu@apple.com> on 2016-01-30
Reviewed by Darin Adler.

No new tests.

  • rendering/RenderObject.cpp:
4:53 PM Changeset in webkit [195917] by commit-queue@webkit.org
  • 37 edits in trunk

Unreviewed, rolling out r195911.
https://bugs.webkit.org/show_bug.cgi?id=153723

Caused frequent assertion failures on bots (Requested by ap on
#webkit).

Reverted changeset:

"Replace CaseFoldingHash with ASCIICaseInsensitiveHash"
https://bugs.webkit.org/show_bug.cgi?id=153639
http://trac.webkit.org/changeset/195911

4:41 PM Changeset in webkit [195916] by commit-queue@webkit.org
  • 64 edits in trunk

Unreviewed, rolling out r195799 and r195828.
https://bugs.webkit.org/show_bug.cgi?id=153722

Caused assertion failures, severely affecting EWS (Requested
by ap on #webkit).

Reverted changesets:

"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
http://trac.webkit.org/changeset/195799

"Attempt to fix the Windows build after r195799"
http://trac.webkit.org/changeset/195828

4:24 PM Changeset in webkit [195915] by Matt Baker
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Network panel is empty until the window is resized
https://bugs.webkit.org/show_bug.cgi?id=153701
<rdar://problem/24423739>

Reviewed by Timothy Hatcher.

NetworkGridContentView shouldn't prevent a layout from being scheduled
when the network sidebar is collapsed.

  • UserInterface/Views/NetworkGridContentView.js:

(WebInspector.NetworkGridContentView.prototype.needsLayout): Deleted.
Removed View.prototype.needsLayout override that was preventing
layouts from being scheduled as timeline records are added.

3:50 PM Changeset in webkit [195914] by mitz@apple.com
  • 25 edits in trunk/Source/WebKit2

[Cocoa] Get rid of WK_ macros for nullability
https://bugs.webkit.org/show_bug.cgi?id=153718

Reviewed by Sam Weinig.

  • Shared/API/Cocoa/WKFoundation.h: Removed definitions of WK_ASSUME_NONNULL_{BEGIN, END}, WK_NULLABLE, WK_NULL_UNSPECIFIED, WK_NULLABLE_SPECIFIER, and WK_NULLABLE_PROPERTY.
  • mac/postprocess-framework-headers.sh: Removed rules for rewriting those macros.

Replaced instances of those macros with their expansions, but using the modern _Nullable
instead of nullable:

  • UIProcess/API/Cocoa/WKBackForwardList.h:
  • UIProcess/API/Cocoa/WKBackForwardListItem.h:
  • UIProcess/API/Cocoa/WKError.h:
  • UIProcess/API/Cocoa/WKFrameInfo.h:
  • UIProcess/API/Cocoa/WKNavigationAction.h:
  • UIProcess/API/Cocoa/WKNavigationDelegate.h:
  • UIProcess/API/Cocoa/WKNavigationResponse.h:
  • UIProcess/API/Cocoa/WKScriptMessage.h:
  • UIProcess/API/Cocoa/WKScriptMessageHandler.h:
  • UIProcess/API/Cocoa/WKSecurityOrigin.h:
  • UIProcess/API/Cocoa/WKUIDelegate.h:
  • UIProcess/API/Cocoa/WKUserContentController.h:
  • UIProcess/API/Cocoa/WKUserScript.h:
  • UIProcess/API/Cocoa/WKWebView.h:
  • UIProcess/API/Cocoa/WKWebViewConfiguration.h:
  • UIProcess/API/Cocoa/WKWebsiteDataRecord.h:
  • UIProcess/API/Cocoa/WKWebsiteDataStore.h:
  • UIProcess/API/Cocoa/WKWindowFeatures.h:
  • UIProcess/API/Cocoa/_WKContextMenuElementInfo.h:
  • UIProcess/API/Cocoa/_WKElementInfo.h:
  • UIProcess/API/Cocoa/_WKPreviewElementInfo.h:
  • UIProcess/API/Cocoa/_WKUserStyleSheet.h:
2:25 PM Changeset in webkit [195913] by beidson@apple.com
  • 4 edits in trunk

Modern IDB: Some tests crash with specific odd database names.
https://bugs.webkit.org/show_bug.cgi?id=153688

Reviewed by Darin Adler.

Source/WebCore:

No new tests (2 existing tests now pass).

  • platform/FileSystem.cpp:

(WebCore::shouldEscapeUChar): Return true for some surrogate-pair situations.
(WebCore::encodeForFileName): Pass along the previous and next characters, as well,

and do a two byte escaping for some characters.

LayoutTests:

  • platform/mac-wk1/TestExpectations:
2:19 PM Changeset in webkit [195912] by eric.carlson@apple.com
  • 5 edits
    2 adds in trunk

More than one audio and/or text track sometimes selected in media controls menu
https://bugs.webkit.org/show_bug.cgi?id=153664

Source/WebCore:

Use an <img> element for the track menu item checkmark instead of a background image and
the ::before selector.

Reviewed by Jer Noble.

Test: media/controls/track-menu.html

  • Modules/mediacontrols/mediaControlsApple.css:

(audio::-webkit-media-controls-closed-captions-container li:hover):
(audio::-webkit-media-controls-closed-captions-container li .checkmark-container):
(audio::-webkit-media-controls-closed-captions-container li.selected .checkmark-container):
(audio::-webkit-media-controls-closed-captions-container li.selected:hover .checkmark-container):
(audio::-webkit-media-controls-closed-captions-container li.selected::before): Deleted.
(audio::-webkit-media-controls-closed-captions-container li.selected:hover::before): Deleted.

  • Modules/mediacontrols/mediaControlsApple.js:

(Controller.prototype.buildCaptionMenu):
(Controller.prototype.):
(Controller.prototype.getCurrentControlsStatus):

LayoutTests:

Reviewed by Jer Noble.

  • media/controls/controls-test-helpers.js:

(ControlsTest.prototype.get currentState):
(ControlsTest.prototype.get video):
(ControlsTest.prototype.stateForControlsElement):
(ControlsTest.prototype.handleEvent):
(ControlsTest.prototype.setup):
(ControlsTest.prototype.start):
(ControlsTest.prototype.isEqualTo):
(ControlsTest.prototype.isNotEqualTo):
(ControlsTest.prototype.contains):

  • media/controls/track-menu-expected.txt: Added.
  • media/controls/track-menu.html: Added.
1:53 PM Changeset in webkit [195911] by Darin Adler
  • 37 edits in trunk

Replace CaseFoldingHash with ASCIICaseInsensitiveHash
https://bugs.webkit.org/show_bug.cgi?id=153639

Reviewed by Filip Pizlo.

Source/WebCore:

  • Modules/webdatabase/DatabaseAuthorizer.h: Use ASCIICaseInsensitiveHash

for whitelisted functions. Function names are all ASCII.

  • accessibility/AccessibilityObject.cpp: Use ASCIICaseInsensitiveHash

for ARIA roles. ARIA roles are all ASCII.

  • crypto/CryptoAlgorithmRegistry.h: Use ASCIICaseInsensitiveHash for

crypto algorithm names. Algorithm names are all ASCII.

  • css/CSSFontSelector.cpp:

(WebCore::registerLocalFontFacesForFamily): Use ASCIICaseInsensitiveHash
for font faces. Face names should use ASCII case insensitive matching;
there is no need for non-ASCII case folding.

  • css/CSSFontSelector.h: Ditto.
  • dom/DOMImplementation.cpp: Use ASCIICaseInsensitiveHash for the

FeatureSet. The features are all ASCII.

  • dom/Document.h: Use ASCIICaseInsensitiveHash for the access key

map. Access keys are all ASCII.

  • dom/ScriptElement.cpp:

(WebCore::isLegacySupportedJavaScriptLanguage): Use ASCIICaseInsensitiveHash
for the language set. These strings are all ASCII.

  • editing/EditorCommand.cpp: Use ASCIICaseInsensitiveHash for editor

command names. These names are all ASCII.

  • html/HTMLObjectElement.cpp:

(WebCore::HTMLObjectElement::parametersForPlugin): Use ASCIICaseInsensitiveHash
for parameter names. These names are all ASCII.

  • html/InputType.cpp: Use ASCIICaseInsensitiveHash for the input types.

The input types are all ASCII.

  • loader/CrossOriginAccessControl.h: Use ASCIICaseInsensitiveHash for

HTTP header field names. These names are all ASCII.

  • loader/CrossOriginPreflightResultCache.h: Ditto.
  • loader/archive/ArchiveFactory.cpp: Use ASCIICaseInsensitiveHash for

MIME types. MIME types are all ASCII.

  • platform/MIMETypeRegistry.cpp:

(WebCore::initializeSupportedImageMIMETypes): Ditto.

  • platform/SchemeRegistry.h: Use ASCIICaseInsensitiveHas for URL schemes.

URL schemes are all ASCII.

  • platform/URL.cpp: Ditto.
  • platform/graphics/FontCache.cpp: Reworked FontPlatformDataCacheKey struct:

Made it a conventional struct with non-prefixed data members names. Removed
the "==" operator since it was appropriate for hash table lookup but wasn't
a true equality operator. Tightened the implementations of the constructors.
(WebCore::FontPlatformDataCacheKeyHash::hash): Use ASCIICaseInsensitiveHash.
(WebCore::FontPlatformDataCacheKeyHash::equal): Do the equality check here,
not using the == operator. And use equalIgnoringASCIICase.
(WebCore::FontPlatformDataCacheKeyTraits::isEmptyValue): Added this entire
traits struct so we check empty values in a more efficient way.
(WebCore::FontCache::getCachedFontPlatformData): Added comments and tweaked
style in this function.

  • platform/graphics/FontCascade.cpp:

(WebCore::keysMatch): Rename from operator== since this operation is not
equality. Changed to equalIgnoringASCIICase and did a little streamlining.
(WebCore::makeFontCascadeCacheKey): Use reserveInitialCapacity for slightly
better memory use.
(WebCore::computeFontCascadeCacheHash): Use IntegerHasher to make computing
a hash more efficient by eliminating the overhead of building a vector and
even possible heap allocation and deallocation.
(WebCore::retrieveOrAddCachedFonts): Use keysMatch instead of ==.

  • platform/graphics/cocoa/FontCacheCoreText.cpp: Use ASCIICaseInsensitiveHash

for font family names. These names should use ASCII case insensitive matching;
there is no need for non-ASCII case folding.

  • platform/network/HTTPHeaderMap.h: Use ASCIICaseInsensitiveHash for

HTTP header field names. These names are all ASCII.

  • rendering/style/RenderStyle.cpp:

(WebCore::computeFontHash): Use IntegerHasher to avoid allocating memory just
to compute a hash. Use ASCIICaseInsensitiveHash.

Source/WebKit/win:

  • WebCoreStatistics.cpp:

(WebCoreStatistics::memoryStatistics): Use ASCIICaseInsensitiveHash for field names.
These names are all ASCII.

  • WebURLResponse.cpp:

(WebURLResponse::allHeaderFields): Use ASCIICaseInsensitiveHash for HTTP header
field names. These names are all ASCII.

Source/WebKit2:

  • UIProcess/Cocoa/WKWebViewContentProviderRegistry.mm: Use ASCIICaseInsensitiveHash

for MIME types. MIME types are all ASCII.

  • UIProcess/Plugins/PlugInAutoStartProvider.h: Use ASCIICaseInsensitiveHash for

origins. Origin strings should use ASCII case insensitive matching and should not
fold non-ASCII case.

  • WebProcess/WebPage/WebPage.h: Use ASCIICaseInsensitiveHash for MIME types.

MIME types are all ASCII.

  • WebProcess/WebProcess.cpp:

(WebKit::addCaseFoldedCharacters): Use ASCIICaseInsensitiveHash to hash plug-in
origin strings. (See rationale above.)
(WebKit::hashForPlugInOrigin): Updated comment.

Source/WTF:

  • wtf/text/StringHash.h: Renamed CaseFoldingHash to ASCIICaseInsensitiveHash.

(WTF::ASCIICaseInsensitiveHash::foldCase): Use toASCIILower.
(WTF::ASCIICaseInsensitiveHash::equal): Use equalIgnoringASCIICase.
Also added some assertions.

  • wtf/text/StringImpl.cpp: Made the latin1CaseFoldTable private to this file,

since it's no longer needed by CaseFoldingHash. Moved it up before its first use.
(WTF::equalCompatibilityCaseless): Fixed typo in the name of this function.
(WTF::equalCompatibiltyCaselessNonNull): Deleted.

  • wtf/text/StringImpl.h: Removed declarations of latin1CaseFoldTable and

equalCompatibiltyCaselessNonNull

Tools:

  • Scripts/do-webcore-rename: Use script to do this rename.
1:49 PM Changeset in webkit [195910] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: Object tree parent items are misaligned
https://bugs.webkit.org/show_bug.cgi?id=153699
<rdar://problem/24423683>

Patch by Devin Rousso <Devin Rousso> on 2016-01-30
Reviewed by Darin Adler.

  • UserInterface/Views/ObjectTreeView.css:

(.object-tree .object-tree):
Ensure that toplevel Object preview trees are displayed properly while also
making child trees inline.

  • UserInterface/Views/TreeOutline.css:

(.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) > .icon):
(.tree-outline:not(.hide-disclosure-buttons) .item:not(.parent) .icon): Deleted.
This would apply to all .icon elements contained within a non-parent item,
which is not the desired effect. Instead, this should only apply to only the
.icon element of that particular non-parent item.

1:39 PM Changeset in webkit [195909] by Chris Dumez
  • 3 edits in trunk/Source/WebCore

Unreviewed, rolling out r195871.

Caused several layout tests to time out

Reverted changeset:

"Tab suspension code shouldn't use page cache cacheability
logic"
https://bugs.webkit.org/show_bug.cgi?id=153680
http://trac.webkit.org/changeset/195871

1:34 PM Changeset in webkit [195908] by Chris Dumez
  • 4 edits in trunk/Source/WebCore

Unreviewed, rebaseline bindings tests after r195904.

  • bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp:

(WebCore::JSTestCustomNamedGetter::getOwnPropertySlot):
(WebCore::jsTestCustomNamedGetterConstructor):
(WebCore::setJSTestCustomNamedGetterConstructor):

  • bindings/scripts/test/JS/JSTestEventTarget.cpp:

(WebCore::JSTestEventTarget::getOwnPropertySlot):
(WebCore::jsTestEventTargetConstructor):
(WebCore::setJSTestEventTargetConstructor):

  • bindings/scripts/test/JS/JSTestOverrideBuiltins.cpp:

(WebCore::JSTestOverrideBuiltins::getOwnPropertySlot):
(WebCore::jsTestOverrideBuiltinsConstructor):
(WebCore::setJSTestOverrideBuiltinsConstructor):

1:01 PM Changeset in webkit [195907] by Chris Dumez
  • 32 edits
    4 adds in trunk

[JS Bindings] prototype.constructor should be writable
https://bugs.webkit.org/show_bug.cgi?id=149412
<rdar://problem/22545096>

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Rebaseline 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/fetch/api/headers/headers-idl-expected.txt:
  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

prototype.constructor should have the following properties:
{ Writable?: true, Enumerable?: false, Configurable?: true }

as per the Web IDL specification:
https://heycam.github.io/webidl/#interface-prototype-object

In WebKit, it is currently not writable. It is writable in Firefox.

This patch was first landed in r190085 but was rolled out for causing
crashes: <rdar://problem/22825602>. The issue was that even though we
marked constructor as writable, we failed to generate a setter for it.
This patch addresses the issue and the crash in <rdar://problem/22825602>
no longer occurs after this change. A regression test is also added for
this crash.

Tests:
fast/dom/HTMLDocument/constructor-setter-crash.html
fast/dom/prototype-constructor-setter.html

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateAttributesHashTable):
(GenerateImplementation):

  • bindings/scripts/IDLAttributes.txt:
  • bindings/scripts/test/JS/JSTestActiveDOMObject.cpp:

(WebCore::setJSTestActiveDOMObjectConstructor):

  • bindings/scripts/test/JS/JSTestClassWithJSBuiltinConstructor.cpp:

(WebCore::setJSTestClassWithJSBuiltinConstructorConstructor):

  • bindings/scripts/test/JS/JSTestCustomConstructorWithNoInterfaceObject.cpp:

(WebCore::setJSTestCustomConstructorWithNoInterfaceObjectConstructor):

  • bindings/scripts/test/JS/JSTestCustomNamedGetter.cpp:

(WebCore::setJSTestCustomNamedGetterConstructor):

  • bindings/scripts/test/JS/JSTestEventConstructor.cpp:

(WebCore::setJSTestEventConstructorConstructor):

  • bindings/scripts/test/JS/JSTestEventTarget.cpp:

(WebCore::setJSTestEventTargetConstructor):

  • bindings/scripts/test/JS/JSTestException.cpp:

(WebCore::setJSTestExceptionConstructor):

  • bindings/scripts/test/JS/JSTestGenerateIsReachable.cpp:

(WebCore::setJSTestGenerateIsReachableConstructor):

  • bindings/scripts/test/JS/JSTestInterface.cpp:

(WebCore::setJSTestInterfaceConstructor):

  • bindings/scripts/test/JS/JSTestJSBuiltinConstructor.cpp:

(WebCore::setJSTestJSBuiltinConstructorConstructor):

  • bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp:

(WebCore::setJSTestMediaQueryListListenerConstructor):

  • bindings/scripts/test/JS/JSTestNamedConstructor.cpp:

(WebCore::setJSTestNamedConstructorConstructor):

  • bindings/scripts/test/JS/JSTestNode.cpp:

(WebCore::setJSTestNodeConstructor):

  • bindings/scripts/test/JS/JSTestNondeterministic.cpp:

(WebCore::setJSTestNondeterministicConstructor):

  • bindings/scripts/test/JS/JSTestObj.cpp:

(WebCore::setJSTestObjConstructor):

  • bindings/scripts/test/JS/JSTestOverloadedConstructors.cpp:

(WebCore::setJSTestOverloadedConstructorsConstructor):

  • bindings/scripts/test/JS/JSTestOverrideBuiltins.cpp:

(WebCore::setJSTestOverrideBuiltinsConstructor):

  • bindings/scripts/test/JS/JSTestSerializedScriptValueInterface.cpp:

(WebCore::setJSTestSerializedScriptValueInterfaceConstructor):

  • bindings/scripts/test/JS/JSTestTypedefs.cpp:

(WebCore::setJSTestTypedefsConstructor):

  • bindings/scripts/test/JS/JSattribute.cpp:

(WebCore::setJSattributeConstructor):

  • bindings/scripts/test/JS/JSreadonly.cpp:

(WebCore::setJSreadonlyConstructor):

  • page/DOMWindow.idl:

LayoutTests:

  • fast/dom/HTMLDocument/constructor-setter-crash-expected.txt: Added.
  • fast/dom/HTMLDocument/constructor-setter-crash.html: Added.

Add regression test for crash at <rdar://problem/22825602>.

  • fast/dom/prototype-constructor-setter-expected.txt: Added.
  • fast/dom/prototype-constructor-setter.html: Added.

Add new test checking that prototype.constructor is writable.

  • js/dom/constructor-attributes-expected.txt:

Rebaseline existing test now that prototype.constructor is writable.

12:57 PM Changeset in webkit [195906] by Yusuke Suzuki
  • 3 edits in trunk/Source/JavaScriptCore

[B3] JetStream/quicksort.c fails/hangs on Linux with GCC
https://bugs.webkit.org/show_bug.cgi?id=153647

Reviewed by Filip Pizlo.

In B3ComputeDivisionMagic, we accidentally perform sub, add operation onto signed integer. (In this case, int32_t)
But integer overflow is undefined behavior in C[1][2]
As a result, in GCC 4.9 release build, computeDivisionMagic(2) returns unexpected value.
divisor = 2
d = 2
signedMin = INT32_MIN = -2147483647 (-0x7fffffff)
t = signedMin
anc = t - 1 - (t % ad) Oops, we performed overflow operation!

So, anc value becomes undefined.
In this patch, we first cast all the operated values to unsigned one.
Reading the code, there are no operations that depends on signedness. (For example, we used aboveEqual like unsigned operations for comparison.)

[1]: http://blog.llvm.org/2011/05/what-every-c-programmer-should-know.html
[2]: http://dl.acm.org/citation.cfm?id=2522728

  • b3/B3ComputeDivisionMagic.h:

(JSC::B3::computeDivisionMagic):

  • b3/testb3.cpp:

(JSC::B3::testComputeDivisionMagic):
(JSC::B3::run):

12:48 PM Changeset in webkit [195905] by akling@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Shrink Heap::m_executables after cleaning it.
<https://webkit.org/b/153682>

Reviewed by Darin Adler.

The Heap::m_executables Vector was never shrunk down, despite sometimes
getting pretty huge (~500kB in my longest-running WebContent process.)

After GC has finished pruning unmarked Executables, shrink the Vector.

  • heap/Heap.cpp:

(JSC::Heap::clearUnmarkedExecutables):

12:10 PM Changeset in webkit [195904] by Chris Dumez
  • 12 edits in trunk

Move more 'constructor' properties to the prototype
https://bugs.webkit.org/show_bug.cgi?id=153667

Reviewed by Darin Adler.

LayoutTests/imported/w3c:

Rebaseline several W3C tests now that more checks are passing. A lot of
the 'constructor' attributes checks are still failing because the
attribute is not writable. This is being addressed via Bug 149412.

  • web-platform-tests/dom/collections/HTMLCollection-supported-property-names-expected.txt:
  • web-platform-tests/dom/interfaces-expected.txt:
  • web-platform-tests/dom/nodes/Element-getElementsByTagName-expected.txt:
  • web-platform-tests/html/dom/documents/dom-tree-accessors/document.forms-expected.txt:
  • web-platform-tests/html/dom/interfaces-expected.txt:

Source/WebCore:

Move more 'constructor' properties to the prototype. In particular, we
used to keep the 'constructor' on the instance for interfaces that have
an indexed / named property getter because our getOwnPropertySlot()
implementation used to be wrong for such interfaces.

However, getOwnPropertySlot() should be correct after r188590 so we
should now be able to move the 'constructor' up to the prototype for
these interfaces, as per the specification:
http://heycam.github.io/webidl/#interface-prototype-object

No new tests, already covered by existing tests.

  • bindings/js/JSPluginElementFunctions.h:

(WebCore::pluginElementCustomGetOwnPropertySlot):
Add a null check for staticPropHashTable. It is now null because this
type no longer has any property on the instance now that 'constructor'
is on the prototype.

  • bindings/scripts/CodeGeneratorJS.pm:

(ConstructorShouldBeOnInstance):

LayoutTests:

Rebaseline a couple of tests now that 'constructor' is on the prototype
for more interfaces.

  • fast/dom/htmlcollection-getownpropertynames-expected.txt:
  • storage/domstorage/localstorage/delete-defineproperty-removal-expected.txt:
12:06 PM Changeset in webkit [195903] by fpizlo@apple.com
  • 5 edits in trunk/Websites/webkit.org

Improve the style of B3 documentation
https://bugs.webkit.org/show_bug.cgi?id=153674

Reviewed by Oliver Hunt.

This makes the style of the B3 documentation look like the Wiki, which I think is
appropriate for the kind of content that we're putting into it - in particular, the font
is the perfect size for dense content. The style also doesn't require much spoonfeeding
from the HTML side so you can write nice looking documentation by just using really
basic HTML constructs.

  • docs/b3/assembly-intermediate-representation.html:
  • docs/b3/index.html:
  • docs/b3/intermediate-representation.html:
  • docs/b3/style.css:
12:01 PM Changeset in webkit [195902] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[GTK] Use configured python executable when executing generate-inspector-gresource-manifest.py
https://bugs.webkit.org/show_bug.cgi?id=153712

Patch by Jeremy Huddleston Sequoia <jeremyhu@apple.com> on 2016-01-30
Reviewed by Michael Catanzaro.

  • PlatformGTK.cmake:
11:30 AM Changeset in webkit [195901] by adachan@apple.com
  • 10 edits in trunk/Source

Enable VIDEO_PRESENTATION_MODE only in Debug and Release builds on Mac
https://bugs.webkit.org/show_bug.cgi?id=153665

Reviewed by Dan Bernstein.

Source/JavaScriptCore:

  • Configurations/FeatureDefines.xcconfig:

Source/WebCore:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

  • Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

  • Configurations/FeatureDefines.xcconfig:

Source/WTF:

  • wtf/Platform.h:

Remove this as the flag is already defined in FeatureDefines.xcconfig files.

11:22 AM Changeset in webkit [195900] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebCore

[iOS] WebKit1 apps crash in _ZN7WebCore16DiskCacheMonitorC2ERKNS_15ResourceRequestENS_9SessionIDEPK20_CFCachedURLResponse_block_invoke1
<http://webkit.org/b/153710>
<rdar://problem/23116706>

Reviewed by Darin Adler.

  • loader/cocoa/DiskCacheMonitorCocoa.mm:

(WebCore::DiskCacheMonitor::DiskCacheMonitor):

  • Fix race condition on iOS WebKit1 clients by calling the block to cancel the DiskCacheMonitor on the WebThread, which is the same thread where the CFCachedURLResponseCallBackBlock is called.
  • Removed whitespace to adhere to style.
10:38 AM Changeset in webkit [195899] by rniwa@webkit.org
  • 14 edits
    2 adds in trunk

TouchList should be retargeted
https://bugs.webkit.org/show_bug.cgi?id=149592

Reviewed by Antti Koivisto.

Source/WebCore:

Retarget touch target's using the same algorithm as the one used for related targets instead of
EventRelatedNodeResolver which is removed in this patch.

Also enable the retargeting on iOS.

Test: fast/shadow-dom/touch-event-ios.html

  • dom/EventContext.cpp:

(WebCore::TouchEventContext::TouchEventContext):
(WebCore::TouchEventContext::handleLocalEvents):
(WebCore::TouchEventContext::checkReachability):

  • dom/EventContext.h:

(WebCore::toTouchEventContext):
(WebCore::EventContext::isUnreachableNode):

  • dom/EventDispatcher.cpp:

(WebCore::EventRelatedNodeResolver): Deleted.
(WebCore::EventPath::EventPath):
(WebCore::EventDispatcher::dispatchEvent):
(WebCore::addRelatedNodeResolversForTouchList): Deleted.
(WebCore::EventPath::updateTouchLists): Deleted.
(WebCore::EventPath::setRelatedTarget): Removed superfluous UNUSED_PARAM since the argument is always used.
(WebCore::EventPath::retargetTouch): Extracted from updateTouchLists/setRelatedTarget. Clones Touch object
with the new target for each event context just like related targets.
(WebCore::EventPath::retargetTouchLists): Renamed from updateTouchLists. Calls retargetTouch on each Touch
object in each TouchList.

  • dom/TouchEvent.h:

Tools:

Added touchDownAtPoint and liftUpAtPoint to UIScriptController so that we can test touch events with
multiple touch targets on iOS. fast/shadow-dom/touch-event-ios.html uses this new testing feature.

  • WebKitTestRunner/UIScriptContext/Bindings/UIScriptController.idl:
  • WebKitTestRunner/UIScriptContext/UIScriptController.cpp:

(WTR::UIScriptController::touchDownAtPoint): Added.
(WTR::UIScriptController::liftUpAtPoint): Added.

  • WebKitTestRunner/UIScriptContext/UIScriptController.h:
  • WebKitTestRunner/ios/HIDEventGenerator.h:
  • WebKitTestRunner/ios/HIDEventGenerator.mm:

(-[HIDEventGenerator touchDown:touchCount:completionBlock:]): Added. Sends touch down and waits.
(-[HIDEventGenerator liftUp:touchCount:completionBlock:]): Ditto for lift up.

  • WebKitTestRunner/ios/UIScriptControllerIOS.mm:

(WTR::UIScriptController::touchDownAtPoint): Added.
(WTR::UIScriptController::liftUpAtPoint): Added.

LayoutTests:

Added a regression test for retargeting touch targets on iOS.

  • fast/shadow-dom/touch-event-ios-expected.txt: Added.
  • fast/shadow-dom/touch-event-ios.html: Added.
  • platform/mac/TestExpectations: Added the failing expectation on Mac since touch support is not enabled.
10:09 AM Changeset in webkit [195898] by Yusuke Suzuki
  • 2 edits in trunk/Source/JavaScriptCore

[B3] REGRESSION(r195882): Should break early after modConstant replaceWithNewValue succeeds
https://bugs.webkit.org/show_bug.cgi?id=153711

Reviewed by Filip Pizlo.

Should break after modConstant replaceWithNewValue succeeds. m_value is already replaced with Identity
if modConstant succeeds. So it does not have any children. m_value->child(1) breaks testb3.

  • b3/B3ReduceStrength.cpp:
9:03 AM WebKitGTK/Gardening/Calendar edited by Michael Catanzaro
(diff)
9:03 AM WebKitGTK/Gardening/Calendar edited by Michael Catanzaro
(diff)
9:02 AM Changeset in webkit [195897] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Two disk cache tests are failing

Unreviewed gardening.

  • platform/gtk/TestExpectations:
8:48 AM Changeset in webkit [195896] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Some W3C DOM tests are failing

Unreviewed gardening.

  • platform/gtk/TestExpectations:
8:38 AM Changeset in webkit [195895] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] IndexedDB expectations gardening

Unreviewed gardening.

  • platform/gtk/TestExpectations:
8:14 AM Changeset in webkit [195894] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] platform/gtk/scrollbars/overflow-scrollbar-horizontal-wheel-scroll.html is failing

Unreviewed gardening.

  • platform/gtk/TestExpectations:
8:03 AM Changeset in webkit [195893] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Some organization in the test expectations file

Unreviewed.

  • platform/gtk/TestExpectations:
7:33 AM WebKitGTK/Gardening/Calendar edited by Michael Catanzaro
(diff)
7:28 AM Changeset in webkit [195892] by hyatt@apple.com
  • 20 edits
    35 adds in trunk

Support break-after, break-before and break-inside.
https://bugs.webkit.org/show_bug.cgi?id=148814

Reviewed by Dean Jackson.

Source/WebCore:

New tests added in printing/, fast/multicol/, and fast/regions.

  • css/CSSComputedStyleDeclaration.cpp:

(WebCore::convertToPageBreak):
(WebCore::convertToColumnBreak):
(WebCore::convertToRegionBreak):
For backwards compatibility, keep support for all the old properties in
computed style. This means we have to convert the break-* property values
into keywords that make sense for the legacy properties. This mainly
involves mapping "page", "column", "region" to "always" (similar rule for
the avoid-* versions as well).

(WebCore::ComputedStyleExtractor::propertyValue):
Add support for the three new break-* properties.

  • css/CSSParser.cpp:

(WebCore::isValidKeywordPropertyAndValue):
(WebCore::isKeywordPropertyID):
(WebCore::CSSParser::parseValue):
Add support for the new break properties.

  • css/CSSPrimitiveValueMappings.h:

(WebCore::CSSPrimitiveValue::operator BreakBetween):
(WebCore::CSSPrimitiveValue::operator BreakInside):
Add converters for the new BreakBetween and BreakInside enums. Remove
the EPageBreak enum, since it is no longer used.

  • css/CSSPropertyNames.in:
  • css/CSSValueKeywords.in:

Add the new properties and the new values supported by the properties
to the keywords lists.

  • css/StyleBuilderConverter.h:

(WebCore::StyleBuilderConverter::convertFontSynthesis):
(WebCore::StyleBuilderConverter::convertPageBreakBetween):
(WebCore::StyleBuilderConverter::convertPageBreakInside):
(WebCore::StyleBuilderConverter::convertColumnBreakBetween):
(WebCore::StyleBuilderConverter::convertColumnBreakInside):
(WebCore::StyleBuilderConverter::convertRegionBreakBetween):
(WebCore::StyleBuilderConverter::convertRegionBreakInside):
In order to map the legacy properties into the new break-* values
we have custom converter functions.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::paintChild):
(WebCore::RenderBlock::childBoxIsUnsplittableForFragmentation):
(WebCore::RenderBlock::computeRegionRangeForBoxChild):

  • rendering/RenderBlockFlow.cpp:

(WebCore::RenderBlockFlow::applyBeforeBreak):
(WebCore::RenderBlockFlow::applyAfterBreak):
Patch the block code to check the correct new break-* constants. For
avoidance, this means checking both the general avoid value and the
specific value (e.g., avoid-page). In place of "always", we check
the specific value (e.g., column) and then for page specifically, we
also treat "left", "right", "recto" and "verso" as "always break" for now.

  • rendering/style/RenderStyle.cpp:

(WebCore::RenderStyle::changeRequiresLayout):
Make sure changes to the break properties trigger relayout.

  • rendering/style/RenderStyle.h:

Add getters and setters for the break-* properties and remove all
occurrences of the legacy page, column and region values from the RenderStyle.

  • rendering/style/RenderStyleConstants.cpp:

(WebCore::alwaysPageBreak):
We have a helper function here for mapping several constant values to "page".

  • rendering/style/RenderStyleConstants.h:

Definitions of the new BreakBetween and BreakInside enums.

  • rendering/style/StyleMultiColData.cpp:

(WebCore::StyleMultiColData::StyleMultiColData):
(WebCore::StyleMultiColData::operator==):

  • rendering/style/StyleMultiColData.h:

Remove the column-specific break data.

  • rendering/style/StyleRareNonInheritedData.cpp:

(WebCore::StyleRareNonInheritedData::StyleRareNonInheritedData):
(WebCore::StyleRareNonInheritedData::operator==):

  • rendering/style/StyleRareNonInheritedData.h:

Remove the region-specific break data and replace it with generic break
data that is now used by all three pagination models.

LayoutTests:

  • TestExpectations:
  • fast/multicol/standardized-break-properties-expected.txt: Added.
  • fast/multicol/standardized-break-properties.html: Added.
  • fast/multicol/vertical-lr/standardized-break-properties-expected.txt: Added.
  • fast/multicol/vertical-lr/standardized-break-properties.html: Added.
  • fast/multicol/vertical-rl/standardized-break-properties-expected.txt: Added.
  • fast/multicol/vertical-rl/standardized-break-properties.html: Added.
  • fast/regions/text-break-properties-expected.txt: Added.
  • fast/regions/text-break-properties.html: Added.
  • printing/allowed-breaks-expected.txt: Added.
  • printing/allowed-breaks.html: Added.
  • printing/break-after-avoid-expected.txt: Added.
  • printing/break-after-avoid-page-expected.txt: Added.
  • printing/break-after-avoid-page.html: Added.
  • printing/break-after-avoid.html: Added.
  • printing/break-always-expected.txt: Added.
  • printing/break-always.html: Added.
  • printing/break-avoid-expected.txt: Added.
  • printing/break-avoid-page-expected.txt: Added.
  • printing/break-avoid-page.html: Added.
  • printing/break-avoid.html: Added.
  • printing/break-display-none-expected.txt: Added.
  • printing/break-display-none.html: Added.
  • printing/break-inside-avoid-expected.txt: Added.
  • printing/break-inside-avoid-page-expected.txt: Added.
  • printing/break-inside-avoid-page.html: Added.
  • printing/break-inside-avoid.html: Added.
  • printing/script-tests/allowed-breaks.js: Added.

(test):

  • printing/script-tests/break-after-avoid-page.js: Added.

(test):

  • printing/script-tests/break-after-avoid.js: Added.

(test):

  • printing/script-tests/break-always.js: Added.

(test):

  • printing/script-tests/break-avoid-page.js: Added.

(test):

  • printing/script-tests/break-avoid.js: Added.

(test):

  • printing/script-tests/break-display-none.js: Added.

(test):

  • printing/script-tests/break-inside-avoid-page.js: Added.

(test):

  • printing/script-tests/break-inside-avoid.js: Added.

(test):

7:25 AM WebKitGTK/Gardening/Calendar edited by Michael Catanzaro
(diff)
7:18 AM blue1.jpg attached to SquirrelFish by smartmiltoys@gmail.com
[http://smartmiltoys.com/kidkraft-train-table/
4:53 AM Changeset in webkit [195891] by Yusuke Suzuki
  • 13 edits in trunk

Enable SamplingProfiler on POSIX environment
https://bugs.webkit.org/show_bug.cgi?id=153584

Reviewed by Michael Saboff.

.:

Add features.h header check. It will define GLIBC.

  • Source/cmake/OptionsCommon.cmake:

Source/JavaScriptCore:

In this patch, we implement suspend and resume mechanizm for POSIX threads.
And with GLIBC, we can retrieve registers from it.

We take the following strategy.

Suspend side.

  1. install sigaction to the threads.
  2. in the profiler (suspend / resume callers), emit signal with pthread_kill and wait with POSIX semaphore.
  3. in the signal handler, up the POSIX semaphore. Use sem_post because it is the async-signal-safe function in POSIX.
  4. in the signal handler, perform sigsuspend to stop the thread until being resumed.
  5. in the profiler, we can be waken up from the semaphore because (3) ups.

Resume side.

  1. in the profiler, emit signal and wait on the semaphore.
  2. in the signal handler, it is waken up from the sigsuspend.
  3. in the signal handler, up the semaphore.
  4. in the profiler, the profiler is waken up from the semaphore. It is ensured that the given thread is resumed by the signal.
  • heap/MachineStackMarker.cpp:

(pthreadSignalHandlerSuspendResume):
(JSC::MachineThreads::Thread::Thread):
(JSC::MachineThreads::Thread::~Thread):
(JSC::MachineThreads::Thread::suspend):
(JSC::MachineThreads::Thread::resume):
(JSC::MachineThreads::Thread::getRegisters):
(JSC::MachineThreads::Thread::Registers::stackPointer):
(JSC::MachineThreads::Thread::Registers::framePointer):
(JSC::MachineThreads::Thread::Registers::instructionPointer):
(JSC::MachineThreads::Thread::Registers::llintPC):
(JSC::MachineThreads::Thread::freeRegisters):

  • heap/MachineStackMarker.h:
  • runtime/SamplingProfiler.cpp:

(JSC::reportStats):

  • tests/stress/call-varargs-from-inlined-code-with-odd-number-of-arguments.js:
  • tests/stress/call-varargs-from-inlined-code.js:
  • tests/stress/v8-earley-boyer-strict.js:

Source/WTF:

Use GLIBC since mcontext_t layout depends on it.

  • wtf/Platform.h:

Tools:

  • Scripts/run-jsc-stress-tests:

Jan 29, 2016:

11:10 PM B3IntermediateRepresentation created by fpizlo@apple.com
11:10 PM BareBonesBackend created by fpizlo@apple.com
10:03 PM WebKitGTK/Gardening/Calendar edited by Michael Catanzaro
(diff)
9:59 PM Changeset in webkit [195890] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Mark two CSS multicolumn tests as failing

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
9:57 PM Changeset in webkit [195889] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Mark two scrollbar tests as crashing

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
9:56 PM Changeset in webkit [195888] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Really mark imported/blink/fast/css/first-letter-float-block.html as crashing

Unreviewed test gardening. Copypaste error in the previous commit.

  • platform/gtk/TestExpectations:
9:53 PM Changeset in webkit [195887] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Mark imported/blink/fast/css/first-letter-float-block.html as crashing

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
9:49 PM Changeset in webkit [195886] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Mark some accessibility role tests as failing

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
9:47 PM Changeset in webkit [195885] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Mark some content security policy tests as failing

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
9:46 PM Changeset in webkit [195884] by Michael Catanzaro
  • 2 edits in trunk/LayoutTests

[GTK] Mark Ruby expansion tests as failing

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
9:42 PM Changeset in webkit [195883] by Michael Catanzaro
  • 1 edit
    5 adds in trunk/LayoutTests

[GTK] Add expectations for media source SourceBuffer tests

Unreviewed test gardening.

  • platform/gtk/http/tests/media/media-source/SourceBuffer-abort-expected.txt: Added.
  • platform/gtk/http/tests/media/media-source/SourceBuffer-abort-readyState-expected.txt: Added.
  • platform/gtk/http/tests/media/media-source/SourceBuffer-abort-removed-expected.txt: Added.
  • platform/gtk/http/tests/media/media-source/SourceBuffer-abort-updating-expected.txt: Added.
9:14 PM Changeset in webkit [195882] by fpizlo@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

B3 should reduce Mod(value, constant) to Div and Mul so that our Div optimizations can do things
https://bugs.webkit.org/show_bug.cgi?id=153693

Reviewed by Saam Barati.

The most efficient way to handle Mod(value, constant) is to reduce it to
Sub(value, Mul(Div(value, constant), constant)) and then let the Div optimizations do their
thing.

In the future we could add special handling of Mod(value, 1 << constant), but it's not
obvious that this would produce better code than reducing through Div, if we also make sure
that we have great optimizations for Mul and Div.

  • b3/B3ReduceStrength.cpp:
7:31 PM Changeset in webkit [195881] by commit-queue@webkit.org
  • 7 edits in trunk/Source/WebInspectorUI

Web Inspector: Add support for variable size timeline graphs
https://bugs.webkit.org/show_bug.cgi?id=153690
<rdar://problem/24421696>

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

  • UserInterface/Views/LayoutTimelineDataGrid.js:

(WebInspector.LayoutTimelineDataGrid): Deleted.
Remove unnecessary constructor.

  • UserInterface/Views/TimelineOverviewGraph.js:

(WebInspector.TimelineOverviewGraph.prototype.set selectedRecord):
Default graph height.

  • UserInterface/Views/RenderingFrameTimelineOverview.js:

(WebInspector.RenderingFrameTimelineOverview.prototype.get height):
Custom graph height.

  • UserInterface/Views/TimelineOverview.js:

(WebInspector.TimelineOverview.prototype.get height):
Provide a way to get the height of the overview which accumulates graph heights.

  • UserInterface/Views/TimelineRecordingContentView.js:

(WebInspector.TimelineRecordingContentView.prototype.get timelineOverviewHeight):
(WebInspector.TimelineRecordingContentView.prototype._updateTimelineOverviewHeight):

  • UserInterface/Views/TimelineSidebarPanel.js:

(WebInspector.TimelineSidebarPanel.prototype._updateTimelineOverviewHeight):
Switch from assuming certain graph heights to asking the overview for its height.

7:19 PM Changeset in webkit [195880] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Object previews in the Console are misaligned
https://bugs.webkit.org/show_bug.cgi?id=153676
<rdar://problem/24418796>

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

  • UserInterface/Views/ObjectTreeView.css:

(.object-tree .tree-outline.object.compact):
(.object-tree): Deleted.

6:57 PM Changeset in webkit [195879] by peavo@outlook.com
  • 2 edits in trunk/Source/WebCore

[Win] Fix compile error.
https://bugs.webkit.org/show_bug.cgi?id=153646

Reviewed by Darin Adler.

  • platform/text/win/LocaleWin.cpp:

(WebCore::LCIDFromLocaleInternal):

6:45 PM Changeset in webkit [195878] by keith_miller@apple.com
  • 9 edits
    1 add in trunk/Source/JavaScriptCore

Array.prototype native functions should use Symbol.species to construct the result
https://bugs.webkit.org/show_bug.cgi?id=153660

Reviewed by Saam Barati.

This patch adds support for Symbol.species in the Array.prototype native functions.
We make an optimization to avoid regressions on some benchmarks by using an
adaptive watchpoint to check if Array.prototype.constructor is ever changed.

  • runtime/ArrayPrototype.cpp:

(JSC::putLength):
(JSC::setLength):
(JSC::speciesConstructArray):
(JSC::arrayProtoFuncConcat):
(JSC::arrayProtoFuncSlice):
(JSC::arrayProtoFuncSplice):
(JSC::ArrayPrototype::setConstructor):
(JSC::ArrayPrototypeAdaptiveInferredPropertyWatchpoint::ArrayPrototypeAdaptiveInferredPropertyWatchpoint):
(JSC::ArrayPrototypeAdaptiveInferredPropertyWatchpoint::handleFire):

  • runtime/ArrayPrototype.h:

(JSC::ArrayPrototype::didChangeConstructorProperty):

  • runtime/ConstructData.cpp:

(JSC::construct):

  • runtime/ConstructData.h:
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::init):

  • tests/es6.yaml:
  • tests/stress/array-species-functions.js: Added.

(Symbol.species):
(funcThrows):
(test.species):
(test):

6:36 PM Changeset in webkit [195877] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

CallLinkStatus should trust BadCell exit sites whenever there is no stub
https://bugs.webkit.org/show_bug.cgi?id=153691

Reviewed by Benjamin Poulain.

This fixes a regression in our treatment of inlining failure exit sites when deciding if we
should inline a call.

A long time ago, a BadCell exit site would ensure that a CallLinkStatus returned
takesSlowPath.

But then we added closure calls. A BadCell exit site might just mean that we should do
closure call inlining. We added a BadExecutable exit site to indicate that even closure call
inlining had failed. BadCell would no longer force CallLinkStatus to return takesSlowPath,
but BadExecutable would stuff do so.

But then we unified the IR for checking functions and executables, and the DFG stopped using
the BadExecutable exit kind. Probably this change disabled our ability to use exit site
counting for deciding when to takesSlowPath. But this isn't necessarily a disaster, since
any time you exited in this way, you'd be taken to a baseline call inline cache, and that
inline cache would record the slow path.

But then we introduced polymorphic call inlining. Polymorphic call inlining means that call
unlinking, like when one of the callees is optimized, will reset the stub. We also made it
so that the stub is like a gate for the slow path count. A clear inline cache must first
cause the creation of a stub and then cause it to overflow before the slow path is counted.

So, if the DFG or FTL exits on a cell check associated with a particular callsite being
speculatively inlined, then it's possible that nobody will know about the exit because:

  • The exit kind is BadCell but CallLinkStatus needs BadExecutable to disable inlining.
  • Between when we tiered up to the DFG (or FTL) and when the exit happened, one of the callees was tiered up, causing the baseline CallLinkInfo to be unlinked. Therefore, after the exit, the inline cache is in a reset state and will not count the call as taking slow path.

The challenge when dealing with this is that often, we will have an super early compilation
of a minimorphic call site before we have seen all of its small set of callees. For example
we may have seen only one of two possible callees. That early compilation will OSR exit, and
in trunk, will be recompiled with bimorphic speculative inlining. That's a pretty good
outcome. Basically, we are trusting that if during the time that the function has been
running prior to a given compilation, a callsite has only seen a small number of callees,
then it's safe to assume that it won't see another one anytime soon.

So, simply forcing the CallLinkStatus to set takesSlowPath any time there was a BadCell exit
would hurt our performance in some cases, because trunk prior to this change would have their
final compilation use speculative inlining, and this change would make guarded inlining
instead.

The compromise that I came up with relies on the fact that a CallLinkInfo must be reset quite
frequently for it to routinely happen in between tier-up to DFG (or FTL) and an exit. So,
most likely, such a CallLinkInfo will also show up as being clear when the CallLinkStatus
is built during DFG profiling. The CallLinkStatus will then fall back on the CallLinkInfo's
lastSeenCallee field, which is persistent across resets. This change just makes it so that
CallLinkStatus sets takesSlowPath if there is a BadCell exit and the status had to be
inferred from the lastSeenCallee.

This change reduces pointless recompilations in gbemu. It's an 11% speed-up on gbemu. It
doesn't seem to hurt any benchmarks.

  • bytecode/CallLinkStatus.cpp:

(JSC::CallLinkStatus::computeFor):
(JSC::CallLinkStatus::computeExitSiteData):
(JSC::CallLinkStatus::computeFromCallLinkInfo):

  • bytecode/CallLinkStatus.h:

(JSC::CallLinkStatus::CallLinkStatus):
(JSC::CallLinkStatus::at):
(JSC::CallLinkStatus::operator[]):
(JSC::CallLinkStatus::isProved):
(JSC::CallLinkStatus::isBasedOnStub):
(JSC::CallLinkStatus::canOptimize):
(JSC::CallLinkStatus::maxNumArguments):
(JSC::CallLinkStatus::ExitSiteData::ExitSiteData): Deleted.

6:05 PM Changeset in webkit [195876] by sbarati@apple.com
  • 7 edits in trunk/Source/JavaScriptCore

Pack FunctionExecutable and UnlinkedFunctionExecutable harder
https://bugs.webkit.org/show_bug.cgi?id=153687

Reviewed by Andreas Kling.

This patch reduces FunctionExecutable from 120 to 104 bytes.
This patch reduces UnlinkedFunctionExecutable from 144 to 136 bytes.

  • bytecode/ExecutableInfo.h:
  • bytecode/UnlinkedFunctionExecutable.cpp:

(JSC::UnlinkedFunctionExecutable::UnlinkedFunctionExecutable):

  • bytecode/UnlinkedFunctionExecutable.h:
  • parser/ParserModes.h:

(JSC::functionNameScopeIsDynamic):

  • runtime/Executable.cpp:

(JSC::ScriptExecutable::ScriptExecutable):

  • runtime/Executable.h:

(JSC::ScriptExecutable::needsActivation):
(JSC::ScriptExecutable::isArrowFunctionContext):
(JSC::ScriptExecutable::isStrictMode):
(JSC::ScriptExecutable::derivedContextType):
(JSC::ScriptExecutable::ecmaMode):
(JSC::ScriptExecutable::finishCreation):

5:53 PM Changeset in webkit [195875] by bshafiei@apple.com
  • 1 copy in tags/Safari-601.5.13

New tag.

5:51 PM Changeset in webkit [195874] by bshafiei@apple.com
  • 1 edit in branches/safari-601-branch/Source/WebCore/platform/graphics/mac/FontCacheMac.mm

Build fix after r195857. rdar://problem/24208101

5:38 PM Changeset in webkit [195873] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Rebaseline fast/block/basic/016.html for ios-simulator after r195740

Unreviewed test gardening.

  • platform/ios-simulator/fast/block/basic/016-expected.txt:
5:31 PM Changeset in webkit [195872] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Last commit should have marked fast/text/fallback-language-han-2.html as an ImageOnlyFailure. Fixing that.
https://bugs.webkit.org/show_bug.cgi?id=152438

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
5:29 PM Changeset in webkit [195871] by Antti Koivisto
  • 3 edits in trunk/Source/WebCore

Tab suspension code shouldn't use page cache cacheability logic
https://bugs.webkit.org/show_bug.cgi?id=153680

Reviewed by Andreas Kling.

Most of PageCache::canCache() is unnecessary for tab suspension.

Also improve robustness.

  • page/Page.cpp:

(WebCore::Page::setPageActivityState):
(WebCore::Page::setIsVisible):
(WebCore::Page::setIsVisibleInternal):
(WebCore::Page::setIsPrerender):
(WebCore::Page::canTabSuspend):

Include visibility test here.

Instead of calling PageCache::canCache() just check for each frame that

  • that the document is loaded
  • that active DOM objects allow suspension

(WebCore::Page::setIsTabSuspended):
(WebCore::Page::setTabSuspensionEnabled):
(WebCore::Page::updateTabSuspensionState):

Refactor for robustness.

(WebCore::Page::tabSuspensionTimerFired):

Call canTabSuspend, the result might have changed.

(WebCore::Page::scheduleTabSuspension): Deleted.

  • page/Page.h:
5:28 PM Changeset in webkit [195870] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Mark fast/text/fallback-language-han-2.html as failing on ios-simulator.
https://bugs.webkit.org/show_bug.cgi?id=152438

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
5:24 PM Changeset in webkit [195869] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking two WPT dom-tree-accessors/document.getElementsByName tests as failing on ios-simulator.
https://bugs.webkit.org/show_bug.cgi?id=153370

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
5:20 PM Changeset in webkit [195868] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking webarchive/loading/object.html as flaky on ios-simulator-wk2
https://bugs.webkit.org/show_bug.cgi?id=153380

Unreviewed test gardening.

  • platform/ios-simulator-wk2/TestExpectations:
5:14 PM Changeset in webkit [195867] by bshafiei@apple.com
  • 1 copy in tags/Safari-601.1.46.95

New tag.

5:13 PM Changeset in webkit [195866] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking all displaylists tests as flaky on ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=153656

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
5:11 PM Changeset in webkit [195865] by sbarati@apple.com
  • 45 edits
    3 adds in trunk/Source/JavaScriptCore

JSC Sampling Profiler: Come up with a (program counter => CodeOrigin) mapping
https://bugs.webkit.org/show_bug.cgi?id=152629

Reviewed by Filip Pizlo.

This patch implements a mapping from PC to CodeOrigin
that lives off of JITed CodeBlocks. We build this mapping
while JITing code, and then we compress it and store
it on the CodeBlock. We only build the mapping if a debugger
has ever been attached to any global object.

CodeBlock consults this mapping when searching for a CodeOrigin
for a given PC, but it also consults other code ranges
off the main path that may own the PC. Specifically, it searches
through inline caches, OSRExits, and LazySlowPaths.

To find PC info for the LLInt, we also save the LLInt pc when
taking a stack trace where the top frame is in LLInt code.

This patch also cleans up code inside the SamplingProfier.
I realized a bug in the SamplingProfiler's implementation.
We used to walk the inline stack while gathering a stack
trace. This is wrong. It's super dangerous to do this because
we might pause the JSC process while it's modifying its
CodeOrigin table. We used to walk the inline stack while
taking a stack trace because doing so could save us from
having to verify a particular stack trace. This patch changes that.
We now have to verify all stack traces taken. This verification step
includes walking the inline stack.

Because we have a PC=>CodeOrigin map, we can now gather more
detailed information about the top-frame we pause. This allows
us to correctly observe inlining. It also allows us to observe
expression-level line/column information for the top frame.
The reason we don't consult this mapping for parent frames is
that all parent frames should set the CallSiteIndex on the call
frame header, which means we can consult that value to get inlining
and expression-level line/column information.

(JSC::AbstractMacroAssembler::Label::Label):
(JSC::AbstractMacroAssembler::Label::operator==):
(JSC::AbstractMacroAssembler::Label::isSet):

  • assembler/AssemblerBuffer.h:

(JSC::AssemblerLabel::labelAtOffset):
(JSC::AssemblerLabel::operator==):

  • b3/B3Generate.cpp:
  • b3/B3Origin.h:

(JSC::B3::Origin::data):
(JSC::B3::Origin::operator==):

  • b3/B3PCToOriginMap.h: Added.

(JSC::B3::PCToOriginMap::PCToOriginMap):
(JSC::B3::PCToOriginMap::appendItem):
(JSC::B3::PCToOriginMap::ranges):

  • b3/B3Procedure.h:

(JSC::B3::Procedure::pcToOriginMap):
(JSC::B3::Procedure::releasePCToOriginMap):

  • b3/air/AirGenerate.cpp:

(JSC::B3::Air::generate):

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::insertBasicBlockBoundariesForControlFlowProfiler):
(JSC::CodeBlock::setPCToCodeOriginMap):
(JSC::CodeBlock::findPC):

  • bytecode/CodeBlock.h:

(JSC::CodeBlock::jitCodeMap):
(JSC::CodeBlock::bytecodeOffset):

  • bytecode/CodeOrigin.h:

(JSC::CodeOrigin::operator==):
(JSC::CodeOriginHash::hash):
(JSC::CodeOriginHash::equal):

  • bytecode/InlineCallFrame.h:

(JSC::baselineCodeBlockForOriginAndBaselineCodeBlock):
(JSC::CodeOrigin::walkUpInlineStack):

  • bytecode/PolymorphicAccess.h:

(JSC::PolymorphicAccess::containsPC):

  • bytecode/StructureStubInfo.cpp:

(JSC::StructureStubInfo::visitWeakReferences):
(JSC::StructureStubInfo::containsPC):

  • bytecode/StructureStubInfo.h:
  • bytecode/UnlinkedCodeBlock.h:

(JSC::UnlinkedCodeBlock::hasExpressionInfo):
(JSC::UnlinkedCodeBlock::expressionInfo):
(JSC::UnlinkedCodeBlock::setThisRegister):

  • debugger/Debugger.cpp:

(JSC::Debugger::attach):

  • dfg/DFGJITCode.cpp:

(JSC::DFG::JITCode::validateReferences):
(JSC::DFG::JITCode::findPC):

  • dfg/DFGJITCode.h:

(JSC::DFG::JITCode::commonDataOffset):

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::JITCompiler):
(JSC::DFG::JITCompiler::link):
(JSC::DFG::JITCompiler::compile):
(JSC::DFG::JITCompiler::compileFunction):
(JSC::DFG::JITCompiler::recordCallSiteAndGenerateExceptionHandlingOSRExitIfNeeded):
(JSC::DFG::JITCompiler::setEndOfMainPath):
(JSC::DFG::JITCompiler::setEndOfCode):

  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::setStartOfCode):
(JSC::DFG::JITCompiler::setForNode):
(JSC::DFG::JITCompiler::addCallSite):
(JSC::DFG::JITCompiler::pcToCodeOriginMapBuilder):
(JSC::DFG::JITCompiler::setEndOfMainPath): Deleted.
(JSC::DFG::JITCompiler::setEndOfCode): Deleted.

  • dfg/DFGSlowPathGenerator.h:

(JSC::DFG::SlowPathGenerator::call):
(JSC::DFG::SlowPathGenerator::origin):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::addSlowPathGenerator):
(JSC::DFG::SpeculativeJIT::runSlowPathGenerators):
(JSC::DFG::SpeculativeJIT::compileCurrentBlock):

  • dfg/DFGSpeculativeJIT.h:
  • ftl/FTLB3Compile.cpp:

(JSC::FTL::compile):

  • ftl/FTLJITCode.cpp:

(JSC::FTL::JITCode::liveRegistersToPreserveAtExceptionHandlingCallSite):
(JSC::FTL::JITCode::findPC):

  • ftl/FTLJITCode.h:

(JSC::FTL::JITCode::b3Code):

  • heap/MachineStackMarker.cpp:

(JSC::MachineThreads::Thread::Registers::instructionPointer):
(JSC::MachineThreads::Thread::Registers::llintPC):
(JSC::MachineThreads::Thread::freeRegisters):

  • heap/MachineStackMarker.h:
  • inspector/agents/InspectorScriptProfilerAgent.cpp:

(Inspector::InspectorScriptProfilerAgent::addEvent):
(Inspector::buildSamples):
(Inspector::InspectorScriptProfilerAgent::trackingComplete):

  • jit/JIT.cpp:

(JSC::JIT::JIT):
(JSC::JIT::privateCompileMainPass):
(JSC::JIT::privateCompileSlowCases):
(JSC::JIT::privateCompile):

  • jit/JIT.h:
  • jit/JITCode.h:

(JSC::JITCode::findPC):

  • jit/PCToCodeOriginMap.cpp: Added.

(JSC::PCToCodeOriginMapBuilder::PCToCodeOriginMapBuilder):
(JSC::PCToCodeOriginMapBuilder::appendItem):
(JSC::PCToCodeOriginMap::PCToCodeOriginMap):
(JSC::PCToCodeOriginMap::~PCToCodeOriginMap):
(JSC::PCToCodeOriginMap::memorySize):
(JSC::PCToCodeOriginMap::findPC):

  • jit/PCToCodeOriginMap.h: Added.

(JSC::PCToCodeOriginMapBuilder::defaultCodeOrigin):
(JSC::PCToCodeOriginMapBuilder::didBuildMapping):

  • jsc.cpp:

(functionSamplingProfilerStackTraces):

  • llint/LLIntPCRanges.h:

(JSC::LLInt::isLLIntPC):

  • llint/LowLevelInterpreter.asm:
  • runtime/Options.h:
  • runtime/SamplingProfiler.cpp:

(JSC::reportStats):
(JSC::FrameWalker::FrameWalker):
(JSC::FrameWalker::walk):
(JSC::FrameWalker::resetAtMachineFrame):
(JSC::FrameWalker::isValidFramePointer):
(JSC::SamplingProfiler::SamplingProfiler):
(JSC::SamplingProfiler::~SamplingProfiler):
(JSC::tryGetBytecodeIndex):
(JSC::SamplingProfiler::processUnverifiedStackTraces):
(JSC::SamplingProfiler::visit):
(JSC::SamplingProfiler::noticeVMEntry):
(JSC::SamplingProfiler::clearData):
(JSC::SamplingProfiler::StackFrame::displayName):
(JSC::SamplingProfiler::StackFrame::displayNameForJSONTests):
(JSC::SamplingProfiler::StackFrame::functionStartLine):
(JSC::SamplingProfiler::StackFrame::functionStartColumn):
(JSC::SamplingProfiler::StackFrame::sourceID):
(JSC::SamplingProfiler::StackFrame::url):
(JSC::SamplingProfiler::releaseStackTraces):
(JSC::SamplingProfiler::stackTracesAsJSON):
(WTF::printInternal):
(JSC::SamplingProfiler::StackFrame::startLine): Deleted.
(JSC::SamplingProfiler::StackFrame::startColumn): Deleted.
(JSC::SamplingProfiler::stackTraces): Deleted.

  • runtime/SamplingProfiler.h:

(JSC::SamplingProfiler::UnprocessedStackFrame::UnprocessedStackFrame):
(JSC::SamplingProfiler::StackFrame::StackFrame):
(JSC::SamplingProfiler::StackTrace::StackTrace):
(JSC::SamplingProfiler::totalTime):
(JSC::SamplingProfiler::setStopWatch):

  • runtime/VM.cpp:

(JSC::VM::VM):

  • runtime/VM.h:

(JSC::VM::setShouldBuildPCToCodeOriginMapping):
(JSC::VM::shouldBuilderPCToCodeOriginMapping):

  • tests/stress/sampling-profiler-basic.js:

(platformSupportsSamplingProfiler.top):
(platformSupportsSamplingProfiler.jaz):
(platformSupportsSamplingProfiler.kaz):

4:34 PM Changeset in webkit [195864] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking fast/parser/external-entities-in-xslt.xml as flaky on El Capitan
https://bugs.webkit.org/show_bug.cgi?id=153683

Unreviewed test gardening.

  • platform/mac/TestExpectations:
4:06 PM Changeset in webkit [195863] by rniwa@webkit.org
  • 4 edits in trunk

fast/shadow-dom/Element-interface-attachShadow.html fails on iOS
https://bugs.webkit.org/show_bug.cgi?id=153681

Reviewed by Antti Koivisto.

Source/WebCore:

The bug was caused by canHaveUserAgentShadowRoot() returning false on a meter element since it's disabled on iOS.
Override HTMLUnknownElement's canHaveUserAgentShadowRoot to return false for compatbility on iOS.

  • html/HTMLUnknownElement.h:

(WebCore::HTMLUnknownElement::canHaveUserAgentShadowRoot):

LayoutTests:

Enable shadow DOM and custom elements tests on iOS; matches that's in platform/mac/TestExpectations.

  • platform/ios-simulator/TestExpectations:
4:01 PM Changeset in webkit [195862] by sbarati@apple.com
  • 18 edits in trunk/Source/JavaScriptCore

Remove our notion of having a single activation register
https://bugs.webkit.org/show_bug.cgi?id=153673

Reviewed by Filip Pizlo.

We have many functions lurking around where we think a function
might only have one activation register. This is clearly wrong
now that ES6 has block scoping. This patch removes this false notion.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::dumpBytecode):
(JSC::CodeBlock::CodeBlock):

  • bytecode/CodeBlock.h:

(JSC::CodeBlock::scopeRegister):
(JSC::CodeBlock::codeType):
(JSC::CodeBlock::setActivationRegister): Deleted.
(JSC::CodeBlock::activationRegister): Deleted.
(JSC::CodeBlock::uncheckedActivationRegister): Deleted.
(JSC::CodeBlock::needsActivation): Deleted.

  • bytecode/ExecutableInfo.h:

(JSC::ExecutableInfo::ExecutableInfo):
(JSC::ExecutableInfo::usesEval):
(JSC::ExecutableInfo::isStrictMode):
(JSC::ExecutableInfo::isConstructor):
(JSC::ExecutableInfo::isClassContext):
(JSC::ExecutableInfo::needsActivation): Deleted.

  • bytecode/UnlinkedCodeBlock.cpp:

(JSC::UnlinkedCodeBlock::UnlinkedCodeBlock):

  • bytecode/UnlinkedCodeBlock.h:

(JSC::UnlinkedCodeBlock::isArrowFunctionContext):
(JSC::UnlinkedCodeBlock::isClassContext):
(JSC::UnlinkedCodeBlock::setThisRegister):
(JSC::UnlinkedCodeBlock::setScopeRegister):
(JSC::UnlinkedCodeBlock::usesGlobalObject):
(JSC::UnlinkedCodeBlock::setGlobalObjectRegister):
(JSC::UnlinkedCodeBlock::thisRegister):
(JSC::UnlinkedCodeBlock::scopeRegister):
(JSC::UnlinkedCodeBlock::addPropertyAccessInstruction):
(JSC::UnlinkedCodeBlock::needsFullScopeChain): Deleted.
(JSC::UnlinkedCodeBlock::setActivationRegister): Deleted.
(JSC::UnlinkedCodeBlock::activationRegister): Deleted.
(JSC::UnlinkedCodeBlock::hasActivationRegister): Deleted.

  • bytecode/UnlinkedFunctionExecutable.cpp:

(JSC::generateUnlinkedFunctionCodeBlock):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::initializeVarLexicalEnvironment):

  • bytecompiler/BytecodeGenerator.h:

(JSC::BytecodeGenerator::destinationForAssignResult):
(JSC::BytecodeGenerator::leftHandSideNeedsCopy):
(JSC::BytecodeGenerator::emitNodeForLeftHandSide):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::inliningCost):
(JSC::DFG::ByteCodeParser::parseCodeBlock):

  • dfg/DFGGraph.h:

(JSC::DFG::Graph::hasExitSite):
(JSC::DFG::Graph::activationRegister): Deleted.
(JSC::DFG::Graph::uncheckedActivationRegister): Deleted.
(JSC::DFG::Graph::machineActivationRegister): Deleted.
(JSC::DFG::Graph::uncheckedMachineActivationRegister): Deleted.

  • dfg/DFGStackLayoutPhase.cpp:

(JSC::DFG::StackLayoutPhase::run):

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::callSiteIndex):
(JSC::CallFrame::stack):
(JSC::CallFrame::callerFrame):
(JSC::CallFrame::friendlyFunctionName):
(JSC::CallFrame::hasActivation): Deleted.
(JSC::CallFrame::uncheckedActivation): Deleted.
(JSC::CallFrame::lexicalEnvironment): Deleted.
(JSC::CallFrame::lexicalEnvironmentOrNullptr): Deleted.
(JSC::CallFrame::setActivation): Deleted.

  • interpreter/CallFrame.h:

(JSC::ExecState::scope):
(JSC::ExecState::setCallerFrame):
(JSC::ExecState::setScope):
(JSC::ExecState::init):

  • interpreter/Register.h:
  • llint/LLIntSlowPaths.cpp:

(JSC::LLInt::LLINT_SLOW_PATH_DECL):

  • runtime/Executable.h:

(JSC::ScriptExecutable::usesEval):
(JSC::ScriptExecutable::usesArguments):
(JSC::ScriptExecutable::isArrowFunctionContext):
(JSC::ScriptExecutable::isStrictMode):
(JSC::ScriptExecutable::derivedContextType):
(JSC::ScriptExecutable::needsActivation): Deleted.

  • runtime/JSLexicalEnvironment.h:

(JSC::asActivation):
(JSC::Register::lexicalEnvironment): Deleted.

3:58 PM Changeset in webkit [195861] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Missed one rebaseline for ios-simulator after r195740 in the last patch.

Unreviewed test gardening.

  • platform/ios-simulator/fast/forms/form-in-malformed-markup-expected.txt:
3:47 PM WindowsWithoutCygwin edited by nikos.andronikos-webkit@cisra.canon.com.au
Added step regarding proxy environment variables - … (diff)
3:45 PM Changeset in webkit [195860] by Ryan Haddad
  • 7 edits
    1 delete in trunk/LayoutTests

Rebaselining tests on ios-simulator after r195740

Unreviewed test gardning.

  • platform/ios-simulator-wk2/editing/inserting/paragraph-separator-in-table-1-expected.txt: Removed.
  • platform/ios-simulator/compositing/contents-opaque/table-parts-expected.txt:
  • platform/ios-simulator/fast/text/emoji-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_align_center-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_align_justify-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_align_left-expected.txt:
  • platform/ios-simulator/tables/mozilla/marvin/colgroup_align_right-expected.txt:
3:43 PM Changeset in webkit [195859] by fpizlo@apple.com
  • 3 edits in trunk/Websites/webkit.org

Clean up the B3 documentation a bit
https://bugs.webkit.org/show_bug.cgi?id=153678

Reviewed by Saam Barati.

  • docs/b3/index.html: Fix some links and fix small issues.
  • docs/b3/intermediate-representation.html: Clean up some text and fix small issues.
3:42 PM Changeset in webkit [195858] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/Source/WebCore/platform/graphics/mac/FontCacheMac.mm

Build fix after r195857. rdar://problem/24208101.

3:41 PM Changeset in webkit [195857] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/Source/WebCore/platform/graphics/mac/FontCacheMac.mm

Build fix after r195847 rdar://problem/24208101.

3:34 PM Changeset in webkit [195856] by beidson@apple.com
  • 2 edits in trunk/LayoutTests

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations: Break out some IDB failures with better descriptions.
3:31 PM Changeset in webkit [195855] by beidson@apple.com
  • 1 edit in trunk/LayoutTests/ChangeLog

Finish getting rid of those conflict markers.

3:30 PM Changeset in webkit [195854] by bshafiei@apple.com
  • 25 edits
    10 deletes in tags/Safari-602.1.17.2

Merged r195795. rdar://problem/24074990

3:30 PM Changeset in webkit [195853] by beidson@apple.com
  • 1 edit in trunk/LayoutTests/ChangeLog

Get rid of conflit markers added to ChangeLog in r195837

3:28 PM Changeset in webkit [195852] by bshafiei@apple.com
  • 5 edits in tags/Safari-602.1.17.2/Source

Versioning.

3:27 PM Changeset in webkit [195851] by bshafiei@apple.com
  • 1 copy in tags/Safari-602.1.17.2

New tag.

3:23 PM Changeset in webkit [195850] by beidson@apple.com
  • 4 edits in trunk

Modern IDB: Getting records for key ranges with null keys aren't properly handled in SQLite backend
https://bugs.webkit.org/show_bug.cgi?id=153666

Reviewed by Tim Horton.

Source/WebCore:

No new tests (Two failing tests now pass).

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::getRecord):

LayoutTests:

  • platform/mac-wk1/TestExpectations:
3:18 PM Changeset in webkit [195849] by matthew_hanson@apple.com
  • 12 adds in branches/safari-601-branch/LayoutTests/css3

Complete the merge of the patch in rdar://problem/24190682.

3:15 PM Changeset in webkit [195848] by Simon Fraser
  • 20 edits
    2 adds in trunk

image-rendering: -webkit-optimize-contrast not working for background images
https://bugs.webkit.org/show_bug.cgi?id=97991

Reviewed by Darin Adler.
Source/WebCore:

Don't equate "pixelated" and "crisp-edges" values for image-rendering with low
quality scaling; they should map to InterpolationNone, not InterpolationLow.

To support this change ImageQualityController to return a InterpolationQuality
from the renamed chooseInterpolationQuality(). If the returned value is not
InterpolationDefault, set the GraphicsContext image interpolation when drawing
images and image buffers.

Remove the redundant "useLowQualityScale" from

Test: fast/images/image-rendering-interpolation.html

  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::paint):

  • html/HTMLCanvasElement.h:
  • page/DragController.cpp:

(WebCore::DragController::doImageDrag):

  • platform/graphics/GraphicsContext.cpp:

(WebCore::GraphicsContext::drawImage):
(WebCore::GraphicsContext::drawTiledImage):
(WebCore::GraphicsContext::drawImageBuffer):
(WebCore::GraphicsContext::drawConsumingImageBuffer):
(WebCore::InterpolationQualityMaintainer::InterpolationQualityMaintainer): Deleted.
(WebCore::InterpolationQualityMaintainer::~InterpolationQualityMaintainer): Deleted.

  • platform/graphics/GraphicsContext.h:

(WebCore::ImagePaintingOptions::ImagePaintingOptions):
(WebCore::ImagePaintingOptions::usesDefaultInterpolation):
(WebCore::InterpolationQualityMaintainer::InterpolationQualityMaintainer):
(WebCore::InterpolationQualityMaintainer::~InterpolationQualityMaintainer):

  • platform/graphics/GraphicsTypes.h:
  • platform/graphics/ImageBuffer.h:
  • platform/graphics/cg/ImageBufferCG.cpp:

(WebCore::ImageBuffer::drawConsuming):
(WebCore::ImageBuffer::draw):

  • rendering/ImageQualityController.cpp:

(WebCore::ImageQualityController::interpolationQualityFromStyle):
(WebCore::ImageQualityController::chooseInterpolationQuality):
(WebCore::ImageQualityController::ImageQualityController): Deleted.
(WebCore::ImageQualityController::shouldPaintAtLowQuality): Deleted.

  • rendering/ImageQualityController.h:
  • rendering/RenderBoxModelObject.cpp:

(WebCore::RenderBoxModelObject::chooseInterpolationQuality):
(WebCore::RenderBoxModelObject::paintFillLayerExtended):
(WebCore::RenderBoxModelObject::shouldPaintAtLowQuality): Deleted.

  • rendering/RenderBoxModelObject.h:
  • rendering/RenderEmbeddedObject.cpp:

(WebCore::RenderEmbeddedObject::paintSnapshotImage):

  • rendering/RenderHTMLCanvas.cpp:

(WebCore::RenderHTMLCanvas::paintReplaced):

  • rendering/RenderImage.cpp:

(WebCore::RenderImage::paintIntoRect):

  • rendering/RenderSnapshottedPlugIn.cpp:

(WebCore::RenderSnapshottedPlugIn::paintSnapshot):

  • rendering/style/RenderStyle.h:

LayoutTests:

  • fast/images/image-rendering-interpolation-expected.html: Added.
  • fast/images/image-rendering-interpolation.html: Added.
3:13 PM Changeset in webkit [195847] by matthew_hanson@apple.com
  • 1 edit in branches/safari-601-branch/Source/WebCore/platform/graphics/mac/FontCacheMac.mm

Patch for rdar://problem/24208101

3:12 PM Changeset in webkit [195846] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: Provide a way to clear the network panel
https://bugs.webkit.org/show_bug.cgi?id=153632
<rdar://problem/23317773>

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

Added a navigation item to the Network tab that resets the network grid's content.

  • Localizations/en.lproj/localizedStrings.js:
  • UserInterface/Views/NetworkGridContentView.js:

(WebInspector.NetworkGridContentView):
(WebInspector.NetworkGridContentView.prototype.get navigationItems):
(WebInspector.NetworkGridContentView.prototype._clearNetworkItems):

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

Air:fixObviousSpills should handle floats and doubles
https://bugs.webkit.org/show_bug.cgi?id=153197

Reviewed by Saam Barati.

This adds the most obvious handling of float spills, where we just enable load elimination on
float spill code.

  • b3/air/AirFixObviousSpills.cpp:
3:06 PM Changeset in webkit [195844] by mitz@apple.com
  • 2 edits in trunk/Source/WebKit2

Don’t use the “.Development” suffix for engineering builds targeting iOS devices, because the XPC cache is only aware of the unsuffixed service identifiers.

Reviewed by Chris Dumez.

  • Configurations/DebugRelease.xcconfig:
3:01 PM Changeset in webkit [195843] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

update-webkit-dependency fails to fetch updates through firewall on Windows
https://bugs.webkit.org/show_bug.cgi?id=153619

Patch by Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au> on 2016-01-29
Reviewed by Myles C. Maxfield.

On Windows, when a firewall is present we need to read proxy settings
from environment variables.

This patch relies on the following environment variables being set:
HTTP_PROXY
HTTPS_PROXY

  • Scripts/update-webkit-dependency:
2:59 PM Changeset in webkit [195842] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: WebInspector.Setting should not access localStorage if the value did not change
https://bugs.webkit.org/show_bug.cgi?id=153671
<rdar://problem/24417029>

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-29
Reviewed by Brian Burg.

  • UserInterface/Base/Setting.js:

(WebInspector.Setting.prototype.set value):

2:50 PM Changeset in webkit [195841] by fpizlo@apple.com
  • 1 edit
    4 adds
    1 delete in trunk/Websites/webkit.org

B3 should have documentation
https://bugs.webkit.org/show_bug.cgi?id=153658

Reviewed by Saam Barati.

Change the documentation to use HTML instead of Markdown. Markdown has trouble with
definition lists. Things go downhill when you try to add paragraphs or code blocks to
a definition. That's unfortunate since we use definitions for the IR document.

Since there is no way to use our preferred styling for the IR document without doing a
lot of bad hacks, it's best if we just stick to HTML. It looks plain but it's highly
practical.

  • docs/b3/assembly-intermediate-representation.html: Added.
  • docs/b3/bare-bones-backend.md: Removed.
  • docs/b3/index.html: Added.
  • docs/b3/intermediate-representation.html: Added.
  • docs/b3/style.css: Added.

(dd):
(dd:last-child):

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

One more iOS build fix.

Unreviewed.

  • Platform/spi/ios/UIKitSPI.h:
1:29 PM Changeset in webkit [195839] by timothy@apple.com
  • 2 edits in trunk/Websites/webkit.org

Add some defintion list styles.

  • wp-content/themes/webkit/style.css:

(dl):
(dt):
(dd):

1:22 PM Changeset in webkit [195838] by beidson@apple.com
  • 4 edits in trunk

Modern IDB: storage/indexeddb/modern/index-3.html fails.
https://bugs.webkit.org/show_bug.cgi?id=153661

Reviewed by Tim Horton.

Source/WebCore:

No new tests (1 failing test now passes, others get closer).

When indexing a new record fails due to uniqueness constraints, remove all traces of the record.

  • Modules/indexeddb/server/SQLiteIDBBackingStore.cpp:

(WebCore::IDBServer::SQLiteIDBBackingStore::createIndex):
(WebCore::IDBServer::SQLiteIDBBackingStore::updateAllIndexesForAddRecord):
(WebCore::IDBServer::SQLiteIDBBackingStore::addRecord):

LayoutTests:

  • platform/mac-wk1/TestExpectations:
1:00 PM Changeset in webkit [195837] by Brent Fulgham
  • 3 edits
    2 adds in trunk

Source/WebCore:
[WebGL] Check vertex array bounds before permitting a glDrawArrays to execute
https://bugs.webkit.org/show_bug.cgi?id=153643
<rdar://problem/23424456>

Reviewed by Dean Jackson.

Tested by fast/canvas/webgl/webgl-drawarrays-crash.html.

  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::validateDrawArrays): Make sure that we have at
least one buffer bound to a program if a drawArray call with a non-zero range of
requested data is being made.
(WebCore::WebGLRenderingContextBase::validateDrawElements): Drive-by formatting fix.

LayoutTests:
Test to check for stack recursion when indexed propertyNames defined using Object.defineProperty are deleted.
https://bugs.webkit.org/show_bug.cgi?id=149179
<rdar://problem/22708019>.

Patch by Pranjal Jumde <pjumde@apple.com> on 2015-12-22
Reviewed by Dean Jackson.

  • storage/domstorage/localstorage/delete-defineproperty-removal-expected.txt: Added.
  • storage/domstorage/localstorage/delete-defineproperty-removal.html: Added.
12:37 PM Changeset in webkit [195836] by akling@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

Shrink CodeBlock!
<https://webkit.org/b/153640>

Reviewed by Saam Barati.

Shrink CodeBlock by 112 bytes (from 640 to 528) by employing
these sophisticated tricks:

  • Remove members that are not used by anyone.
  • Don't cache both VM* and Heap* in members.
  • Reorder members to minimize struct padding.
  • Use RefCountedArray instead of Vector for arrays that never resize.
  • Put a not-always-present HashMap in a std::unique_ptr.

This increases CodeBlock space efficiency by 20%, as we can now
fit 30 of them in a MarkedBlock, up from 25.)

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::CodeBlock):
(JSC::CodeBlock::finishCreation):
(JSC::CodeBlock::setNumParameters):
(JSC::CodeBlock::jettison):
(JSC::CodeBlock::noticeIncomingCall):
(JSC::CodeBlock::resultProfileForBytecodeOffset):

  • bytecode/CodeBlock.h:

(JSC::CodeBlock::setJITCode):
(JSC::CodeBlock::capabilityLevelState):
(JSC::CodeBlock::codeType):
(JSC::CodeBlock::ensureResultProfile):
(JSC::CodeBlock::heap):

12:35 PM Changeset in webkit [195835] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Duplicate tab-types being saved to setting, causing duplicate tabs to be opened
https://bugs.webkit.org/show_bug.cgi?id=153659
<rdar://problem/24413157>

Patch by Joseph Pecoraro <Joseph Pecoraro> on 2016-01-29
Reviewed by Brian Burg.

  • UserInterface/Base/Main.js:

(WebInspector.contentLoaded):
(WebInspector._rememberOpenTabs):
De-duplicate the setting when building the list of tabs for existing
cases where the setting has duplicates and de-duplicate storing into
the setting, which was causing the issue to begin with.

12:30 PM WebKitGTK/Gardening/Calendar edited by clopez@igalia.com
(diff)
12:27 PM Changeset in webkit [195834] by Ryan Haddad
  • 11 edits in trunk/LayoutTests

Rebaseline fast/forms tests after r195700
https://bugs.webkit.org/show_bug.cgi?id=153618

Unreviewed test gardening.

  • fast/forms/date/ValidityState-rangeOverflow-date-expected.txt:
  • fast/forms/date/ValidityState-rangeUnderflow-date-expected.txt:
  • fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal-expected.txt:
  • fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal-expected.txt:
  • fast/forms/month/ValidityState-rangeOverflow-month-expected.txt:
  • fast/forms/month/ValidityState-rangeUnderflow-month-expected.txt:
  • fast/forms/time/time-validity-rangeoverflow-expected.txt:
  • fast/forms/time/time-validity-rangeunderflow-expected.txt:
  • fast/forms/week/ValidityState-rangeOverflow-week-expected.txt:
  • fast/forms/week/ValidityState-rangeUnderflow-week-expected.txt:
12:15 PM Changeset in webkit [195833] by enrica@apple.com
  • 2 edits in trunk/Source/WebKit2

iOS build fix after r195826.

Unreviewed.

  • Platform/spi/ios/UIKitSPI.h:
11:47 AM Changeset in webkit [195832] by beidson@apple.com
  • 5 edits in trunk

Modern IDB: Fix logging that overwhelms python with strings of excessive length.
https://bugs.webkit.org/show_bug.cgi?id=153652

Reviewed by Tim Horton.

Source/WebCore:

No new tests (Two skipped tests now pass).

  • Modules/indexeddb/IDBKeyData.cpp:

(WebCore::IDBKeyData::loggingString): Limit the length of the string.

  • Modules/indexeddb/IDBKeyRangeData.cpp:

(WebCore::IDBKeyRangeData::loggingString): Limit the length of the string.

LayoutTests:

  • platform/mac-wk1/TestExpectations:
11:46 AM Changeset in webkit [195831] by sbarati@apple.com
  • 24 edits
    3 adds in trunk

Exits from exceptions shouldn't jettison code
https://bugs.webkit.org/show_bug.cgi?id=153564

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

We create two new exit kinds for exception-handling
OSRExits:

  • ExceptionCheck: an exception check after a C call.
  • GenericUnwind: an OSR exit executes because it's jumped to from genericUnwind machinery.

Having these two new exit kinds allows us to remove fields from
various OSRExit variants that store booleans indicating
if the exit is an exception handler, and if so, what kind
of exception handler. Most of this patch is just removing
those old fields and adding new equivalent functions.

This patch also implements the policy that we should never consider jettisoning
code from exits that happen from an exception check to an op_catch (it might be worth
considering a similar policy for 'throw'). We're choosing this policy because
it will almost never be more expensive, in total, to execute the OSR exit than
to execute the baseline variant of the code. When an exception is thrown, we do
really expensive work, like call through to genericUnwind, and also create an error
object with a stack trace. The cost of OSR exiting here is small in comparison to
those other operations. And penalizing a CodeBlock for OSR exiting from an exception
is silly because the basis of our implementation of exception handling in the
upper tiers is to OSR exit on a caught exception. So we used to penalize
ourselves for having an implementation that is correct w.r.t our design goals.

I've verified this hypothesis with on v8-raytrace by adding a new
benchmark that throws with very high frequency. Implementing
this policy on that benchmark results in about a 4-5% speed up.

  • bytecode/ExitKind.cpp:

(JSC::exitKindToString):
(JSC::exitKindMayJettison):
(JSC::exitKindIsCountable): Deleted.

  • bytecode/ExitKind.h:
  • dfg/DFGJITCode.cpp:

(JSC::DFG::JITCode::liveRegistersToPreserveAtExceptionHandlingCallSite):

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::noticeOSREntry):
(JSC::DFG::JITCompiler::appendExceptionHandlingOSRExit):
(JSC::DFG::JITCompiler::exceptionCheck):
(JSC::DFG::JITCompiler::recordCallSiteAndGenerateExceptionHandlingOSRExitIfNeeded):

  • dfg/DFGJITCompiler.h:
  • dfg/DFGOSRExit.cpp:

(JSC::DFG::OSRExit::OSRExit):

  • dfg/DFGOSRExit.h:

(JSC::DFG::OSRExit::considerAddingAsFrequentExitSite):

  • dfg/DFGOSRExitBase.h:

(JSC::DFG::OSRExitBase::OSRExitBase):
(JSC::DFG::OSRExitBase::isExceptionHandler):
(JSC::DFG::OSRExitBase::isGenericUnwindHandler):
(JSC::DFG::OSRExitBase::considerAddingAsFrequentExitSite):

  • dfg/DFGOSRExitCompiler.cpp:
  • dfg/DFGOSRExitCompiler32_64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • dfg/DFGOSRExitCompiler64.cpp:

(JSC::DFG::OSRExitCompiler::compileExit):

  • dfg/DFGOSRExitCompilerCommon.cpp:

(JSC::DFG::handleExitCounts):
(JSC::DFG::osrWriteBarrier):
(JSC::DFG::adjustAndJumpToTarget):

  • dfg/DFGOSRExitCompilerCommon.h:

(JSC::DFG::adjustFrameAndStackInOSRExitCompilerThunk):

  • ftl/FTLCompile.cpp:

(JSC::FTL::mmAllocateDataSection):

  • ftl/FTLExitThunkGenerator.cpp:

(JSC::FTL::ExitThunkGenerator::emitThunk):

  • ftl/FTLJITCode.cpp:

(JSC::FTL::JITCode::liveRegistersToPreserveAtExceptionHandlingCallSite):

  • ftl/FTLLowerDFGToLLVM.cpp:

(JSC::FTL::DFG::LowerDFGToLLVM::callCheck):
(JSC::FTL::DFG::LowerDFGToLLVM::appendOSRExitArgumentsForPatchpointIfWillCatchException):
(JSC::FTL::DFG::LowerDFGToLLVM::appendOSRExit):
(JSC::FTL::DFG::LowerDFGToLLVM::blessSpeculation):

  • ftl/FTLOSRExit.cpp:

(JSC::FTL::OSRExitDescriptor::emitOSRExit):
(JSC::FTL::OSRExitDescriptor::emitOSRExitLater):
(JSC::FTL::OSRExitDescriptor::prepareOSRExitHandle):
(JSC::FTL::OSRExit::OSRExit):
(JSC::FTL::OSRExit::spillRegistersToSpillSlot):
(JSC::FTL::OSRExit::recoverRegistersFromSpillSlot):
(JSC::FTL::OSRExit::willArriveAtExitFromIndirectExceptionCheck):
(JSC::FTL::OSRExit::willArriveAtOSRExitFromCallOperation):
(JSC::FTL::exceptionTypeWillArriveAtOSRExitFromGenericUnwind): Deleted.
(JSC::FTL::OSRExit::willArriveAtOSRExitFromGenericUnwind): Deleted.

  • ftl/FTLOSRExit.h:
  • ftl/FTLOSRExitCompiler.cpp:

(JSC::FTL::compileStub):
(JSC::FTL::compileFTLOSRExit):

  • ftl/FTLPatchpointExceptionHandle.cpp:

(JSC::FTL::PatchpointExceptionHandle::scheduleExitCreation):
(JSC::FTL::PatchpointExceptionHandle::scheduleExitCreationForUnwind):
(JSC::FTL::PatchpointExceptionHandle::PatchpointExceptionHandle):
(JSC::FTL::PatchpointExceptionHandle::createHandle):

  • ftl/FTLPatchpointExceptionHandle.h:

LayoutTests:

  • js/regress/script-tests/v8-raytrace-with-try-catch-high-frequency-throws.js: Added.

(randomException):
(Class.create):
(Object.extend):
(Flog.RayTracer.Color.prototype.initialize):
(Flog.RayTracer.Color.prototype.add):
(Flog.RayTracer.Color.prototype.addScalar):
(Flog.RayTracer.Color.prototype.subtract):
(Flog.RayTracer.Color.prototype.multiply):
(Flog.RayTracer.Color.prototype.multiplyScalar):
(Flog.RayTracer.Color.prototype.divideFactor):
(Flog.RayTracer.Color.prototype.limit):
(Flog.RayTracer.Color.prototype.distance):
(Flog.RayTracer.Color.prototype.blend):
(Flog.RayTracer.Color.prototype.brightness):
(Flog.RayTracer.Color.prototype.toString):
(Flog.RayTracer.Light.prototype.initialize):
(Flog.RayTracer.Light.prototype.toString):
(Flog.RayTracer.Vector.prototype.initialize):
(Flog.RayTracer.Vector.prototype.copy):
(Flog.RayTracer.Vector.prototype.normalize):
(Flog.RayTracer.Vector.prototype.magnitude):
(Flog.RayTracer.Vector.prototype.cross):
(Flog.RayTracer.Vector.prototype.dot):
(Flog.RayTracer.Vector.prototype.add):
(Flog.RayTracer.Vector.prototype.subtract):
(Flog.RayTracer.Vector.prototype.multiplyVector):
(Flog.RayTracer.Vector.prototype.multiplyScalar):
(Flog.RayTracer.Vector.prototype.toString):
(Flog.RayTracer.Ray.prototype.initialize):
(Flog.RayTracer.Ray.prototype.toString):
(Flog.RayTracer.Scene.prototype.initialize):
(Flog.RayTracer.Material.BaseMaterial.prototype.initialize):
(Flog.RayTracer.Material.BaseMaterial.prototype.getColor):
(Flog.RayTracer.Material.BaseMaterial.prototype.wrapUp):
(Flog.RayTracer.Material.BaseMaterial.prototype.toString):
(Flog.RayTracer.Material.Solid.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial.initialize):
(Flog.RayTracer.Material.Solid.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial.getColor):
(Flog.RayTracer.Material.Solid.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial.toString):
(Flog.RayTracer.Material.Solid.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial):
(Flog.RayTracer.Material.Chessboard.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial.initialize):
(Flog.RayTracer.Material.Chessboard.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial.getColor):
(Flog.RayTracer.Material.Chessboard.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial.toString):
(Flog.RayTracer.Material.Chessboard.prototype.Object.extend.new.Flog.RayTracer.Material.BaseMaterial):
(Flog.RayTracer.Shape.Sphere.prototype.initialize):
(Flog.RayTracer.Shape.Sphere.prototype.intersect):
(Flog.RayTracer.Shape.Sphere.prototype.toString):
(Flog.RayTracer.Shape.Plane.prototype.initialize):
(Flog.RayTracer.Shape.Plane.prototype.intersect):
(Flog.RayTracer.Shape.Plane.prototype.toString):
(Flog.RayTracer.IntersectionInfo.prototype.initialize):
(Flog.RayTracer.IntersectionInfo.prototype.toString):
(Flog.RayTracer.Camera.prototype.initialize):
(Flog.RayTracer.Camera.prototype.getRay):
(Flog.RayTracer.Camera.prototype.toString):
(Flog.RayTracer.Background.prototype.initialize):
(Flog.RayTracer.Engine.prototype.initialize):
(Flog.RayTracer.Engine.prototype.setPixel):
(Flog.RayTracer.Engine.prototype.renderScene):
(Flog.RayTracer.Engine.prototype.getPixelColor):
(Flog.RayTracer.Engine.prototype.testIntersection):
(Flog.RayTracer.Engine.prototype.getReflectionRay):
(Flog.RayTracer.Engine.prototype.rayTrace):
(renderScene):

  • js/regress/v8-raytrace-with-try-catch-high-frequency-throws-expected.txt: Added.
  • js/regress/v8-raytrace-with-try-catch-high-frequency-throws.html: Added.
11:19 AM Changeset in webkit [195830] by fpizlo@apple.com
  • 1 edit
    3 adds in trunk/Websites/webkit.org

B3 should have documentation
https://bugs.webkit.org/show_bug.cgi?id=153658

Reviewed by Timothy Hatcher.

  • docs: Added.
  • docs/b3: Added.
  • docs/b3/bare-bones-backend.md: Added.
11:15 AM Changeset in webkit [195829] by bshafiei@apple.com
  • 3 edits in branches/safari-601.1.46-branch/Source/WebKit2

Merged r195826. rdar://problem/24337778

11:13 AM Changeset in webkit [195828] by Ryan Haddad
  • 2 edits in trunk/Source/WebKit/win

Attempt to fix the Windows build after r195799

Unreviewed build fix.

(WebInspector::isJavaScriptProfilingEnabled):
(WebInspector::setJavaScriptProfilingEnabled):

11:12 AM Changeset in webkit [195827] by clopez@igalia.com
  • 1100 edits
    12 copies
    50 adds in trunk/LayoutTests

[GTK] Unreviewed gardening after r195740 (v2).
https://bugs.webkit.org/show_bug.cgi?id=153654

Rebaseline another 652 tests after r195740.
Unreviewed.

  • platform/gtk/accessibility/table-attributes-expected.txt:
  • platform/gtk/accessibility/table-cell-spans-expected.txt:
  • platform/gtk/accessibility/table-cells-expected.txt:
  • platform/gtk/accessibility/table-sections-expected.txt:
  • platform/gtk/accessibility/table-with-rules-expected.txt:
  • platform/gtk/css2.1/20110323/inline-table-002a-expected.txt:
  • platform/gtk/css2.1/20110323/table-height-algorithm-023-expected.txt:
  • platform/gtk/css2.1/20110323/table-height-algorithm-024-expected.txt:
  • platform/gtk/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt:
  • platform/gtk/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt:
  • platform/gtk/css2.1/t0805-c5518-brdr-t-01-e-expected.png:
  • platform/gtk/css2.1/t0805-c5518-brdr-t-01-e-expected.txt:
  • platform/gtk/css2.1/t0805-c5519-brdr-r-01-e-expected.txt:
  • platform/gtk/css2.1/t0805-c5520-brdr-b-01-e-expected.png:
  • platform/gtk/css2.1/t0805-c5520-brdr-b-01-e-expected.txt:
  • platform/gtk/css2.1/t0805-c5521-brdr-l-01-e-expected.txt:
  • platform/gtk/css2.1/t0805-c5522-brdr-02-e-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-00-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-00-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-01-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-01-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-02-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-02-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-03-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-03-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-05-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-05-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-07-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-07-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-09-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-09-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-10-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-10-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-11-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-11-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-12-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-12-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-15-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-15-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-19-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-19-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-20-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-20-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-21-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-21-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-22-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-22-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-23-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-23-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-26-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-26-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-27-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-27-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-28-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-28-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-29-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-29-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-32-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-32-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-33-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-33-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-35-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-35-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-36-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-36-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-37-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-37-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-38-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-38-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-39-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-39-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-40-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-40-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-41-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-41-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-42-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-42-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-43-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-43-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-45-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-45-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-46-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-46-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-47-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-47-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-48-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-48-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-49-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-49-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-50-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-50-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-51-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-51-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-53-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-53-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-55-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-55-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-56-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-56-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-57-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-57-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-58-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-58-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-60-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-60-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-61-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-61-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-62-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-62-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-63-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-63-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-66-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-66-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-67-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-67-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-68-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-68-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-69-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-69-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-72-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-72-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-73-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-73-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-75-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-75-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-76-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-76-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-77-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-77-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-78-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-78-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-79-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-79-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-80-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-80-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-81-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-81-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-82-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-82-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-83-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-83-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-86-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-86-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-87-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-87-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-88-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-88-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-89-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-89-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-90-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-90-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-91-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-91-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-92-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-92-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-93-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-93-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-95-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-95-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-96-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-96-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-97-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-97-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-98-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-98-d-expected.txt:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-99-d-expected.png:
  • platform/gtk/css2.1/t170602-bdr-conflct-w-99-d-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-015-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-015-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-016-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-016-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-023-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-023-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-024-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-024-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-035-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-035-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-036-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-036-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-037-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-037-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-038-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-038-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-045-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-045-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-046-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-046-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-047-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-047-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-048-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-048-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-049-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-049-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-050-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-050-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-055-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-055-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-056-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-056-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-091-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-091-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-092-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-092-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-099-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-099-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-100-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-100-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-103-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-103-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-104-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-104-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-105-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-105-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-106-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-106-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-107-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-107-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-108-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-108-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-109-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-109-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-110-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-110-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-111-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-111-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-112-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-112-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-113-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-113-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-114-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-114-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-123-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-123-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-124-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-124-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-139-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-139-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-140-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-140-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-149-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-149-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-150-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-150-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-155-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-155-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-156-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-156-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-159-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-159-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-160-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-160-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-165-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-165-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-166-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-166-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-207-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-207-expected.txt:
  • platform/gtk/css2.1/tables/table-anonymous-objects-208-expected.png: Added.
  • platform/gtk/css2.1/tables/table-anonymous-objects-208-expected.txt:
  • platform/gtk/css3/flexbox/flexbox-baseline-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-161-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-161-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-18b-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-28-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-28-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-28b-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-28b-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-32-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-32-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-43-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-43b-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-44-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-44b-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-74-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-74-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-74b-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-74b-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-78-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-78-expected.txt:
  • platform/gtk/css3/selectors3/html/css3-modsel-78b-expected.png:
  • platform/gtk/css3/selectors3/html/css3-modsel-78b-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-161-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-161-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18b-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28b-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28b-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-32-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-32-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-43-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-43b-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44b-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74b-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74b-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78-expected.txt:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78b-expected.png:
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78b-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-161-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-161-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-18b-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-28-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-28-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-28b-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-28b-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-32-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-32-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-43-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-43b-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-44-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-44b-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-74-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-74-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-74b-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-74b-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-78-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-78-expected.txt:
  • platform/gtk/css3/selectors3/xml/css3-modsel-78b-expected.png:
  • platform/gtk/css3/selectors3/xml/css3-modsel-78b-expected.txt:
  • platform/gtk/editing/deleting/5099303-expected.png:
  • platform/gtk/editing/deleting/5099303-expected.txt:
  • platform/gtk/editing/deleting/5483370-expected.png:
  • platform/gtk/editing/deleting/5483370-expected.txt:
  • platform/gtk/editing/deleting/delete-to-select-table-expected.png:
  • platform/gtk/editing/deleting/delete-to-select-table-expected.txt:
  • platform/gtk/editing/deleting/table-cells-expected.png:
  • platform/gtk/editing/deleting/table-cells-expected.txt:
  • platform/gtk/editing/execCommand/5481523-expected.png:
  • platform/gtk/editing/execCommand/5481523-expected.txt:
  • platform/gtk/editing/inserting/5058163-1-expected.png:
  • platform/gtk/editing/inserting/5058163-1-expected.txt:
  • platform/gtk/editing/inserting/insert-paragraph-01-expected.png:
  • platform/gtk/editing/inserting/insert-paragraph-01-expected.txt:
  • platform/gtk/editing/inserting/insert-paragraph-02-expected.png:
  • platform/gtk/editing/inserting/insert-paragraph-02-expected.txt:
  • platform/gtk/editing/inserting/paragraph-separator-in-table-2-expected.png:
  • platform/gtk/editing/inserting/paragraph-separator-in-table-2-expected.txt:
  • platform/gtk/editing/pasteboard/5156401-1-expected.png:
  • platform/gtk/editing/pasteboard/5156401-1-expected.txt:
  • platform/gtk/editing/pasteboard/5387578-expected.png:
  • platform/gtk/editing/pasteboard/5387578-expected.txt:
  • platform/gtk/editing/selection/4818145-expected.png:
  • platform/gtk/editing/selection/4818145-expected.txt:
  • platform/gtk/editing/selection/4889598-expected.png:
  • platform/gtk/editing/selection/4889598-expected.txt:
  • platform/gtk/editing/selection/4895428-2-expected.png:
  • platform/gtk/editing/selection/4895428-2-expected.txt:
  • platform/gtk/editing/selection/5076323-1-expected.png:
  • platform/gtk/editing/selection/5076323-1-expected.txt:
  • platform/gtk/editing/selection/5076323-2-expected.png:
  • platform/gtk/editing/selection/5076323-2-expected.txt:
  • platform/gtk/editing/selection/5076323-3-expected.png:
  • platform/gtk/editing/selection/5076323-3-expected.txt:
  • platform/gtk/editing/selection/7152-1-expected.png:
  • platform/gtk/editing/selection/7152-1-expected.txt:
  • platform/gtk/editing/selection/7152-2-expected.png:
  • platform/gtk/editing/selection/7152-2-expected.txt:
  • platform/gtk/editing/selection/display-table-text-expected.png:
  • platform/gtk/editing/selection/display-table-text-expected.txt:
  • platform/gtk/editing/selection/iframe-expected.png:
  • platform/gtk/editing/selection/iframe-expected.txt:
  • platform/gtk/editing/selection/inline-table-expected.png:
  • platform/gtk/editing/selection/inline-table-expected.txt:
  • platform/gtk/editing/selection/mixed-editability-3-expected.png:
  • platform/gtk/editing/selection/mixed-editability-3-expected.txt:
  • platform/gtk/editing/selection/mixed-editability-4-expected.png:
  • platform/gtk/editing/selection/mixed-editability-4-expected.txt:
  • platform/gtk/editing/selection/mixed-editability-5-expected.png:
  • platform/gtk/editing/selection/mixed-editability-5-expected.txt:
  • platform/gtk/editing/selection/mixed-editability-8-expected.png:
  • platform/gtk/editing/selection/mixed-editability-8-expected.txt:
  • platform/gtk/editing/selection/mixed-editability-9-expected.png:
  • platform/gtk/editing/selection/mixed-editability-9-expected.txt:
  • platform/gtk/editing/selection/table-caret-1-expected.png:
  • platform/gtk/editing/selection/table-caret-1-expected.txt:
  • platform/gtk/editing/selection/table-caret-2-expected.png:
  • platform/gtk/editing/selection/table-caret-2-expected.txt:
  • platform/gtk/editing/selection/table-caret-3-expected.png:
  • platform/gtk/editing/selection/table-caret-3-expected.txt:
  • platform/gtk/editing/style/5017613-1-expected.png:
  • platform/gtk/editing/style/5017613-1-expected.txt:
  • platform/gtk/editing/style/5017613-2-expected.png:
  • platform/gtk/editing/style/5017613-2-expected.txt:
  • platform/gtk/editing/style/apple-style-editable-mix-expected.png:
  • platform/gtk/editing/style/apple-style-editable-mix-expected.txt:
  • platform/gtk/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png:
  • platform/gtk/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.txt:
  • platform/gtk/fast/block/float/011-expected.txt:
  • platform/gtk/fast/block/margin-collapse/001-expected.txt:
  • platform/gtk/fast/block/margin-collapse/005-expected.txt:
  • platform/gtk/fast/block/margin-collapse/104-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/001-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/005-expected.txt:
  • platform/gtk/fast/block/positioning/053-expected.txt:
  • platform/gtk/fast/borders/bidi-009a-expected.png:
  • platform/gtk/fast/borders/bidi-009a-expected.txt:
  • platform/gtk/fast/box-shadow/basic-shadows-expected.png:
  • platform/gtk/fast/box-shadow/basic-shadows-expected.txt:
  • platform/gtk/fast/css-generated-content/015-expected.txt:
  • platform/gtk/fast/css-generated-content/inline-display-types-expected.txt:
  • platform/gtk/fast/css-generated-content/table-before-after-child-add-expected.txt:
  • platform/gtk/fast/css-generated-content/table-cell-before-content-expected.txt:
  • platform/gtk/fast/css-generated-content/table-row-before-after-child-add-expected.txt:
  • platform/gtk/fast/css-generated-content/table-row-before-after-expected.txt:
  • platform/gtk/fast/css-generated-content/table-table-before-after-child-add-expected.txt:
  • platform/gtk/fast/css/first-letter-float-expected.png:
  • platform/gtk/fast/css/first-letter-float-expected.txt:
  • platform/gtk/fast/css/layerZOrderCrash-expected.txt:
  • platform/gtk/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png:
  • platform/gtk/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.txt:
  • platform/gtk/fast/dynamic/007-expected.txt:
  • platform/gtk/fast/dynamic/014-expected.txt:
  • platform/gtk/fast/dynamic/015-expected.png:
  • platform/gtk/fast/dynamic/015-expected.txt:
  • platform/gtk/fast/dynamic/create-renderer-for-whitespace-only-text-expected.png:
  • platform/gtk/fast/dynamic/create-renderer-for-whitespace-only-text-expected.txt:
  • platform/gtk/fast/forms/button-white-space-expected.png:
  • platform/gtk/fast/forms/button-white-space-expected.txt:
  • platform/gtk/fast/forms/file/file-input-direction-expected.png:
  • platform/gtk/fast/forms/file/file-input-direction-expected.txt:
  • platform/gtk/fast/forms/form-added-to-table-expected.png:
  • platform/gtk/fast/forms/form-added-to-table-expected.txt:
  • platform/gtk/fast/forms/input-double-click-selection-gap-bug-expected.png:
  • platform/gtk/fast/forms/input-double-click-selection-gap-bug-expected.txt:
  • platform/gtk/fast/forms/input-value-expected.png:
  • platform/gtk/fast/forms/input-value-expected.txt:
  • platform/gtk/fast/invalid/table-inside-stray-table-content-expected.png:
  • platform/gtk/fast/invalid/table-inside-stray-table-content-expected.txt:
  • platform/gtk/fast/invalid/td-inside-object-expected.txt:
  • platform/gtk/fast/lists/ordered-list-with-no-ol-tag-expected.png:
  • platform/gtk/fast/lists/ordered-list-with-no-ol-tag-expected.txt:
  • platform/gtk/fast/overflow/overflow-auto-table-expected.txt:
  • platform/gtk/fast/replaced/width100percent-button-expected.png:
  • platform/gtk/fast/replaced/width100percent-button-expected.txt:
  • platform/gtk/fast/ruby/ruby-inline-table-expected.txt:
  • platform/gtk/fast/selectors/018-expected.png:
  • platform/gtk/fast/selectors/018-expected.txt:
  • platform/gtk/fast/selectors/018b-expected.txt:
  • platform/gtk/fast/selectors/032-expected.png:
  • platform/gtk/fast/selectors/032-expected.txt:
  • platform/gtk/fast/selectors/043-expected.txt:
  • platform/gtk/fast/selectors/043b-expected.txt:
  • platform/gtk/fast/selectors/044-expected.txt:
  • platform/gtk/fast/selectors/044b-expected.txt:
  • platform/gtk/fast/selectors/078b-expected.png:
  • platform/gtk/fast/selectors/078b-expected.txt:
  • platform/gtk/fast/sub-pixel/selection/selection-rect-in-sub-pixel-table-expected.txt:
  • platform/gtk/fast/table/001-expected.txt:
  • platform/gtk/fast/table/004-expected.png:
  • platform/gtk/fast/table/004-expected.txt:
  • platform/gtk/fast/table/006-expected.png:
  • platform/gtk/fast/table/006-expected.txt:
  • platform/gtk/fast/table/010-expected.txt:
  • platform/gtk/fast/table/011-expected.png:
  • platform/gtk/fast/table/011-expected.txt:
  • platform/gtk/fast/table/015-expected.txt:
  • platform/gtk/fast/table/016-expected.txt:
  • platform/gtk/fast/table/022-expected.png:
  • platform/gtk/fast/table/022-expected.txt:
  • platform/gtk/fast/table/026-expected.txt:
  • platform/gtk/fast/table/033-expected.txt:
  • platform/gtk/fast/table/035-expected.png:
  • platform/gtk/fast/table/035-expected.txt:
  • platform/gtk/fast/table/035-vertical-expected.png:
  • platform/gtk/fast/table/035-vertical-expected.txt:
  • platform/gtk/fast/table/037-expected.txt:
  • platform/gtk/fast/table/041-expected.png:
  • platform/gtk/fast/table/041-expected.txt:
  • platform/gtk/fast/table/auto-with-percent-height-expected.txt:
  • platform/gtk/fast/table/auto-with-percent-height-vertical-expected.txt:
  • platform/gtk/fast/table/cell-coalescing-expected.txt:
  • platform/gtk/fast/table/cellindex-expected.txt:
  • platform/gtk/fast/table/click-near-anonymous-table-expected.png:
  • platform/gtk/fast/table/click-near-anonymous-table-expected.txt:
  • platform/gtk/fast/table/colgroup-preceded-by-caption-expected.txt:
  • platform/gtk/fast/table/colgroup-spanning-groups-rules-expected.txt:
  • platform/gtk/fast/table/dynamic-descendant-percentage-height-expected.txt:
  • platform/gtk/fast/table/floating-th-expected.txt:
  • platform/gtk/fast/table/generated-caption-expected.png:
  • platform/gtk/fast/table/generated-caption-expected.txt:
  • platform/gtk/fast/table/insert-before-anonymous-ancestors-expected.png:
  • platform/gtk/fast/table/insert-before-anonymous-ancestors-expected.txt:
  • platform/gtk/fast/table/insert-cell-before-form-expected.png:
  • platform/gtk/fast/table/insert-cell-before-form-expected.txt:
  • platform/gtk/fast/table/insert-row-before-form-expected.png:
  • platform/gtk/fast/table/insert-row-before-form-expected.txt:
  • platform/gtk/fast/table/nested-percent-height-table-expected.png:
  • platform/gtk/fast/table/nested-percent-height-table-expected.txt:
  • platform/gtk/fast/table/quote-text-around-iframe-expected.png:
  • platform/gtk/fast/table/quote-text-around-iframe-expected.txt:
  • platform/gtk/fast/table/rowindex-expected.png:
  • platform/gtk/fast/table/rowindex-expected.txt:
  • platform/gtk/fast/table/rtl-cell-display-none-assert-expected.png:
  • platform/gtk/fast/table/rtl-cell-display-none-assert-expected.txt:
  • platform/gtk/fast/table/rules-attr-dynchange1-expected.txt:
  • platform/gtk/fast/table/rules-attr-dynchange2-expected.txt:
  • platform/gtk/fast/table/table-after-child-in-table-expected.txt:
  • platform/gtk/fast/table/table-and-parts-outline-expected.png:
  • platform/gtk/fast/table/table-and-parts-outline-expected.txt:
  • platform/gtk/fast/table/table-before-child-in-table-expected.txt:
  • platform/gtk/fast/table/table-cell-after-child-in-block-expected.txt:
  • platform/gtk/fast/table/table-cell-after-child-in-table-expected.txt:
  • platform/gtk/fast/table/table-cell-before-child-in-block-expected.txt:
  • platform/gtk/fast/table/table-continuation-outline-paint-crash-expected.txt:
  • platform/gtk/fast/table/table-hspace-align-center-expected.png:
  • platform/gtk/fast/table/table-hspace-align-center-expected.txt:
  • platform/gtk/fast/table/table-row-after-child-in-block-expected.txt:
  • platform/gtk/fast/table/table-row-after-child-in-table-expected.txt:
  • platform/gtk/fast/table/table-row-before-child-in-block-expected.txt:
  • platform/gtk/fast/table/table-row-before-child-in-table-expected.txt:
  • platform/gtk/fast/table/tableInsideCaption-expected.png:
  • platform/gtk/fast/table/tableInsideCaption-expected.txt:
  • platform/gtk/fast/table/text-field-baseline-expected.png:
  • platform/gtk/fast/table/text-field-baseline-expected.txt:
  • platform/gtk/fast/table/unbreakable-images-quirk-expected.png:
  • platform/gtk/fast/table/unbreakable-images-quirk-expected.txt:
  • platform/gtk/fast/table/vertical-align-baseline-expected.png:
  • platform/gtk/fast/table/vertical-align-baseline-expected.txt:
  • platform/gtk/fast/text/atsui-multiple-renderers-expected.png:
  • platform/gtk/fast/text/atsui-multiple-renderers-expected.txt:
  • platform/gtk/fast/text/basic/001-expected.png:
  • platform/gtk/fast/text/basic/001-expected.txt:
  • platform/gtk/fast/text/basic/006-expected.png:
  • platform/gtk/fast/text/basic/006-expected.txt:
  • platform/gtk/fast/text/basic/007-expected.png:
  • platform/gtk/fast/text/basic/007-expected.txt:
  • platform/gtk/fast/text/capitalize-boundaries-expected.png:
  • platform/gtk/fast/text/capitalize-boundaries-expected.txt:
  • platform/gtk/fast/text/international/bidi-layout-across-linebreak-expected.png:
  • platform/gtk/fast/text/international/bidi-layout-across-linebreak-expected.txt:
  • platform/gtk/fast/text/textIteratorNilRenderer-expected.png:
  • platform/gtk/fast/text/textIteratorNilRenderer-expected.txt:
  • platform/gtk/fast/text/whitespace/024-expected.png:
  • platform/gtk/fast/text/whitespace/024-expected.txt:
  • platform/gtk/fast/text/whitespace/027-expected.png:
  • platform/gtk/fast/text/whitespace/027-expected.txt:
  • platform/gtk/fast/text/word-break-expected.png:
  • platform/gtk/fast/text/word-break-expected.txt:
  • platform/gtk/fast/transforms/transform-table-row-expected.png:
  • platform/gtk/fast/transforms/transform-table-row-expected.txt:
  • platform/gtk/http/tests/misc/generated-content-inside-table-expected.txt:
  • platform/gtk/svg/as-background-image/background-image-preserveaspectRatio-support-expected.png:
  • platform/gtk/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt:
  • platform/gtk/svg/as-image/img-preserveAspectRatio-support-1-expected.png:
  • platform/gtk/svg/as-image/img-preserveAspectRatio-support-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug10036-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug10036-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug10269-1-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug21918-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug10269-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug10269-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug10296-2-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12384-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug10296-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug103533-expected.png: Added.
  • platform/gtk/tables/mozilla/bugs/bug103533-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug106158-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug106158-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug108340-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug108340-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug110566-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug110566-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug11321-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla_expected_failures/bugs/bug106336-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug11321-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug113235-3-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug113235-3-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug11944-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug11944-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug119786-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug119786-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug12384-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug12384-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug1261-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug1261-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug13105-expected.png: Added.
  • platform/gtk/tables/mozilla/bugs/bug13105-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug13118-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug13118-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug133756-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug133756-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug133756-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug13484-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug13484-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug13526-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug138725-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug138725-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug14159-3-expected.png: Added.
  • platform/gtk/tables/mozilla/bugs/bug14159-3-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug149275-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug149275-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug17130-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug17130-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug1828-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug1828-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug18359-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug18558-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug18558-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2050-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug2050-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug20579-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug20579-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug21299-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug21299-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug21918-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug21918-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug221784-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug221784-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug221784-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug221784-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2267-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug2267-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug23072-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12384-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug23072-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug23151-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug23151-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug23299-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug24503-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug24503-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug24627-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug24627-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2469-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2479-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug24880-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug24880-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug25086-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug25086-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2516-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug2516-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug25367-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2585-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug2585-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug26178-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug26178-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug27038-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug27038-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug27038-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug27038-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug275625-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug55545-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug275625-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2757-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug2757-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug278266-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug278385-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug278385-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2886-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug28928-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug28928-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug29157-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug29157-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug2973-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug3037-1-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3309-2-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug3037-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug3037-2-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug221784-2-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug3037-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug30418-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug30418-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug30985-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug3191-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug3191-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug32205-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug32205-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug32205-5-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug32205-5-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug32447-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3309-2-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug32447-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug3263-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug3263-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug3309-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug3309-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug34538-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3309-2-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug34538-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug35662-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug35662-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug3718-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug3718-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug39209-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug39209-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug40828-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug40828-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug4284-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug4284-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug4429-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug4429-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug44523-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug44523-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug45055-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug4520-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug4520-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug46268-3-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug46268-3-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug46268-5-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug46268-5-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug46268-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug46268-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug46480-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug46480-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug4739-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug4739-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug48028-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug48028-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug48028-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug48028-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug51037-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug51037-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug51140-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug51140-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug55527-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug55545-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug55545-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug55694-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug55694-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug56405-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3309-2-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug56405-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug57300-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug57300-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug57378-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug57378-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug57828-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug57828-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug5798-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug5798-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug5799-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug5799-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug5838-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug5838-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug58402-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug58402-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug60013-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug60013-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug60749-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug60749-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug60992-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug60992-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug63785-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug650-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug67864-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug67915-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug67915-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug69187-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug69187-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug709-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug7112-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug7112-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug7112-2-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug7112-2-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug75250-expected.png: Added.
  • platform/gtk/tables/mozilla/bugs/bug75250-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug8032-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug82946-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug82946-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug8361-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug3309-2-expected.png.
  • platform/gtk/tables/mozilla/bugs/bug8361-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug83786-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug8381-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug8381-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug9072-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug9271-1-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug9271-1-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug93363-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug96343-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug965-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug965-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug97138-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug97138-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug99923-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug99923-expected.txt:
  • platform/gtk/tables/mozilla/bugs/bug99948-expected.png:
  • platform/gtk/tables/mozilla/bugs/bug99948-expected.txt:
  • platform/gtk/tables/mozilla/collapsing_borders/bug127040-expected.txt:
  • platform/gtk/tables/mozilla/collapsing_borders/bug41262-4-expected.png:
  • platform/gtk/tables/mozilla/collapsing_borders/bug41262-4-expected.txt:
  • platform/gtk/tables/mozilla/core/captions-expected.png:
  • platform/gtk/tables/mozilla/core/captions-expected.txt:
  • platform/gtk/tables/mozilla/core/col_widths_auto_auto-expected.png:
  • platform/gtk/tables/mozilla/core/col_widths_auto_auto-expected.txt:
  • platform/gtk/tables/mozilla/core/col_widths_auto_autoPer-expected.png:
  • platform/gtk/tables/mozilla/core/col_widths_auto_autoPer-expected.txt:
  • platform/gtk/tables/mozilla/core/col_widths_fix_autoPer-expected.png:
  • platform/gtk/tables/mozilla/core/col_widths_fix_autoPer-expected.txt:
  • platform/gtk/tables/mozilla/core/row_span-expected.png:
  • platform/gtk/tables/mozilla/core/row_span-expected.txt:
  • platform/gtk/tables/mozilla/dom/appendCol2-expected.png:
  • platform/gtk/tables/mozilla/dom/appendCol2-expected.txt:
  • platform/gtk/tables/mozilla/dom/appendRowsExpand1-expected.png:
  • platform/gtk/tables/mozilla/dom/appendRowsExpand1-expected.txt:
  • platform/gtk/tables/mozilla/dom/appendTbodyExpand1-expected.png:
  • platform/gtk/tables/mozilla/dom/appendTbodyExpand1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteCellsRebuild1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteCellsRebuild1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteCellsShrink1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteCellsShrink1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteCellsShrink2-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteCellsShrink2-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteCol1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteCol1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteCol2-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteCol2-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteCol3-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteCol3-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteColGroup1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteColGroup1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteColGroup2-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteColGroup2-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteRowsRebuild1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteRowsRebuild1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteRowsShrink1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteRowsShrink1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteTbodyExpand1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteTbodyExpand1-expected.txt:
  • platform/gtk/tables/mozilla/dom/deleteTbodyRebuild1-expected.png:
  • platform/gtk/tables/mozilla/dom/deleteTbodyRebuild1-expected.txt:
  • platform/gtk/tables/mozilla/dom/insertCellsExpand1-expected.png:
  • platform/gtk/tables/mozilla/dom/insertCellsExpand1-expected.txt:
  • platform/gtk/tables/mozilla/dom/insertCellsExpand2-expected.png:
  • platform/gtk/tables/mozilla/dom/insertCellsExpand2-expected.txt:
  • platform/gtk/tables/mozilla/dom/insertCellsRebuild1-expected.png:
  • platform/gtk/tables/mozilla/dom/insertCellsRebuild1-expected.txt:
  • platform/gtk/tables/mozilla/dom/insertCellsRebuild2-expected.png:
  • platform/gtk/tables/mozilla/dom/insertCellsRebuild2-expected.txt:
  • platform/gtk/tables/mozilla/dom/insertRowsExpand1-expected.png:
  • platform/gtk/tables/mozilla/dom/insertRowsExpand1-expected.txt:
  • platform/gtk/tables/mozilla/dom/insertRowsRebuild1-expected.png:
  • platform/gtk/tables/mozilla/dom/insertRowsRebuild1-expected.txt:
  • platform/gtk/tables/mozilla/dom/tableDom-expected.txt:
  • platform/gtk/tables/mozilla/marvin/body_col-expected.png:
  • platform/gtk/tables/mozilla/marvin/body_col-expected.txt:
  • platform/gtk/tables/mozilla/marvin/body_tbody-expected.txt:
  • platform/gtk/tables/mozilla/marvin/body_tfoot-expected.png:
  • platform/gtk/tables/mozilla/marvin/body_tfoot-expected.txt:
  • platform/gtk/tables/mozilla/marvin/col_span-expected.png:
  • platform/gtk/tables/mozilla/marvin/col_span-expected.txt:
  • platform/gtk/tables/mozilla/marvin/table_frame_border-expected.png:
  • platform/gtk/tables/mozilla/marvin/table_frame_border-expected.txt:
  • platform/gtk/tables/mozilla/marvin/table_frame_box-expected.png:
  • platform/gtk/tables/mozilla/marvin/table_frame_box-expected.txt:
  • platform/gtk/tables/mozilla/marvin/table_rules_all-expected.png:
  • platform/gtk/tables/mozilla/marvin/table_rules_all-expected.txt:
  • platform/gtk/tables/mozilla/marvin/table_rules_none-expected.png:
  • platform/gtk/tables/mozilla/marvin/table_rules_none-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_border_0-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_border_1-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_border_1-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_border_2-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_border_2-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_border_3-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_border_3-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_caption_align_bot-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_caption_align_bot-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_caption_align_top-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_caption_align_top-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_cellpadding-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_cellpadding-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_cellspacing-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_default-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_id-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_id-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_row_th_nowrap-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_td_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_td_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_td_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_td_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_td_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_td_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_td_colspan-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_td_colspan-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_td_height-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_td_height-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_td_nowrap-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_td_nowrap-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_td_rowspan-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_td_rowspan-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_th_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_th_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_th_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_th_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_th_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_th_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_th_height-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_th_height-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tables_th_rowspan-expected.png:
  • platform/gtk/tables/mozilla/marvin/tables_th_rowspan-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tbody_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/tbody_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tbody_align_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/tbody_align_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tbody_align_justify-expected.png:
  • platform/gtk/tables/mozilla/marvin/tbody_align_justify-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tbody_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/tbody_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tbody_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/tbody_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tbody_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/tbody_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_justify-expected.png:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_justify-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/tfoot_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/tfoot_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/tfoot_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/thead_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/thead_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/thead_align_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/thead_align_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/thead_align_justify-expected.png:
  • platform/gtk/tables/mozilla/marvin/thead_align_justify-expected.txt:
  • platform/gtk/tables/mozilla/marvin/thead_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/thead_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/thead_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/thead_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/thead_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/thead_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_caption_align_bottom-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_caption_align_bottom-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_caption_align_top-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_caption_align_top-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_bgcolor_name-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_bgcolor_name-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_border-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_border-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_border_none-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_border_px-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_border_px-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_cellpadding-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_cellpadding-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_cellspacing-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_cellspacing-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_frame_void-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_rules_groups-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_rules_none-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_table_style-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tbody_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tbody_class-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tbody_class-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tbody_id-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tbody_id-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tbody_style-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tbody_style-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_bgcolor_name-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_bgcolor_name-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_class-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_class-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_colspan-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_colspan-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_height-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_height-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_id-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_id-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_nowrap-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_nowrap-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_rowspan-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_rowspan-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_td_style-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_td_style-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_class-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_class-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_id-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_id-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_style-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tfoot_style-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_bgcolor_name-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_bgcolor_name-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_class-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_class-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_colspan-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_colspan-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_height-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_height-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_id-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_id-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_nowrap-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_nowrap-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_th_style-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_th_style-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_center-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_center-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_char-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_char-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_left-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_left-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_right-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_thead_align_right-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_thead_class-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_thead_class-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_thead_id-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_thead_id-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_thead_style-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_thead_style-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tr_bgcolor_name-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tr_class-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tr_class-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tr_id-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tr_id-expected.txt:
  • platform/gtk/tables/mozilla/marvin/x_tr_style-expected.png:
  • platform/gtk/tables/mozilla/marvin/x_tr_style-expected.txt:
  • platform/gtk/tables/mozilla/other/body_col-expected.png:
  • platform/gtk/tables/mozilla/other/body_col-expected.txt:
  • platform/gtk/tables/mozilla/other/cellspacing-expected.png:
  • platform/gtk/tables/mozilla/other/cellspacing-expected.txt:
  • platform/gtk/tables/mozilla/other/move_row-expected.png:
  • platform/gtk/tables/mozilla/other/move_row-expected.txt:
  • platform/gtk/tables/mozilla/other/padding-expected.png:
  • platform/gtk/tables/mozilla/other/padding-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug10140-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug101759-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug101759-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug10216-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug10216-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug104898-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug104898-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug106336-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug106336-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug11945-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug11945-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug178855-expected.png: Copied from LayoutTests/platform/gtk/tables/mozilla/bugs/bug12384-expected.png.
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug178855-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug18770-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug18770-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug25707-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug25707-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-14-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-17-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug32205-1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug32205-4-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug4294-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug4294-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug46268-4-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug51000-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug51000-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug65372-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug65372-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug6933-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug6933-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug7113-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug7113-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug73629-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug73629-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/core/backgrounds-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/core/backgrounds-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/core/captions3-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/core/conflicts-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/core/conflicts-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/dom/appendCells1-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/dom/appendCells1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/dom/appendCol1-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/dom/appendCol1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.txt:
11:07 AM Changeset in webkit [195826] by enrica@apple.com
  • 3 edits in trunk/Source/WebKit2

Disable text interaction with pencil.
https://bugs.webkit.org/show_bug.cgi?id=153655
rdar://problem/24337778

Reviewed by Tim Horton.

  • Platform/spi/ios/UIKitSPI.h:
  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _createAndConfigureDoubleTapGestureRecognizer]):
(-[WKContentView _singleTapCommited:]):

10:59 AM Changeset in webkit [195825] by beidson@apple.com
  • 2 edits in trunk/LayoutTests

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations: This one still crashes, just flakily. *sigh*
10:46 AM Changeset in webkit [195824] by bshafiei@apple.com
  • 5 edits in trunk/Source

Versioning.

10:43 AM Changeset in webkit [195823] by bshafiei@apple.com
  • 1 copy in tags/Safari-602.1.18

New tag.

10:43 AM Changeset in webkit [195822] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Marking 3 displaylist tests as flaky on ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=153656

Unreviewed test gardening.

  • platform/ios-simulator/TestExpectations:
10:34 AM Changeset in webkit [195821] by bshafiei@apple.com
  • 5 edits in tags/Safari-602.1.17.0.3/Source

Versioning.

10:29 AM Changeset in webkit [195820] by bshafiei@apple.com
  • 1 copy in tags/Safari-602.1.17.0.3

New tag.

10:00 AM Changeset in webkit [195819] by commit-queue@webkit.org
  • 4 edits
    1 delete in trunk/Source/WebInspectorUI

Web Inspector: Add font-variant-* to the visual styles sidebar
https://bugs.webkit.org/show_bug.cgi?id=148720
<rdar://problem/22569974>

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

Added another subsection to the "Text" section for font-variant-*
properties.

  • Localizations/en.lproj/localizedStrings.js:
  • UserInterface/Images/FontVariantSmallCaps.svg: Removed.
  • UserInterface/Views/VisualStyleDetailsPanel.js:

(WebInspector.VisualStyleDetailsPanel):
Added another keyword grouping with the "normal" value since it is used
frequently in multiple subsections.

(WebInspector.VisualStyleDetailsPanel.prototype._populateFontSection):
(WebInspector.VisualStyleDetailsPanel.prototype._populateFontVariantsSection):
Added the five new font-variant-* properties specified in
<https://webkit.org/blog/5735/css-font-features/>.

(WebInspector.VisualStyleDetailsPanel.prototype._populateTextSpacingSection):
(WebInspector.VisualStyleDetailsPanel.prototype._populateAnimationSection):
Replaced the hardcoded "normal" keyword with the new grouping.

  • UserInterface/Views/VisualStyleKeywordCheckbox.css:

(.visual-style-property-container.keyword-checkbox.font-variant > .visual-style-property-value-container > input::after): Deleted.

9:52 AM WebKitGTK/Gardening/Calendar edited by Gustavo Noronha Silva
(diff)
9:50 AM Changeset in webkit [195818] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Rebaseline fast/forms/auto-fill-button/input-contacts-auto-fill-button.html for ios-simulator
https://bugs.webkit.org/show_bug.cgi?id=153567

Unreviewed test gardening.

  • platform/ios-simulator/fast/forms/auto-fill-button/input-contacts-auto-fill-button-expected.txt:
9:44 AM Changeset in webkit [195817] by matthew_hanson@apple.com
  • 3 edits in branches/safari-601-branch/Source/WebCore/dom

Applied patch from rdar://problem/24209109.

9:38 AM Changeset in webkit [195816] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

Unreviewed Windows build fix; one more ResourceLoaderOptions call site which needs to
be updated after adding the CachingPolicy parameter.

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

(WebCore::WebCoreAVCFResourceLoader::startLoading):

9:28 AM Changeset in webkit [195815] by Carlos Garcia Campos
  • 1 copy in releases/WebKitGTK/webkit-2.10.7

WebKitGTK+ 2.10.7

9:25 AM Changeset in webkit [195814] by beidson@apple.com
  • 2 edits in trunk/LayoutTests

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations: Enable some IndexedDB tests that pass.
9:24 AM Changeset in webkit [195813] by Carlos Garcia Campos
  • 4 edits in releases/WebKitGTK/webkit-2.10

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

.:

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

Source/WebKit2:

  • gtk/NEWS: Add release notes for 2.10.7
8:53 AM Changeset in webkit [195812] by Carlos Garcia Campos
  • 3 edits in releases/WebKitGTK/webkit-2.10/Source/WebKit2

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

Reviewed by Michael Catanzaro.

Guard all the new DnD-related code under GTK_CHECK_VERSION #if's to
make sure we don't bump the required version of GTK+ up to 3.16, and
it's buildable again with GTK+ >= 3.6.

  • UIProcess/gtk/DragAndDropHandler.cpp:

(WebKit::DragAndDropHandler::DragAndDropHandler):
(WebKit::DragAndDropHandler::startDrag):
(WebKit::DragAndDropHandler::fillDragData):
(WebKit::DragAndDropHandler::finishDrag):

  • UIProcess/gtk/DragAndDropHandler.h:
8:26 AM Changeset in webkit [195811] by mario@webkit.org
  • 3 edits in trunk/Source/WebKit2

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

Reviewed by Michael Catanzaro.

Guard all the new DnD-related code under GTK_CHECK_VERSION #if's to
make sure we don't bump the required version of GTK+ up to 3.16, and
it's buildable again with GTK+ >= 3.6.

  • UIProcess/gtk/DragAndDropHandler.cpp:

(WebKit::DragAndDropHandler::DragAndDropHandler):
(WebKit::DragAndDropHandler::startDrag):
(WebKit::DragAndDropHandler::fillDragData):
(WebKit::DragAndDropHandler::finishDrag):

  • UIProcess/gtk/DragAndDropHandler.h:
2:58 AM Changeset in webkit [195810] by Carlos Garcia Campos
  • 8 edits
    2 adds in trunk/Source/WebCore

[GTK] Implement overlay scrollbars
https://bugs.webkit.org/show_bug.cgi?id=153405

Reviewed by Michael Catanzaro.

Add support for overlay scrollbars to GTK+ platform following the
same style and behavior than GtkScrolledWindow. They are only
available for GTK+ >= 3.19, but honoring the GTK_OVERLAY_SCROLLING
environment variable, so they could be disable at run time, except
when threaded compositor is enabled. A new ScrollAnimator class
has been added for GTK+ to implement overlay scrollbars and still
allow smooth scrolling when available.

  • PlatformGTK.cmake: Add ScrollAnimatorGtk and stop building ScrollAnimatorSmooth.
  • platform/ScrollAnimator.h:

(WebCore::ScrollAnimator::ScrollAnimator::mouseEnteredContentArea):
Remove const to allow the ScrollAnimator to be updated.
(WebCore::ScrollAnimator::ScrollAnimator::mouseExitedContentArea): Ditto.
(WebCore::ScrollAnimator::ScrollAnimator::mouseMovedInContentArea): Ditto.
(WebCore::ScrollAnimator::ScrollAnimator::contentAreaDidShow): Ditto.
(WebCore::ScrollAnimator::ScrollAnimator::contentAreaDidHide): Ditto.

  • platform/Scrollbar.h:

(WebCore::Scrollbar::opacity): Get scrollbar opacity.
(WebCore::Scrollbar::setOpacity): Set scrollbar opacity.

  • platform/gtk/ScrollAnimatorGtk.cpp: Added.

(WebCore::ScrollAnimator::create): Create a ScrollAnimatorGtk.
(WebCore::ScrollAnimatorGtk::ScrollAnimatorGtk):
(WebCore::ScrollAnimatorGtk::~ScrollAnimatorGtk):
(WebCore::ScrollAnimatorGtk::ensureSmoothScrollingAnimation):
Initialize the ScrollAnimationSmooth if it doesn't exist.
(WebCore::ScrollAnimatorGtk::scroll): Ensure we have a
ScrollAnimationSmooth if smooth scrolling is enabled. This also
fixes the problem of having to reload the page after changing the
smooth scrolling setting.
(WebCore::ScrollAnimatorGtk::scrollToOffsetWithoutAnimation):
(WebCore::ScrollAnimatorGtk::willEndLiveResize):
(WebCore::ScrollAnimatorGtk::didAddVerticalScrollbar): Register
the scrollbar if it's an overlay scrollbar and make it visible
without animating it. Start the hide animation.
(WebCore::ScrollAnimatorGtk::didAddHorizontalScrollbar): Ditto.
(WebCore::ScrollAnimatorGtk::willRemoveVerticalScrollbar):
Unregister the scrollbar if it was registered and resrt the
animation state if it was the only scrollbar.
(WebCore::ScrollAnimatorGtk::willRemoveHorizontalScrollbar): Ditto.
(WebCore::ScrollAnimatorGtk::updateOverlayScrollbarsOpacity): Update
the scrollbars opacity and invalidate the indicator.
(WebCore::easeOutCubic):
(WebCore::ScrollAnimatorGtk::overlayScrollbarAnimationTimerFired):
Update the scrollbars opacity and schedule a next frame if the
animation didn't finish or start the hide animation otherwhise.
(WebCore::ScrollAnimatorGtk::showOverlayScrollbars): Start the
fade animation to show the scrollbars if needed.
(WebCore::ScrollAnimatorGtk::hideOverlayScrollbars): Start the
dafe animation to hide the scrollbars if needed.
(WebCore::ScrollAnimatorGtk::mouseEnteredContentArea): Call
showOverlayScrollbars().
(WebCore::ScrollAnimatorGtk::mouseExitedContentArea): Call
hideOverlayScrollbars().
(WebCore::ScrollAnimatorGtk::mouseMovedInContentArea): Call
showOverlayScrollbars().
(WebCore::ScrollAnimatorGtk::contentAreaDidShow): Ditto.
(WebCore::ScrollAnimatorGtk::contentAreaDidHide): Hide the
scrollbars without animations.
(WebCore::ScrollAnimatorGtk::notifyContentAreaScrolled): Call
showOverlayScrollbars().
(WebCore::ScrollAnimatorGtk::lockOverlayScrollbarStateToHidden):
Update the lock state and hide or show the scrollbars when locked
or unlocked.

  • platform/gtk/ScrollAnimatorGtk.h: Added.
  • platform/gtk/ScrollbarThemeGtk.cpp:

(WebCore::ScrollbarThemeGtk::backButtonRect): Pass
StyleContextMode to getOrCreateStyleContext depending on the
painting parameter.
(WebCore::ScrollbarThemeGtk::forwardButtonRect): Ditto.
(WebCore::ScrollbarThemeGtk::trackRect): Ditto.
(WebCore::ScrollbarThemeGtk::getOrCreateStyleContext): Add
StyleContextMode parameter to add the hovering class
unconditionally when using overlay scrollbars in layout mode. In
paint mode we add the hovering clas only when the scrollbar is
hovered. This way we always claim the size of the scrollbar when
hovered to be able to show the full scrollbar when the mouse is
close enough to the indicator.
(WebCore::ScrollbarThemeGtk::ScrollbarThemeGtk): Initialize
m_usesOverlayScrollbars.
(WebCore::ScrollbarThemeGtk::thumbRect): Pass the scrollbar to
getOrCreateStyleContext().
(WebCore::adjustRectAccordingToMargin): Fix the top margin.
(WebCore::ScrollbarThemeGtk::paintTrackBackground): Pass the
scrollbar and paint mode to getOrCreateStyleContext().
(WebCore::ScrollbarThemeGtk::paintScrollbarBackground): Ditto.
(WebCore::ScrollbarThemeGtk::paintThumb): Adjust the thumb
rectangle when overlay scrollbar is not hovered to its current
size, since we always claim the size of the scrollbar in hovered
mode.
(WebCore::ScrollbarThemeGtk::paintButton): Pass the scrollbar and
paint mode to getOrCreateStyleContext().
(WebCore::ScrollbarThemeGtk::paint): Take the scrollbar opacity
into account when rendering overlay scrollbars as indicators. Also
get the scrollbar opacity from the GTK+ theme and use a
transparency group when the global opacity is not full opaque.
(WebCore::ScrollbarThemeGtk::buttonSize): Pass the scrollbar to
getOrCreateStyleContext().

  • platform/gtk/ScrollbarThemeGtk.h:
  • platform/mac/ScrollAnimatorMac.h:
  • platform/mac/ScrollAnimatorMac.mm:

(WebCore::ScrollAnimatorMac::mouseEnteredContentArea):
(WebCore::ScrollAnimatorMac::mouseExitedContentArea):
(WebCore::ScrollAnimatorMac::mouseMovedInContentArea):
(WebCore::ScrollAnimatorMac::contentAreaDidShow):
(WebCore::ScrollAnimatorMac::contentAreaDidHide):

1:58 AM Changeset in webkit [195809] by ChangSeok Oh
  • 3 edits
    2 adds in trunk

[GStreamer] built-in media player doesn't update
https://bugs.webkit.org/show_bug.cgi?id=151816

Reviewed by Xabier Rodriguez-Calvar.

Source/WebCore:

The timeline of audio controls in media document is not properly updated since it is assumed
that the controls are hidden as soon as playing. However, such full page audio always has
opacity : 1 declared by video:-webkit-full-page-media::-webkit-media-controls-panel.no-video.
i.e. it is not actually hidden. We can fix this by simply returning false for no-video media
in controlsAreHidden();

Test: media/audio-controls-timeline-in-media-document.html

  • Modules/mediacontrols/mediaControlsBase.js:

(Controller.prototype.controlsAreAlwaysVisible):
(Controller.prototype.controlsAreHidden):

LayoutTests:

  • media/audio-controls-timeline-in-media-document-expected.txt: Added.
  • media/audio-controls-timeline-in-media-document.html: Added.
1:22 AM Changeset in webkit [195808] by Manuel Rego Casasnovas
  • 9 edits in trunk/Source/WebCore

[css-grid] Store lines instead of tracks in GridResolvedPosition
https://bugs.webkit.org/show_bug.cgi?id=153592

Reviewed by Sergio Villar Senin.

Due to the new feature that allows to create implicit tracks before the
explicit ones, we will need to use lines instead of tracks in the
code to be able to implement it properly.

This is just a first simple patch using lines instead of tracks in
GridResolvedPosition. It modifies the code that was using it, as it was
considering that the resolvedFinalPosition was a track index and
not a line index.

So if we've an item positioned like:

grid-column: 2 / 5;
grid-row: 1 / span 2;

Before we were storing this information on the GridSpan:

  • columns:
    • resolvedInitialPosition: 1
    • resolvedFinalPosition: 3
  • rows:
    • resolvedInitialPosition: 0
    • resolvedFinalPosition: 1

And now we're storing:

  • columns:
    • resolvedInitialPosition: 1
    • resolvedFinalPosition: 4
  • rows:
    • resolvedInitialPosition: 0
    • resolvedFinalPosition: 2

No new tests, no change of behavior.

  • css/CSSGridTemplateAreasValue.cpp:

(WebCore::stringForPosition):

  • css/CSSParser.cpp:

(WebCore::CSSParser::parseGridTemplateAreasRow):

  • css/StyleBuilderConverter.h:

(WebCore::StyleBuilderConverter::createImplicitNamedGridLinesFromGridArea):

  • rendering/RenderGrid.cpp:

(WebCore::RenderGrid::GridIterator::nextEmptyGridArea):
(WebCore::RenderGrid::computeUsedBreadthOfGridTracks):
(WebCore::RenderGrid::ensureGridSize):
(WebCore::RenderGrid::populateExplicitGridAndOrderIterator):
(WebCore::RenderGrid::placeAutoMajorAxisItemOnGrid):
(WebCore::RenderGrid::offsetAndBreadthForPositionedChild):
(WebCore::RenderGrid::gridAreaBreadthForChildIncludingAlignmentOffsets):
(WebCore::RenderGrid::columnAxisOffsetForChild):
(WebCore::RenderGrid::rowAxisOffsetForChild):

  • rendering/RenderGrid.h:
  • rendering/style/GridCoordinate.h:

(WebCore::GridSpan::GridSpan):
(WebCore::GridSpan::integerSpan):
(WebCore::GridSpan::end):
(WebCore::GridCoordinate::GridCoordinate):

  • rendering/style/GridResolvedPosition.cpp:

(WebCore::resolveRowStartColumnStartNamedGridLinePositionAgainstOppositePosition):
(WebCore::resolveRowEndColumnEndNamedGridLinePositionAgainstOppositePosition):
(WebCore::resolveNamedGridLinePositionAgainstOppositePosition):
(WebCore::resolveGridPositionAgainstOppositePosition):
(WebCore::GridResolvedPosition::resolveGridPositionsFromAutoPlacementPosition):
(WebCore::GridResolvedPosition::resolveGridPositionsFromStyle):
(WebCore::resolveNamedGridLinePositionFromStyle): Deleted.

  • rendering/style/GridResolvedPosition.h:
12:38 AM Changeset in webkit [195807] by bshafiei@apple.com
  • 29 edits in branches/safari-601-branch

Merged r194479. rdar://problem/24404073

12:35 AM Changeset in webkit [195806] by bshafiei@apple.com
  • 6 edits in branches/safari-601-branch

Merged r195615. rdar://problem/24302726

12:22 AM Changeset in webkit [195805] by bshafiei@apple.com
  • 1 edit
    2 copies in branches/safari-601-branch/LayoutTests

Merged r191251. rdar://problem/24399452

12:20 AM Changeset in webkit [195804] by bshafiei@apple.com
  • 2 edits in branches/safari-601-branch/Source/JavaScriptCore

Merge patch for rdar://problem/23968717.

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

Merge patch for rdar://problem/24394636.

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):

Note: See TracTimeline for information about the timeline view.