Timeline



Mar 31, 2020:

8:19 PM Changeset in webkit [259336] by Megan Gardner
  • 4 edits in trunk/Source/WebKit

Dismiss color picker on color selection on MacCatalyst
https://bugs.webkit.org/show_bug.cgi?id=209840
<rdar://problem/46793808>

Reviewed by Darin Adler.

To have correct behavior on mac, we need to dismiss the color picker popover once
a color has been selected.

  • UIProcess/ios/forms/WKFormColorControl.mm:

(-[WKColorPopover initWithView:]):

  • UIProcess/ios/forms/WKFormColorPicker.h:
  • UIProcess/ios/forms/WKFormColorPicker.mm:

(-[WKColorPicker initWithView:]):
(-[WKColorPicker initWithView:inPopover:]):
(-[WKColorPicker colorMatrixView:didTapColorButton:]):

7:49 PM Changeset in webkit [259335] by Simon Fraser
  • 5 edits in trunk/Source/WebCore

Make FrameView and Frame TextStream-loggable
https://bugs.webkit.org/show_bug.cgi?id=209826

Reviewed by Darin Adler.

Provide operator<<(TextStream&, ...) for Frame and FrameView so they can be logged.
Only basic data logging currently; this can be adjusted as necessary.

  • page/Frame.cpp:

(WebCore::operator<<):

  • page/Frame.h:
  • page/FrameView.cpp:

(WebCore::operator<<):

  • page/FrameView.h:
7:32 PM Changeset in webkit [259334] by Alan Bujtas
  • 3 edits
    2 adds in trunk

[MultiColumn] Call RenderTreeBuilder::multiColumnDescendantInserted only when the enclosing fragmented flow has changed
https://bugs.webkit.org/show_bug.cgi?id=209816
<rdar://problem/60742191>

Reviewed by Antti Koivisto.

Source/WebCore:

Just because an element goes from out-of-flow to in-flow, it does not necessarily mean that the enclosing flow is going to change.
This patch ensure that we only call RenderTreeBuilder::multiColumnDescendantInserted when the flow actually gains new content.

Test: fast/multicol/absolute-to-static-change-same-enclosing-flow.html

  • rendering/updating/RenderTreeBuilder.cpp:

(WebCore::RenderTreeBuilder::childFlowStateChangesAndAffectsParentBlock):

LayoutTests:

  • fast/multicol/absolute-to-static-change-same-enclosing-flow-expected.txt: Added.
  • fast/multicol/absolute-to-static-change-same-enclosing-flow.html: Added.
7:29 PM Changeset in webkit [259333] by Simon Fraser
  • 11 edits in trunk/Source

Add type traits for ScrollableArea, and other cleanup
https://bugs.webkit.org/show_bug.cgi?id=209838

Reviewed by Chris Dumez.

Source/WebCore:

Make it possible to use type casts on ScrollableArea so that EventHandler code can stop
passing around so many different types.

Because ScrollView inherits from both Widget and ScrollableArea, expand out its SPECIALIZE_TYPE_TRAITS macros.

Mark RenderLayer and RenderListBox ScrollableArea overrides as final.

  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::platformPrepareForWheelEvents): Null-check page and return early.

  • platform/ScrollView.h:

(isType):

  • platform/ScrollableArea.h:

(WebCore::ScrollableArea::isScrollView const):
(WebCore::ScrollableArea::isRenderLayer const):
(WebCore::ScrollableArea::isListBox const):
(WebCore::ScrollableArea::isPDFPlugin const):

  • rendering/RenderLayer.h:

(isType):

  • rendering/RenderListBox.h:

(isType):

Source/WebCore/../WebKit:

Because PDFPlugin inherits from both Plugin and ScrollableArea, expand out its SPECIALIZE_TYPE_TRAITS macros
and change the macros to use the isFoo() pattern.

  • WebProcess/Plugins/Netscape/NetscapePlugin.h:
  • WebProcess/Plugins/PDF/PDFPlugin.h:

(isType):

  • WebProcess/Plugins/Plugin.h:

(WebKit::Plugin::isPluginProxy const):
(WebKit::Plugin::isNetscapePlugin const):
(WebKit::Plugin::isPDFPlugin const):

  • WebProcess/Plugins/PluginProxy.h:
7:06 PM Changeset in webkit [259332] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WTF

Update check for aarch64
https://bugs.webkit.org/show_bug.cgi?id=209322

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-03-31
Reviewed by Mark Lam.

CPU(ARM64) is used on Linux, so checking to avoid Apple platforms doesn't make much sense.
The comment implying that this is an Apple architecture also no longer makes sense.

  • wtf/PlatformCPU.h:
6:42 PM Changeset in webkit [259331] by Kate Cheney
  • 5 edits in trunk

Requests for messageHandlers() in the DOMWindow should be ignored for non-app-bound navigations
https://bugs.webkit.org/show_bug.cgi?id=209836
<rdar://problem/61071607>

Reviewed by Brent Fulgham.

Source/WebCore:

Ignore calls for WebKitNamespace::messageHandlers() and add release
logging if the domain is not app-bound.

  • page/WebKitNamespace.cpp:

(WebCore::WebKitNamespace::messageHandlers):

Tools:

Most of this patch is changes to the tests, which formerly relied
on message handlers to test script injection protections. I rewrote
three tests to remove the use of message handlers which were used to
confirm normal script injection behavior before enabling In-App
Browser Privacy. Since normal script injection behavior is tested in
WKUserContentController.mm already it is unecessary to test here.

I removed one test, IgnoreAppBoundDomainsAcceptsUserScripts, which
fully relied on message handler use and could not be tested without
somehow disabling this feature.

  • TestWebKitAPI/Tests/WebKitCocoa/InAppBrowserPrivacy.mm:

(TEST):
(-[TestInAppBrowserScriptMessageHandler userContentController:didReceiveScriptMessage:]): Deleted.

  • TestWebKitAPI/Tests/WebKitCocoa/in-app-browser-privacy-local-file.html:

Add a message handler to this page to demonstrate that message
handlers work for app-bound navigations (file:// protocol is always
app-bound).

6:22 PM Changeset in webkit [259330] by Wenson Hsieh
  • 18 edits
    4 adds in trunk

Datalist option's label not used
https://bugs.webkit.org/show_bug.cgi?id=201768
<rdar://problem/55361186>

Reviewed by Darin Adler.

Source/WebCore:

Refactor DataListSuggestionInformation's suggestions to include label text as well as values, and then adjust
TextFieldInputType::suggestions() to match label text as well as values for ports that are capable of showing
label text in datalist suggestion UI.

Test: fast/forms/datalist/datalist-option-labels.html

  • html/DataListSuggestionInformation.h:

Introduce DataListSuggestion, a wrapper around a value and label. Currently, the list of datalist suggestions
is only a Vector<String>; change it to be a Vector<DataListSuggestion> instead.

(WebCore::DataListSuggestion::encode const):
(WebCore::DataListSuggestion::decode):
(WebCore::DataListSuggestionInformation::encode const):
(WebCore::DataListSuggestionInformation::decode):

Move encoding and decoding for DataListSuggestionInformation out of WebCoreArgumentCoders and into WebCore.

  • html/TextFieldInputType.cpp:

(WebCore::TextFieldInputType::listAttributeTargetChanged):
(WebCore::TextFieldInputType::suggestions):

When computing suggestions, match label text in addition to values on ports that display label text in the
chrome; for the time being, this is only the case for macOS, but will be extended to iOS as well in a future
patch. Note that we don't plumb label text if it is already the same as the value, to avoid duplicate strings
from showing up.

(WebCore::TextFieldInputType::didCloseSuggestions):

  • html/TextFieldInputType.h:
  • loader/EmptyClients.h:
  • page/ChromeClient.h:

Add a chrome client hook to return whether or not the client shows label text in its datalist UI.

  • platform/DataListSuggestionsClient.h:

Source/WebKit:

Add support on macOS for showing option labels in datalist suggestions.

  • Shared/WebCoreArgumentCoders.cpp:

(IPC::ArgumentCoder<DataListSuggestionInformation>::encode): Deleted.
(IPC::ArgumentCoder<DataListSuggestionInformation>::decode): Deleted.

  • Shared/WebCoreArgumentCoders.h:

Remove WebCoreArgumentCoders logic for encoding and decoding DataListSuggestionInformation. See
DataListSuggestionInformation.h in WebCore for more detail.

  • UIProcess/gtk/WebDataListSuggestionsDropdownGtk.cpp:

(WebKit::WebDataListSuggestionsDropdownGtk::show):

Tweak GTK code to adjust for the change from String to DataListSuggestion.

  • UIProcess/ios/WebDataListSuggestionsDropdownIOS.mm:

(-[WKDataListSuggestionsControl didSelectOptionAtIndex:]):
(-[WKDataListSuggestionsControl textSuggestions]):
(-[WKDataListSuggestionsControl suggestionAtIndex:]):

Adjust some iOS codepaths to use DataListSuggestion::value as the value string to display.

  • UIProcess/mac/WebDataListSuggestionsDropdownMac.mm:

Tweak several UI constants. A suggestion cell may now be either 20 or 40pt tall, depending on whether it has
label text to show.

Currently, the maximum combined height of the table view cells is 120 (not including spacing between cells and
vertical padding around the top and bottom of the table view), since the maximum number of cells to show is 6
and each cell is 20pt tall. Maintain this constant by making the maximum cell height 120, which accomodates
either three labeled cells, or 6 unlabeled cells (i.e. to match shipping behavior).

(-[WKDataListSuggestionView initWithFrame:]):
(-[WKDataListSuggestionView layout]):

Maintain two text fields or value and (optionally) label text: _valueField and _labelField. The value field
fills the bounds of the cell in the case where there is no label text, but fills only the top half of the cell
in the case where there is label text. The label field takes the bottom half of the cell in this case.

Additionally, add a divider view that may appear at the very bottom of each cell. This divider view is present
when one or more suggestions in the datalist are labeled.

(-[WKDataListSuggestionView setValue:label:]):

Renamed from -setText:. Add a label string argument as well.

(-[WKDataListSuggestionView setShouldShowBottomDivider:]):

Add getters and setters for the -shouldShowBottomDivider property, which can be used to make the divider view
visible or hidden.

(-[WKDataListSuggestionView shouldShowBottomDivider]):
(-[WKDataListSuggestionView setBackgroundStyle:]):

Use -[NSColor secondaryLabelColor] for the label text field.

(shouldShowDividersBetweenCells):

Add a helper method to determine whether the table view should be showing clear dividers between each item.
We only do so if there are one or more labels to be shown.

(-[WKDataListSuggestionsController initWithInformation:inView:]):
(-[WKDataListSuggestionsController currentSelectedString]):
(-[WKDataListSuggestionsController updateWithInformation:]):
(-[WKDataListSuggestionsController moveSelectionByDirection:]):

Drive-by fix: scroll to reveal each selected row when using the arrow keys to navigate between items.

(-[WKDataListSuggestionsController dropdownRectForElementRect:]):
(-[WKDataListSuggestionsController tableView:heightOfRow:]):

Return either dropdownRowHeightWithoutLabel or dropdownRowHeightWithLabel, depending on whether there is
label text to be shown in that suggestion cell.

(-[WKDataListSuggestionsController tableView:viewForTableColumn:row:]):
(-[WKDataListSuggestionView setText:]): Deleted.

  • WebProcess/WebCoreSupport/WebChromeClient.cpp:

(WebKit::WebChromeClient::canShowDataListSuggestionLabels const):

  • WebProcess/WebCoreSupport/WebChromeClient.h:

Source/WebKitLegacy/mac:

See WebCore/ChangeLog and WebKit/ChangeLog for more details.

  • WebCoreSupport/WebChromeClient.h:

LayoutTests:

Add a test to verify that when datalist suggestions incorporate option labels into the displayed text
suggestions, they are matched against when changing the value of the input field, and can be selected. This is
expected to be the case on macOS, but not on other platforms (for the time being).

  • fast/forms/datalist/datalist-option-labels-expected.txt: Added.
  • fast/forms/datalist/datalist-option-labels.html: Added.
  • platform/gtk/fast/forms/datalist/datalist-option-labels-expected.txt: Added.
  • platform/ios/fast/forms/datalist/datalist-option-labels-expected.txt: Added.
5:55 PM Changeset in webkit [259329] by Jon Davis
  • 3 edits in trunk/Source/WebInspectorUI

Added new WebSocket icon
https://bugs.webkit.org/show_bug.cgi?id=209433

Reviewed by Joseph Pecoraro.

Drive-by: remove unused #doc-orig

  • UserInterface/Images/DocumentIcons.svg:
  • UserInterface/Views/ResourceIcons.css:

(.resource-icon.resource-type-websocket .icon):
(@media (prefers-color-scheme: dark) .resource-icon.resource-type-websocket .icon):

5:45 PM Changeset in webkit [259328] by pvollan@apple.com
  • 8 edits in trunk

[macOS] Deny mach-lookup access to "com.apple.lsd.mapdb" in sandbox
https://bugs.webkit.org/show_bug.cgi?id=209814

Reviewed by Darin Adler.

Source/WebKit:

This was done for iOS in <https://trac.webkit.org/changeset/258915>, and in order to be able to do this
on macOS, checking in with Launch Services and updating the process name needs to be done after the
Launch Services database mapping has been done in WebProcess::platformInitializeWebProcess. Also, the
previous call to RegisterApplication has been replaced with a call to launchServicesCheckIn, since
RegisterApplication is an AppKit function, and should be avoided since the WebContent process is not
a NSApplication anymore.

Test: fast/sandbox/mac/sandbox-mach-lookup.html

  • Shared/mac/AuxiliaryProcessMac.mm:

(WebKit::AuxiliaryProcess::launchServicesCheckIn):

  • UIProcess/Cocoa/WebProcessPoolCocoa.mm:

(WebKit::WebProcessPool::platformInitializeWebProcess):

  • WebProcess/cocoa/WebProcessCocoa.mm:

(WebKit::WebProcess::platformInitializeWebProcess):
(WebKit::WebProcess::initializeProcessName):
(WebKit::WebProcess::updateProcessName):
(WebKit::WebProcess::platformInitializeProcess):

  • WebProcess/com.apple.WebProcess.sb.in:

LayoutTests:

  • fast/sandbox/mac/sandbox-mach-lookup-expected.txt:
  • fast/sandbox/mac/sandbox-mach-lookup.html:
5:31 PM Changeset in webkit [259327] by Russell Epstein
  • 3 edits in branches/safari-609-branch/Source/WebCore

Cherry-pick r259305. rdar://problem/61131083

Invalid memory access @ WebCore::FrameLoader::dispatchDidCommitLoad
https://bugs.webkit.org/show_bug.cgi?id=209786

Patch by Pinki Gyanchandani <pgyanchandani@apple.com> on 2020-03-31
Reviewed by Ryosuke Niwa.

No new tests. Reduced test would be added later. Currently issue is verified with the original testcase in associated radar-58416328.

Webkit1 only issue, where m_client.dispatchDidCommitLoad in FrameLoader::dispatchDidCommitLoad could cause the frame
to be destroyed, and m_frame still being accessed outside. Changes made to protect the DocumentLoader and Frame.

  • loader/DocumentLoader.cpp: (WebCore::DocumentLoader::finishedLoading): (WebCore::DocumentLoader::handleSubstituteDataLoadNow):
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::receivedFirstData):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@259305 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:31 PM Changeset in webkit [259326] by Russell Epstein
  • 2 edits in branches/safari-609-branch/Source/WebCore

Cherry-pick r259244. rdar://problem/61131078

Assertion failure in HTMLFormElement::formElementIndex
https://bugs.webkit.org/show_bug.cgi?id=209643

Reviewed by Darin Adler.

The bug was caused by FormAssociatedElement::findAssociatedForm finding a wrong form element
when it's called on an element which appears later in the removed subtree.

When we find the new form element to associate this element with, check to make sure its root
element is that of the tree scope. This condition will be false if this element is in in the midst
of being removed.

  • html/FormAssociatedElement.cpp: (WebCore::FormAssociatedElement::findAssociatedForm):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@259244 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:12 PM Changeset in webkit [259325] by don.olmstead@sony.com
  • 5 edits in trunk/Source

[PlayStation] Fix build breaks after r259112
https://bugs.webkit.org/show_bug.cgi?id=209830

Unreviewed build fix.

Source/WebCore:

Add USE(GLIB) guards around RunLoopSourcePriority usage.

  • platform/ScrollAnimationKinetic.cpp:

(WebCore::ScrollAnimationKinetic::ScrollAnimationKinetic):

Source/WebKit:

Replace PLATFORM(WPE) with USE(LIBWPE) within WebWheelEvent.

  • Shared/WebEvent.h:
  • Shared/WebWheelEvent.cpp:

(WebKit::WebWheelEvent::encode const):
(WebKit::WebWheelEvent::decode):

5:09 PM Changeset in webkit [259324] by achristensen@apple.com
  • 10 edits in trunk

Send correct UserContentControllerIdentifier after using SPI WKWebpagePreferences._userContentController
https://bugs.webkit.org/show_bug.cgi?id=209833

Reviewed by Tim Hatcher.

Source/WebKit:

Covered by an API test. I knew something was broken in r259307 and this was it.

  • Shared/UserContentControllerParameters.cpp:

(WebKit::UserContentControllerParameters::encode const):
(WebKit::UserContentControllerParameters::decode):

  • Shared/UserContentControllerParameters.h:
  • Shared/WebPageCreationParameters.cpp:

(WebKit::WebPageCreationParameters::encode const):
(WebKit::WebPageCreationParameters::decode):

  • Shared/WebPageCreationParameters.h:
  • UIProcess/UserContent/WebUserContentControllerProxy.cpp:

(WebKit::WebUserContentControllerProxy::parameters const):

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

Tools:

  • TestWebKitAPI/Tests/WebKitCocoa/WebsitePolicies.mm:
5:05 PM Changeset in webkit [259323] by Fujii Hironori
  • 4 edits in trunk/Source/WebKit

Deduplicate WebsiteDataStore::parameters() of Cocoa port and non-Cocoa port
https://bugs.webkit.org/show_bug.cgi?id=209644

Reviewed by Youenn Fablet.

WinCairo WTR was failing an assertion ensuring
ResourceLoadStatistics was enabled in
NetworkSession::setThirdPartyCookieBlockingMode while running
LayoutTests with useEphemeralSession=true becuase
ResourceLoadStatisticsParameters was not set in
WebsiteDataStoreParameters.

  • UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:

(WebKit::WebsiteDataStore::platformSetNetworkParameters): Added.
(WebKit::WebsiteDataStore::parameters): Deleted.

  • UIProcess/WebsiteData/WebsiteDataStore.cpp:

(WebKit::WebsiteDataStore::parameters):

  • UIProcess/WebsiteData/WebsiteDataStore.h:
4:58 PM Changeset in webkit [259322] by Brent Fulgham
  • 4 edits in trunk

Allow WKAppBoundDomains to be initialized with eTLD+1 only (no protocol)
https://bugs.webkit.org/show_bug.cgi?id=209839
<rdar://problem/61129400>

Reviewed by Darin Adler.

Source/WebKit:

Create a convenience mode for WKAppBoundDomains that assumes https if the user does
not supply the full URL. This doesn't effect the behavior of the app-bound domains
because we only deal in RegistrableDomains.

Tested by TestWebKitAPI.

  • UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:

(WebKit::WebsiteDataStore::initializeAppBoundDomains): If the protocol is missing from
a domain supplied by WKAppBoundDomains, assume it was https.

Tools:

  • TestWebKitAPI/Info.plist:
4:47 PM Changeset in webkit [259321] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

[ Catalina ] editing/mac/selection/context-menu-select-editability.html is failing on Catalina
https://bugs.webkit.org/show_bug.cgi?id=204246

Unreviewed test gardening.

  • platform/mac/TestExpectations: Remove failure expectation since the test is now passing.
4:41 PM Changeset in webkit [259320] by ysuzuki@apple.com
  • 15 edits in trunk/Source/JavaScriptCore

[JSC] Introduce UCPUStrictInt32 for result type of DFG operations
https://bugs.webkit.org/show_bug.cgi?id=209832

Reviewed by Saam Barati.

Let's introduce UCPUStrictInt32 to DFG operations to offload StrictInt32 code into operations C++ code.
UCPUStrictInt32 is the same size to UCPURegister, and it is used for StrictInt32, which requires upper 32-bits
are zeroed.

  • assembler/CPU.h:
  • dfg/DFGOperations.cpp:
  • dfg/DFGOperations.h:
  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileGetCharCodeAt):
(JSC::DFG::SpeculativeJIT::compileValueToInt32):
(JSC::DFG::SpeculativeJIT::compileUInt32ToNumber):
(JSC::DFG::SpeculativeJIT::compileDoubleAsInt32):
(JSC::DFG::SpeculativeJIT::setIntTypedArrayLoadResult):
(JSC::DFG::SpeculativeJIT::compileBitwiseNot):
(JSC::DFG::SpeculativeJIT::compileBitwiseOp):
(JSC::DFG::SpeculativeJIT::compileShiftOp):
(JSC::DFG::SpeculativeJIT::compileArithAdd):
(JSC::DFG::SpeculativeJIT::compileArithAbs):
(JSC::DFG::SpeculativeJIT::compileArithClz32):
(JSC::DFG::SpeculativeJIT::compileArithSub):
(JSC::DFG::SpeculativeJIT::compileArithNegate):
(JSC::DFG::SpeculativeJIT::compileArithMul):
(JSC::DFG::SpeculativeJIT::compileArithDiv):
(JSC::DFG::SpeculativeJIT::compileArithMod):
(JSC::DFG::SpeculativeJIT::compileArithRounding):
(JSC::DFG::SpeculativeJIT::compileArithMinMax):
(JSC::DFG::SpeculativeJIT::compileGetTypedArrayByteOffset):
(JSC::DFG::SpeculativeJIT::compileGetArrayLength):
(JSC::DFG::SpeculativeJIT::compileVarargsLength):
(JSC::DFG::SpeculativeJIT::compileGetRestLength):
(JSC::DFG::SpeculativeJIT::compileArrayIndexOf):
(JSC::DFG::SpeculativeJIT::compileGetEnumerableLength):
(JSC::DFG::SpeculativeJIT::compileGetArgumentCountIncludingThis):

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::SpeculativeJIT::strictInt32Result):
(JSC::DFG::SpeculativeJIT::int32Result): Deleted.

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):
(JSC::DFG::SpeculativeJIT::compileStringCodePointAt):

  • ftl/FTLLowerDFGToB3.cpp:

(JSC::FTL::DFG::LowerDFGToB3::compileArithClz32):
(JSC::FTL::DFG::LowerDFGToB3::compileArrayIndexOf):
(JSC::FTL::DFG::LowerDFGToB3::compileVarargsLength):
(JSC::FTL::DFG::LowerDFGToB3::mapHashString):
(JSC::FTL::DFG::LowerDFGToB3::compileMapHash):
(JSC::FTL::DFG::LowerDFGToB3::compileHasOwnProperty):
(JSC::FTL::DFG::LowerDFGToB3::compileInstanceOfCustom):
(JSC::FTL::DFG::LowerDFGToB3::doubleToInt32):
(JSC::FTL::DFG::LowerDFGToB3::sensibleDoubleToInt32):

  • ftl/FTLOperations.cpp:

(JSC::FTL::operationSwitchStringAndGetBranchOffset):
(JSC::FTL::operationTypeOfObjectAsTypeofType):

  • ftl/FTLOperations.h:
  • jit/JITOperations.cpp:
  • jit/JITOperations.h:
  • runtime/MathCommon.cpp:

(JSC::operationToInt32):
(JSC::operationToInt32SensibleSlow):

  • runtime/MathCommon.h:

(JSC::toUCPUStrictInt32):

4:03 PM Changeset in webkit [259319] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mojave wk1 Release ] fast/canvas/webgl/texImage2D-mse-flipY-true.html is timing out.
https://bugs.webkit.org/show_bug.cgi?id=209837

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
3:41 PM Changeset in webkit [259318] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mac wk1 Debug] inspector/injected-script/avoid-getter-invocation.html is flaky failing.
https://bugs.webkit.org/show_bug.cgi?id=209073

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations:
3:38 PM Changeset in webkit [259317] by Brent Fulgham
  • 4 edits in trunk/Source/WebKit

[macOS] Update sandbox rules for correct sanitizer paths in current OS releases
https://bugs.webkit.org/show_bug.cgi?id=209818
<rdar://problem/58422996>

Reviewed by Per Arne Vollan.

Update the sandbox rules to allow access to the new system Asan library
locations.

  • GPUProcess/mac/com.apple.WebKit.GPUProcess.sb.in: Note: Don't bother leaving

the old location in this sandbox, since it is not being used on any shipping
software.

  • NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
  • WebProcess/com.apple.WebProcess.sb.in:
3:19 PM Changeset in webkit [259316] by sihui_liu@apple.com
  • 11 edits in trunk/Source

IndexedDB: destroy WebIDBServer when session is removed in network process
https://bugs.webkit.org/show_bug.cgi?id=209606
<rdar://problem/59310081>

Reviewed by Geoffrey Garen.

Source/WebCore:

Rename immediateCloseForUserDelete to immediateClose as we now use it in destructor of IDBServer to make sure
everything in database finishes correctly.

  • Modules/indexeddb/server/IDBServer.cpp:

(WebCore::IDBServer::IDBServer::~IDBServer):
(WebCore::IDBServer::IDBServer::closeAndDeleteDatabasesModifiedSince):
(WebCore::IDBServer::IDBServer::closeAndDeleteDatabasesForOrigins):

  • Modules/indexeddb/server/UniqueIDBDatabase.cpp:

(WebCore::IDBServer::UniqueIDBDatabase::immediateClose):
(WebCore::IDBServer::UniqueIDBDatabase::immediateCloseForUserDelete): Deleted.

  • Modules/indexeddb/server/UniqueIDBDatabase.h:

Source/WebKit:

Tested manually to verify WebIDBServer is removed and its thread ends when session is removed.

  • NetworkProcess/IndexedDB/WebIDBServer.cpp:

(WebKit::WebIDBServer::~WebIDBServer):
(WebKit::WebIDBServer::addConnection):
(WebKit::WebIDBServer::removeConnection):
(WebKit::WebIDBServer::close):

  • NetworkProcess/IndexedDB/WebIDBServer.h:
  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::destroySession):
(WebKit::NetworkProcess::connectionToWebProcessClosed):

Source/WTF:

Add function to kill CrossThreadTaskHandler and make thread finish. Also add a callback to be called before
thread finishes.

  • wtf/CrossThreadTaskHandler.cpp:

(WTF::CrossThreadTaskHandler::CrossThreadTaskHandler):
(WTF::CrossThreadTaskHandler::setCompletionCallback):
(WTF::CrossThreadTaskHandler::kill):

  • wtf/CrossThreadTaskHandler.h:
3:09 PM Changeset in webkit [259315] by Chris Dumez
  • 12 edits in trunk/Source

Regression(r253357) DeviceMotionEvent acceleration and rotationRate are null
https://bugs.webkit.org/show_bug.cgi?id=209831
<rdar://problem/60720953>

Reviewed by Darin Adler.

Source/WebCore:

The issue was that DeviceMotionClientIOS::motionChanged() would only initialize the
acceleration and rotationRate if [m_motionManager gyroAvailable] returned YES. After
r253357, m_motionManager is nil because we get motion data from the UIProcess so
[m_motionManager gyroAvailable] would always resolve to NO.

To address the issue, I made the rotationRate parameters to motionChanged() optional
and we rely on them being set to know if gyro data is available. Note that I did not
make the acceleration optional because according to [1], all devices have an
accelerometer.

[1] https://developer.apple.com/documentation/coremotion/cmmotionmanager/1616094-devicemotionavailable?language=objc

  • platform/ios/DeviceMotionClientIOS.h:
  • platform/ios/DeviceMotionClientIOS.mm:

(WebCore::DeviceMotionClientIOS::motionChanged):

  • platform/ios/DeviceOrientationUpdateProvider.h:
  • platform/ios/MotionManagerClient.h:

(WebCore::MotionManagerClient::motionChanged):

  • platform/ios/WebCoreMotionManager.mm:

(-[WebCoreMotionManager sendAccelerometerData:]):

Source/WebKit:

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

(WebKit::WebDeviceOrientationUpdateProviderProxy::motionChanged):

  • WebProcess/WebCoreSupport/WebDeviceOrientationUpdateProvider.cpp:

(WebKit::WebDeviceOrientationUpdateProvider::deviceMotionChanged):

  • WebProcess/WebCoreSupport/WebDeviceOrientationUpdateProvider.h:
  • WebProcess/WebCoreSupport/WebDeviceOrientationUpdateProvider.messages.in:
3:07 PM Changeset in webkit [259314] by Alan Coon
  • 11 edits in branches/safari-610.1.7-branch

Cherry-pick r258436. rdar://problem/61125864

[ iOS and Mac wk2 ] http/tests/in-app-browser-privacy/ tests failing
https://bugs.webkit.org/show_bug.cgi?id=209016
<rdar://problem/60329530>

Reviewed by Chris Dumez.

Source/WebKit:

This patch adds a function to re-initialize app bound domains for
in-app-browser-privacy tests, since they are only initialized once
when the WebsiteDataStore is created. This causes issues if the tests
are run in parallel with other tests with different app-bound domains.

  • UIProcess/API/C/WKWebsiteDataStoreRef.cpp: (WKWebsiteDataStoreReinitializeAppBoundDomains):
  • UIProcess/API/C/WKWebsiteDataStoreRef.h:
  • UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm: (WebKit::WebsiteDataStore::clearAppBoundDomains): (WebKit::WebsiteDataStore::reinitializeAppBoundDomains):
  • UIProcess/WebsiteData/WebsiteDataStore.h:

Tools:

Re-initialize the app-bound domains when the correct
TestOptions parameter is set.

  • WebKitTestRunner/TestController.cpp: (WTR::TestController::createWebViewWithOptions): (WTR::TestController::reinitializeAppBoundDomains):
  • WebKitTestRunner/TestController.h:

LayoutTests:

Use TestOptions to trigger the re-initialization of app-bound domains.

  • http/tests/in-app-browser-privacy/app-bound-domain.html:
  • http/tests/in-app-browser-privacy/switch-session-on-navigation-to-app-bound-domain.html:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258436 268f45cc-cd09-0410-ab3c-d52691b4dbfc

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

[iPadOS] Unable to scrub videos on nba.com
https://bugs.webkit.org/show_bug.cgi?id=209829
<rdar://problem/58804360>

Patch by Antoine Quint <Antoine Quint> on 2020-03-31
Reviewed by Dean Jackson.

Opt nba.com into the simulated mouse events dispatch quirk.

  • page/Quirks.cpp:

(WebCore::Quirks::shouldDispatchSimulatedMouseEvents const):

2:25 PM Changeset in webkit [259312] by Ryan Haddad
  • 4 edits in trunk/LayoutTests

Unreviewed test gardening for iOS and macOS.

  • platform/ios-simulator-wk2/TestExpectations: Skip a test that is consistently timing out.
  • platform/ios/TestExpectations: Skip a crashing test, add failure expectation for webkit.org/b/208023
  • platform/mac/TestExpectations: Add failure expectation for webkit.org/b/208023
2:11 PM Changeset in webkit [259311] by Russell Epstein
  • 3 edits in branches/safari-609-branch/Source/WebCore

Cherry-pick r258326. rdar://problem/61113047

Remove no longer used code in LibWebRTCMediaEndpoint to handle remote streams
https://bugs.webkit.org/show_bug.cgi?id=208919

Reviewed by Eric Carlson.

These stream APIs are legacy now and not useful anymore.
Stop implementing the corresponding callbacks and remove related code.
Coverd by existing tests.

  • Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp: (WebCore::LibWebRTCMediaEndpoint::addRemoteStream): Deleted. (WebCore::LibWebRTCMediaEndpoint::addRemoteTrack): Deleted. (WebCore::LibWebRTCMediaEndpoint::OnAddStream): Deleted.
  • Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258326 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:57 PM Changeset in webkit [259310] by Ross Kirsling
  • 2 edits in trunk/Source/JavaScriptCore

REGRESSION: ASSERTION FAILED: regExpObjectNode in JSC::DFG::StrengthReductionPhase::handleNode
https://bugs.webkit.org/show_bug.cgi?id=209824

Reviewed by Mark Lam.

  • dfg/DFGStrengthReductionPhase.cpp:

(JSC::DFG::StrengthReductionPhase::handleNode):
It's true that we need to verify lastIndex even when a RegExp is neither global nor sticky,
but if DFG's already converted RegExpExec to RegExpExecNonGlobalOrSticky, that means we've thrown away
the RegExpObject node, so we shouldn't try to reverify lastIndex when we reconsider folding to constant.

1:38 PM Changeset in webkit [259309] by Alan Coon
  • 4 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258600. rdar://problem/61082995

Add internal debugging when initializing an app-bound session

https://bugs.webkit.org/show_bug.cgi?id=209190
<rdar://problem/60371620>

Reviewed by Brent Fulgham.

  • NetworkProcess/cocoa/NetworkDataTaskCocoa.mm: (WebKit::NetworkDataTaskCocoa::NetworkDataTaskCocoa):
  • NetworkProcess/cocoa/NetworkSessionCocoa.h:
  • NetworkProcess/cocoa/NetworkSessionCocoa.mm: (WebKit::SessionWrapper::initialize): (WebKit::NetworkSessionCocoa::NetworkSessionCocoa): (WebKit::NetworkSessionCocoa::initializeEphemeralStatelessSession): (WebKit::NetworkSessionCocoa::sessionWrapperForTask): (WebKit::NetworkSessionCocoa::appBoundSession): (WebKit::NetworkSessionCocoa::isolatedSession):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258600 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:21 PM Changeset in webkit [259308] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Append Upgrade-Insecure-Requests header in CachedResourceLoader
https://bugs.webkit.org/show_bug.cgi?id=209664

Patch by Rob Buis <rbuis@igalia.com> on 2020-03-31
Reviewed by Youenn Fablet.

Append Upgrade-Insecure-Requests header in CachedResourceLoader, following
the fetch spec [1, step 3].

[1] https://fetch.spec.whatwg.org/#concept-main-fetch

  • loader/FormSubmission.cpp:

(WebCore::FormSubmission::populateFrameLoadRequest):

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::addExtraFieldsToMainResourceRequest):
(WebCore::FrameLoader::loadDifferentDocumentItem):
(WebCore::createWindow):
(WebCore::FrameLoader::addHTTPUpgradeInsecureRequestsIfNeeded): Deleted.

  • loader/FrameLoader.h:
  • loader/cache/CachedResourceLoader.cpp:

(WebCore::CachedResourceLoader::requestResource):

1:13 PM Changeset in webkit [259307] by achristensen@apple.com
  • 30 edits
    4 adds in trunk

Add SPI WKWebpagePreferences._userContentController
https://bugs.webkit.org/show_bug.cgi?id=209795

Reviewed by Tim Hatcher.

Source/WebKit:

This will allow us to switch which WKUserContentController we are using at decidePolicyForNavigationAction time
like we do WKWebsiteDataStores. This is only allowed with main frame navigations.

To do this I moved UserContentControllerParameters into their own struct.
I remove unused WebsitePoliciesData.websiteDataStoreParameters.
I pass an API::WebsitePolicies* further down the chain instead of switching to Optional<WebsitePoliciesData>,
which allows us to access the WebUserContentControllerProxy* from the former in WebPageProxy::creationParameters.
I removed an unused WebsitePolicies constructor.
I added a missing copied member variable in WebsitePolicies::copy.

  • NetworkProcess/NetworkSession.cpp:
  • Shared/UserContentControllerParameters.cpp: Added.

(WebKit::UserContentControllerParameters::encode const):
(WebKit::UserContentControllerParameters::decode):

  • Shared/UserContentControllerParameters.h: Added.
  • Shared/WebPageCreationParameters.cpp:

(WebKit::WebPageCreationParameters::encode const):
(WebKit::WebPageCreationParameters::decode):

  • Shared/WebPageCreationParameters.h:
  • Shared/WebsitePoliciesData.cpp:

(WebKit::WebsitePoliciesData::encode const):
(WebKit::WebsitePoliciesData::decode):

  • Shared/WebsitePoliciesData.h:
  • Sources.txt:
  • UIProcess/API/APIWebsitePolicies.cpp:

(API::WebsitePolicies::copy const):
(API::WebsitePolicies::setUserContentController):
(API::WebsitePolicies::data):
(API::WebsitePolicies::WebsitePolicies): Deleted.

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

(WKPageUpdateWebsitePolicies):

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _updateWebpagePreferences:]):

  • UIProcess/API/Cocoa/WKWebpagePreferences.mm:

(-[WKWebpagePreferences _userContentController]):
(-[WKWebpagePreferences _setUserContentController:]):

  • UIProcess/API/Cocoa/WKWebpagePreferencesPrivate.h:
  • UIProcess/Cocoa/NavigationState.mm:

(WebKit::NavigationState::NavigationClient::decidePolicyForNavigationAction):

  • UIProcess/ProvisionalPageProxy.cpp:

(WebKit::ProvisionalPageProxy::ProvisionalPageProxy):
(WebKit::ProvisionalPageProxy::initializeWebPage):
(WebKit::ProvisionalPageProxy::goToBackForwardItem):

  • UIProcess/ProvisionalPageProxy.h:
  • UIProcess/UserContent/WebUserContentControllerProxy.cpp:

(WebKit::WebUserContentControllerProxy::addProcess):
(WebKit::WebUserContentControllerProxy::parameters const):
(WebKit::WebUserContentControllerProxy::contentRuleListData const):
(WebKit::WebUserContentControllerProxy::contentRuleListData): Deleted.

  • UIProcess/UserContent/WebUserContentControllerProxy.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::receivedNavigationPolicyDecision):
(WebKit::WebPageProxy::receivedPolicyDecision):
(WebKit::WebPageProxy::continueNavigationInNewProcess):
(WebKit::WebPageProxy::decidePolicyForNavigationAction):
(WebKit::WebPageProxy::decidePolicyForNewWindowAction):
(WebKit::WebPageProxy::decidePolicyForResponseShared):

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::addWebUserContentControllerProxy):

  • UIProcess/WebProcessProxy.h:
  • WebKit.xcodeproj/project.pbxproj:
  • WebProcess/WebPage/WebPage.cpp:

(WebKit::m_processDisplayName):

  • WebProcess/WebProcess.cpp:

(WebKit::WebProcess::didReceiveMessage):

Tools:

  • TestWebKitAPI/SourcesCocoa.txt:
  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKitCocoa/ResourceLoadDelegate.mm:

(-[TestUIDelegate webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:]): Deleted.

  • TestWebKitAPI/Tests/WebKitCocoa/WebsitePolicies.mm:
  • TestWebKitAPI/cocoa/TestUIDelegate.h: Added.
  • TestWebKitAPI/cocoa/TestUIDelegate.mm: Added.

(-[TestUIDelegate webView:runJavaScriptAlertPanelWithMessage:initiatedByFrame:completionHandler:]):
(-[TestUIDelegate waitForAlert]):

1:08 PM Changeset in webkit [259306] by achristensen@apple.com
  • 2 edits in trunk/Source/WebKit

Remove call to PageConfiguration::setUserContentController added in r225765
https://bugs.webkit.org/show_bug.cgi?id=209828
<rdar://problem/61114052>

Reviewed by Brian Weinstein.

r225765 added a way for a certain Mac application to use WKWebViewConfiguration._pageGroup to set its WKUserContentController.
That Mac application has transitioned to setting the WKUserContentController manually, and this workaround needs to be removed
for that application's WKUserContentControllers to continue working as desired. I verified this fixes that application, and
it is the only user of WKWebViewConfiguration._pageGroup and all other applications will have no change in behavior.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _setupPageConfiguration:]):

12:56 PM Changeset in webkit [259305] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Invalid memory access @ WebCore::FrameLoader::dispatchDidCommitLoad
https://bugs.webkit.org/show_bug.cgi?id=209786

Patch by Pinki Gyanchandani <pgyanchandani@apple.com> on 2020-03-31
Reviewed by Ryosuke Niwa.

No new tests. Reduced test would be added later. Currently issue is verified with the original testcase in associated radar-58416328.

Webkit1 only issue, where m_client.dispatchDidCommitLoad in FrameLoader::dispatchDidCommitLoad could cause the frame
to be destroyed, and m_frame still being accessed outside. Changes made to protect the DocumentLoader and Frame.

  • loader/DocumentLoader.cpp:

(WebCore::DocumentLoader::finishedLoading):
(WebCore::DocumentLoader::handleSubstituteDataLoadNow):

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::receivedFirstData):

12:55 PM Changeset in webkit [259304] by Lauro Moura
  • 3 edits in trunk/Source/WebCore

Buildfix after r259928.

Replace outer function with its virtual implementation in
child class.

Unreviewed build fix.

  • workers/WorkerAnimationController.cpp:

(WebCore::WorkerAnimationController::virtualHasPendingActivity const):
(WebCore::WorkerAnimationController::hasPendingActivity const): Deleted.

  • workers/WorkerAnimationController.h:
12:40 PM Changeset in webkit [259303] by eric.carlson@apple.com
  • 16 edits in trunk/Source/WebCore

[iPad] Use AVAudioSession to detect AirPlay route changes
https://bugs.webkit.org/show_bug.cgi?id=209789
<rdar://problem/58065279>

Reviewed by Jer Noble.

Source/WebCore:

No new tests: changes only affect playback on device to an actual AirPlay device, which
is not testable on our current testing infrastructure.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::checkPlaybackTargetCompatablity): Drive-by fix: pass log identifier
into lambda so the method name is logged.
(WebCore::HTMLMediaElement::setIsPlayingToWirelessTarget): Ditto.
(WebCore::HTMLMediaElement::setWirelessPlaybackTarget): Update logging.
(WebCore::HTMLMediaElement::setShouldPlayToPlaybackTarget): Call setIsPlayingToWirelessTarget
so we kick off a media player compatibility check.

  • platform/audio/PlatformMediaSessionManager.h: Remove unused instance variables.
  • platform/audio/ios/MediaSessionHelperIOS.mm:

(MediaSessionHelperiOS::activeAudioRouteDidChange): Change parameter to bool as it is always
present.
(MediaSessionHelperiOS::activeVideoRouteDidChange): Remove parameters, use the new
MediaPlaybackTargetCocoa create method and ask it if the target supports AirPlay.
(-[WebMediaSessionHelper initWithCallback:]): Listen for AVAudioSessionRouteChangeNotification.
(-[WebMediaSessionHelper activeOutputDeviceDidChange:]): Update for new notification source.
(-[WebMediaSessionHelper activeAudioRouteDidChange:]): Deleted.

  • platform/audio/ios/MediaSessionManagerIOS.h:
  • platform/audio/ios/MediaSessionManagerIOS.mm:

(WebCore::MediaSessionManageriOS::sessionWillBeginPlayback): Set playback target on session
that is about to begin playback.
(WebCore::MediaSessionManageriOS::activeVideoRouteDidChange): Save the target and state.

  • platform/graphics/MediaPlaybackTarget.h:
  • platform/graphics/avfoundation/MediaPlaybackTargetCocoa.h:
  • platform/graphics/avfoundation/MediaPlaybackTargetCocoa.mm:

(WebCore::MediaPlaybackTargetCocoa::create): Create a target from the application's currently
active AVOutputContext.
(WebCore::MediaPlaybackTargetCocoa::supportsAirPlayVideo const): New.
(WebCore::MediaPlaybackTargetCocoa::hasActiveRoute const): Use new API if available instead
of just checking for the AVOutputContext name.

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

(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::setWirelessPlaybackTarget): Log.
(WebCore::MediaPlayerPrivateMediaSourceAVFObjC::setShouldPlayToPlaybackTarget):

  • platform/mock/MediaPlaybackTargetMock.h:

Source/WebCore/PAL:

  • pal/cocoa/AVFoundationSoftLink.h:
  • pal/cocoa/AVFoundationSoftLink.mm:
  • pal/spi/cocoa/AVFoundationSPI.h:
12:19 PM Changeset in webkit [259302] by jer.noble@apple.com
  • 5 edits in trunk

REGRESSION: [ Mac wk2 Release ] Flaky crash in WebCore::MediaPlayer::createVideoFullscreenLayer
https://bugs.webkit.org/show_bug.cgi?id=209668
<rdar://problem/60976297>

Reviewed by Darin Adler.

Source/WebCore:

Null check m_player and m_videoElement before calling createVideoFullscreenLayer().

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::createVideoFullscreenLayer):

  • platform/cocoa/VideoFullscreenModelVideoElement.mm:

(WebCore::VideoFullscreenModelVideoElement::createVideoFullscreenLayer):

LayoutTests:

  • platform/mac-wk2/TestExpectations:
11:22 AM Changeset in webkit [259301] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mac Debug ] ASSERTION FAILED: m_videoFullscreenMode on media/media-fullscreen-return-to-inline.html
https://bugs.webkit.org/show_bug.cgi?id=209823

Unreviewed test gardening.

  • platform/mac/TestExpectations:
10:40 AM Changeset in webkit [259300] by Brent Fulgham
  • 2 edits in trunk/Source/WebKit

[macOS] Add additional IPC permission needed by Security.framework
https://bugs.webkit.org/show_bug.cgi?id=209815
<rdar://problem/60892378>

Reviewed by Per Arne Vollan.

Add missing permission needed for recent macOS releases.

  • NetworkProcess/mac/com.apple.WebKit.NetworkProcess.sb.in:
10:39 AM Changeset in webkit [259299] by Chris Dumez
  • 7 edits in trunk/Source/WebCore

ASSERTION FAILED: m_wrapper on imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/ready-states/autoplay.html
https://bugs.webkit.org/show_bug.cgi?id=209684
<rdar://problem/60987285>

Reviewed by Darin Adler.

I have not been able to reproduce so this is a speculative fix. HTMLMediaElement::virtualHasPendingActivity()
was checking MainThreadGenericEventQueue::hasPendingEvents() but this would return false for a short amount
of time where we've removed the last event from the queue and before we've actually fired the event. To
address the issue, we now rely on MainThreadGenericEventQueue::hasPendingActivity() which keeps returning
true after we've dequeued the last event, until we've fired it.

No new tests, covered by imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/ready-states/autoplay.html.

  • Modules/mediasource/MediaSource.cpp:

(WebCore::MediaSource::virtualHasPendingActivity const):

  • Modules/mediasource/SourceBuffer.cpp:

(WebCore::SourceBuffer::virtualHasPendingActivity const):

  • dom/GenericEventQueue.cpp:

(WebCore::MainThreadGenericEventQueue::dispatchOneEvent):
(WebCore::MainThreadGenericEventQueue::hasPendingActivity const):
(WebCore::MainThreadGenericEventQueue::hasPendingEvents const): Deleted.

  • dom/GenericEventQueue.h:
  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::virtualHasPendingActivity const):

  • html/track/TrackListBase.cpp:

(WebCore::TrackListBase::virtualHasPendingActivity const):

10:35 AM Changeset in webkit [259298] by Chris Lord
  • 18 edits
    6 adds in trunk

requestAnimationFrame and cancelAnimationFrame should be present on DedicatedWorkerGlobalScope
https://bugs.webkit.org/show_bug.cgi?id=202525

Reviewed by Simon Fraser.

Source/WebCore:

Implement AnimationFrameProvider on DedicatedWorkerGlobalScope,
This allows use of requestAnimationFrame and cancelAnimationFrame
inside a dedicated worker thread. This is useful to control animation
when using OffscreenCanvas, and this implementation is only enabled
with the OffscreenCanvas build flag and runtime setting.
Specification: https://html.spec.whatwg.org/multipage/imagebitmap-and-animations.html#animation-frames

No new tests. Covered by existing tests.

  • Headers.cmake:
  • Sources.txt:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/WebCoreBuiltinNames.h:
  • dom/RequestAnimationFrameCallback.h:
  • workers/DedicatedWorkerGlobalScope.cpp:

(WebCore::DedicatedWorkerGlobalScope::requestAnimationFrame):
(WebCore::DedicatedWorkerGlobalScope::cancelAnimationFrame):

  • workers/DedicatedWorkerGlobalScope.h:
  • workers/DedicatedWorkerGlobalScope.idl:
  • workers/WorkerAnimationController.cpp: Added.
  • workers/WorkerAnimationController.h: Added.
  • workers/WorkerGlobalScope.cpp:

(WebCore::WorkerGlobalScope::WorkerGlobalScope):

  • workers/WorkerGlobalScope.h:

(WebCore::WorkerGlobalScope::requestAnimationFrameEnabled const):

  • workers/WorkerMessagingProxy.cpp:

(WebCore::WorkerMessagingProxy::startWorkerGlobalScope):

  • workers/WorkerThread.cpp:

(WebCore::WorkerParameters::isolatedCopy const):

  • workers/WorkerThread.h:
  • workers/service/context/ServiceWorkerThread.cpp:

(WebCore::ServiceWorkerThread::ServiceWorkerThread):

LayoutTests:

Add PASS expectations for DedicatedWorkerGlobalScope.AnimationFrameProvider on platforms where
OffscreenCanvas is enabled.

  • platform/gtk/imported/w3c/web-platform-tests/html/dom/idlharness.worker-expected.txt: Added.
  • platform/gtk/imported/w3c/web-platform-tests/workers/WorkerGlobalScope_requestAnimationFrame.tentative.worker-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/html/dom/idlharness.worker-expected.txt: Added.
  • platform/wpe/imported/w3c/web-platform-tests/workers/WorkerGlobalScope_requestAnimationFrame.tentative.worker-expected.txt: Added.
10:28 AM Changeset in webkit [259297] by pvollan@apple.com
  • 3 edits in trunk/Source/WebKit

Silence preference write sandbox violations in the WebContent process
https://bugs.webkit.org/show_bug.cgi?id=209806

Reviewed by Brent Fulgham.

When CFPrefs direct mode is enabled in the WebContent process, the UI process will notify the WebContent about preference changes.
When receiving these notifications, the WebContent process will use the CFPrefs API to update the value of these preferences
in-process, which will also attempt to write these values to disk. Writing the preference values to disk is unnecessary, and will
also be denied by the sandbox, so the sandbox violations should be silenced.

No new tests, no behavior change.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
  • WebProcess/com.apple.WebProcess.sb.in:
10:03 AM Changeset in webkit [259296] by Alan Bujtas
  • 16 edits
    2 adds in trunk

[Tables] Infinite recursion in RenderTreeBuilder::attach
https://bugs.webkit.org/show_bug.cgi?id=209771
<rdar://problem/59923112>

Reviewed by Simon Fraser.

Source/WebCore:

Let's construct a COLGROUP wrapper when a COL element is inserted into a <table>. The rest of the table code assumes such structure.
(https://www.w3.org/TR/html52/tabular-data.html#the-col-element)

Test: fast/table/anonymous-colgroup-simple.html

  • rendering/RenderTableCol.cpp:

(WebCore::RenderTableCol::RenderTableCol):
(WebCore::RenderTableCol::updateFromElement):

  • rendering/RenderTableCol.h:
  • rendering/updating/RenderTreeBuilderTable.cpp:

(WebCore::RenderTreeBuilder::Table::findOrCreateParentForChild):

LayoutTests:

  • fast/table/anonymous-colgroup-simple-expected.txt: Added.
  • fast/table/anonymous-colgroup-simple.html: Added.
9:52 AM Changeset in webkit [259295] by aakash_jain@apple.com
  • 3 edits in trunk/Tools

Delete code for security EWS from old EWS (follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=209683

Revert 233220.

Unreviewed follow-up fix.

  • Scripts/webkitpy/common/net/statusserver_mock.py:
  • Scripts/webkitpy/tool/commands/queues.py:
9:10 AM Changeset in webkit [259294] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

REGRESSION: [ iOS wk2 ] fast/forms/input-text-scroll-left-on-blur.html is flaky failing.
https://bugs.webkit.org/show_bug.cgi?id=209812

Unreviewed test gardening.

  • platform/ios-wk2/TestExpectations:
9:09 AM Changeset in webkit [259293] by Devin Rousso
  • 2 edits in trunk/Source/WebKit

REGRESSION: (r259236) [ iOS and Catalina wk2 Debug ] ASSERTION FAILED: m_debugLoggingEnabled in WebKit::ResourceLoadStatisticsStore::debugBroadcastConsoleMessage
https://bugs.webkit.org/show_bug.cgi?id=209810
<rdar://problem/61106971>

Unreviewed, covered by existing tests.

  • NetworkProcess/Classifier/ResourceLoadStatisticsStore.cpp:

(WebKit::ResourceLoadStatisticsStore::debugBroadcastConsoleMessage):
Remove the assertion since debugBroadcastConsoleMessage is also called when turning off
debug logging mode via setResourceLoadStatisticsDebugMode. Fundamentally, it's just a
wrapper function for broadcastConsoleMessage anyways, so it doesn't need to be gated.

8:40 AM Changeset in webkit [259292] by Ryan Haddad
  • 2 edits in trunk/LayoutTests

Flaky Test: media/track/track-in-band-metadata-display-order.html
https://bugs.webkit.org/show_bug.cgi?id=206226

Unreviewed test gardening.

  • platform/mac-wk1/TestExpectations: Mark test as flaky.
8:13 AM Changeset in webkit [259291] by Diego Pino Garcia
  • 1 edit
    15 adds in trunk/LayoutTests

[WPE] Gardening, add missing expectation files
https://bugs.webkit.org/show_bug.cgi?id=209807

Unreviewed gardening.

  • platform/wpe/fast/css/vertical-text-overflow-ellipsis-text-align-center-mixed-expected.txt: Added.
  • platform/wpe/fast/css/vertical-text-overflow-ellipsis-text-align-justify-mixed-expected.txt: Added.
  • platform/wpe/fast/css/vertical-text-overflow-ellipsis-text-align-left-mixed-expected.txt: Added.
  • platform/wpe/fast/css/vertical-text-overflow-ellipsis-text-align-right-mixed-expected.txt: Added.
  • platform/wpe/fast/html/details-marker-style-mixed-expected.txt: Added.
  • platform/wpe/fast/html/details-writing-mode-mixed-expected.txt: Added.
  • platform/wpe/fast/multicol/tall-image-behavior-lr-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/background-vertical-lr-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/background-vertical-rl-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/basic-vertical-line-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/border-styles-vertical-lr-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/border-styles-vertical-rl-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/vertical-baseline-alignment-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/vertical-lr-replaced-selection-mixed-expected.txt: Added.
  • platform/wpe/fast/writing-mode/vertical-rl-replaced-selection-mixed-expected.txt: Added.
8:01 AM Changeset in webkit [259290] by youenn@apple.com
  • 5 edits in trunk

Fix SDP filtering after https://trac.webkit.org/changeset/258545
https://bugs.webkit.org/show_bug.cgi?id=209799

Reviewed by Eric Carlson.

Source/WebCore:

Covered by updated test.

  • Modules/mediastream/PeerConnectionBackend.cpp:

(WebCore::PeerConnectionBackend::filterSDP const):
Do not return early in case of filtering of mDNS candidate inlined in SDP description.

LayoutTests:

  • webrtc/datachannel/mdns-ice-candidates-expected.txt:
  • webrtc/datachannel/mdns-ice-candidates.html:
7:53 AM Changeset in webkit [259289] by youenn@apple.com
  • 2 edits in trunk/Source/WebCore

Ensure that RealtimeMediaSource::setShouldApplyRotation is called on the main thread
https://bugs.webkit.org/show_bug.cgi?id=209797

Reviewed by Eric Carlson.

Hop to the main thread before calling setShouldApplyRotation on the source.

  • platform/mediastream/RealtimeOutgoingVideoSource.cpp:

(WebCore::RealtimeOutgoingVideoSource::setSource):
(WebCore::RealtimeOutgoingVideoSource::applyRotation):

7:52 AM Changeset in webkit [259288] by Andres Gonzalez
  • 5 edits in trunk/Source/WebCore

The relative frame and hit test of isolated objects must be dispatched to the main thread.
https://bugs.webkit.org/show_bug.cgi?id=209792

Reviewed by Chris Fleizach.

The relative frame of isolated objects must be calculated on the main
thread because it requires the scroll ancestor to convert to the
appropriate scroll offset. The relative frame cannot be cached because
the scroll offset can change.
Accordingly, the hit test cannot rely on a cached relative frame and
must be dispatched to be computed on the main thread as well.

  • accessibility/AXObjectCache.h:
  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::initializeAttributeData): Do not cache the relative frame any longer.
(WebCore::AXIsolatedObject::accessibilityHitTest const): Dispatched to the main thread.
(WebCore::AXIsolatedObject::relativeFrame const): Dispatched to the main thread.

  • accessibility/isolatedtree/AXIsolatedObject.h:
  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper position]):
(-[WebAccessibilityObjectWrapper accessibilityAttributeValue:]):
(-[WebAccessibilityObjectWrapper accessibilityHitTest:]):

7:20 AM Changeset in webkit [259287] by Pablo Saavedra
  • 2 edits in trunk/Source/WebKit

Several refactorings done in the MemoryPressureMonitor.cpp
https://bugs.webkit.org/show_bug.cgi?id=209464

Reviewed by Adrian Perez de Castro.

1) toIntegralType() parses the C-string str interpreting its content
as an unsigned long long int which is more appropriate for
the size_t (unsigned integer type) variables used by the
MemoryPressureMonitor functions in counterpoint of atoll() what
returns a long long int.

This change also controls if the parsing was succesful. In negative
case returns notSet.

2) Added the getCgroupFileValue() function what encapsulates the
manipulation of the opened files in the /sys/fs/cgroup hierarchy.
This change simplify the code avoding unnecessary code repetion.

3) getCgroupControllerPath() now checks if there is a name=systemd
controller listed in the /proc/self/cgroup. This important for
cgroup v2 activated with systemd.unified_cgroup_hierarchy=yes
through the Linux kernel cmdline. The unified hierarchy simplies
path of the controllers under the same directory (check the
"Deprecated v1 Core Features" section in the Linux Kernel
documentation fir cgroup v2 [1]):

Multiple hierarchies including named ones are not supported

[1] https://www.kernel.org/doc/Documentation/cgroup-v2.txt

4) Because 3) the patch composited for cgroupV2 changes
getMemoryUsageWithCgroup() slightly. The name of the controller
is not needed anymore.

5) For cgroup v2, the MemoryTotal is calculated as the minimum
between memory.high and memory.max.

  • UIProcess/linux/MemoryPressureMonitor.cpp:

(WebKit::lowWatermarkPages):
(WebKit::getCgroupFileValue):
(WebKit::getMemoryTotalWithCgroup):
(WebKit::getMemoryUsageWithCgroup):
(WebKit::getCgroupControllerPath):
(WebKit::systemMemoryUsedAsPercentage):
(WebKit::getCgroupController): Deleted.

7:13 AM Changeset in webkit [259286] by Antti Koivisto
  • 3 edits
    2 adds in trunk

Nullptr crash in InlineTextBox::emphasisMarkExistsAndIsAbove
https://bugs.webkit.org/show_bug.cgi?id=207034

Reviewed by Zalan Bujtas.

Source/WebCore:

The repro case was fixed in https://bugs.webkit.org/show_bug.cgi?id=209695.

Test: editing/selection/selection-update-during-anonymous-inline-teardown.html

  • rendering/InlineTextBox.cpp:

(WebCore::InlineTextBox::emphasisMarkExistsAndIsAbove const):

Also add a null check to be sure.

LayoutTests:

  • editing/selection/selection-update-during-anonymous-inline-teardown-expected.txt: Added.
  • editing/selection/selection-update-during-anonymous-inline-teardown.html: Added.
5:58 AM Changeset in webkit [259285] by Diego Pino Garcia
  • 2 edits
    2 adds in trunk/LayoutTests

[GTK] Gardening, update TestExpectations and add baseline
https://bugs.webkit.org/show_bug.cgi?id=209803

Unreviewed gardening.

  • platform/gtk/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/css/selectors/focus-visible-009-expected.txt: Added.
2:38 AM Changeset in webkit [259284] by zandobersek@gmail.com
  • 16 edits in trunk/Source

[GTK][WPE] Jumpy rendering of fixed-element layers while scrolling
https://bugs.webkit.org/show_bug.cgi?id=209466

Reviewed by Carlos Garcia Campos.

Source/WebCore:

Avoid intermittent state application that can occur when asynchronous
scrolling is done on the dedicated thread while the general scene update
is being done in parallel on the composition thread, leading to partial
scrolling updates that visually present themselves as e.g. fixed
elements "jumping" around the view.

Instead of the staging state of a given Nicosia::CompositionLayer, the
scrolling nodes now update the base state with the given scrolling
change. At the end of the update, inside the UpdateScope descructor,
the updated states inside the scene are flushed into the staging phase
before they are adopted by the composition thread.

  • page/scrolling/nicosia/ScrollingTreeFixedNode.cpp:

(WebCore::ScrollingTreeFixedNode::applyLayerPositions):

  • page/scrolling/nicosia/ScrollingTreeFrameScrollingNodeNicosia.cpp:

(WebCore::ScrollingTreeFrameScrollingNodeNicosia::repositionScrollingLayers):
(WebCore::ScrollingTreeFrameScrollingNodeNicosia::repositionRelatedLayers):

  • page/scrolling/nicosia/ScrollingTreeOverflowScrollProxyNode.cpp:

(WebCore::ScrollingTreeOverflowScrollProxyNode::applyLayerPositions):

  • page/scrolling/nicosia/ScrollingTreeOverflowScrollingNodeNicosia.cpp:

(WebCore::ScrollingTreeOverflowScrollingNodeNicosia::repositionScrollingLayers):

  • page/scrolling/nicosia/ScrollingTreePositionedNode.cpp:

(WebCore::ScrollingTreePositionedNode::applyLayerPositions):

  • page/scrolling/nicosia/ScrollingTreeStickyNode.cpp:

(WebCore::ScrollingTreeStickyNode::applyLayerPositions):

  • platform/graphics/nicosia/NicosiaPlatformLayer.h:

(Nicosia::CompositionLayer::accessStaging): Deleted.

  • platform/graphics/nicosia/NicosiaSceneIntegration.cpp:

(Nicosia::SceneIntegration::SceneIntegration):
(Nicosia::SceneIntegration::invalidate):
(Nicosia::SceneIntegration::UpdateScope::~UpdateScope):

  • platform/graphics/nicosia/NicosiaSceneIntegration.h:

(Nicosia::SceneIntegration::create):

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:

(WebCore::CoordinatedGraphicsLayer::syncPosition):
Don't signal the related attribute delta flag since this change is now
strictly applied by the scrolling thread.
(WebCore::CoordinatedGraphicsLayer::syncBoundsOrigin): Ditto.

Source/WebKit:

Move the Nicosia::SceneIntegration ownership into the
CompositingCoordinator class, along with the SceneIntegration::Client
inheritance. LayerTreeHost in turn now implements the updateScene()
method that triggers a scene update when invoked.

  • WebProcess/WebPage/CoordinatedGraphics/CompositingCoordinator.cpp:

(WebKit::CompositingCoordinator::CompositingCoordinator):
(WebKit::CompositingCoordinator::invalidate):
(WebKit::CompositingCoordinator::attachLayer):
(WebKit::CompositingCoordinator::requestUpdate):

  • WebProcess/WebPage/CoordinatedGraphics/CompositingCoordinator.h:
  • WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.cpp:

(WebKit::LayerTreeHost::LayerTreeHost):
(WebKit::LayerTreeHost::~LayerTreeHost):
(WebKit::LayerTreeHost::updateScene):
(WebKit::LayerTreeHost::sceneIntegration): Deleted.
(WebKit::LayerTreeHost::requestUpdate): Deleted.

  • WebProcess/WebPage/CoordinatedGraphics/LayerTreeHost.h:
2:10 AM Changeset in webkit [259283] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit

REGRESSION(r258829): [CoordinatedGraphics] Web view not updated after cross site navigation with PSON enabled
https://bugs.webkit.org/show_bug.cgi?id=209741

Reviewed by Žan Doberšek.

Since r258829, the drawing area proxy of a provisional page ignores all messages until the load is
committed. This is causing 2 problems for coordinated graphics drawing area. When not in accelerated compositing
mode, Update message is sent before the commit is loaded, and the web process keeps waiting for the DidUpdate
response message forever. When accelerated compositing mode is forced, the EnterAcceleratedCompositing message
is also sent before the load is committed and ignored, so the UI process doesn't know it's in accelerated mode.

  • WebProcess/WebPage/CoordinatedGraphics/DrawingAreaCoordinatedGraphics.cpp:

(WebKit::DrawingAreaCoordinatedGraphics::scheduleRenderingUpdate): Return early if layer tree is frozen. This
ensures that Update messages are not sent to the UI process while layer tree is frozen.
(WebKit::DrawingAreaCoordinatedGraphics::enterAcceleratedCompositingMode): Disable layer flush on the newly
created LayerTreeHost if layer tree is frozen. This ensures that EnterAcceleratedCompositing message is sent
after the first layer flush once the layer tree is no longer frozen.

Mar 30, 2020:

11:19 PM Changeset in webkit [259282] by Simon Fraser
  • 5 edits in trunk/Source/WebCore

Scroll latching state is not a stack
https://bugs.webkit.org/show_bug.cgi?id=209790

Reviewed by Zalan Bujtas.

No-one ever called Page::popLatchingState(), so the fact that latchingState on Page
was a stack was never important. Just make it a single state.

  • page/Page.cpp:

(WebCore::Page::latchingState):
(WebCore::Page::setLatchingState):
(WebCore::Page::resetLatchingState):
(WebCore::Page::removeLatchingStateForTarget):
(WebCore::Page::pushNewLatchingState): Deleted.
(WebCore::Page::popLatchingState): Deleted.

  • page/Page.h:

(WebCore::Page::latchingStateStack const): Deleted.

  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::platformPrepareForWheelEvents):

  • page/scrolling/ScrollLatchingState.h:
10:59 PM Changeset in webkit [259281] by Antti Koivisto
  • 5 edits
    54 deletes in trunk/LayoutTests

Delete css-modsel-* tests under css3/ and fast/
https://bugs.webkit.org/show_bug.cgi?id=209731

Reviewed by Antoine Quint.

Updated WPT reftest versions of these old tests exist under imported/w3c/web-platform-tests/css/selectors/old-tests.
Remove the obsolete (and sometimes flaky) render tree dump versions.

  • css3/css3-modsel-33.html: Removed.
  • css3/css3-modsel-35.html: Removed.
  • css3/css3-modsel-36.html: Removed.
  • css3/css3-modsel-37.html: Removed.
  • css3/selectors3/html/css3-modsel-1.html: Removed.
  • css3/selectors3/html/css3-modsel-10.html: Removed.
  • css3/selectors3/html/css3-modsel-11.html: Removed.
  • css3/selectors3/html/css3-modsel-13.html: Removed.
  • css3/selectors3/html/css3-modsel-14.html: Removed.
  • css3/selectors3/html/css3-modsel-144.html: Removed.
  • css3/selectors3/html/css3-modsel-148.html: Removed.
  • css3/selectors3/html/css3-modsel-149.html: Removed.
  • css3/selectors3/html/css3-modsel-149b.html: Removed.
  • css3/selectors3/html/css3-modsel-14b.html: Removed.
  • css3/selectors3/html/css3-modsel-14c.html: Removed.
  • css3/selectors3/html/css3-modsel-14d.html: Removed.
  • css3/selectors3/html/css3-modsel-14e.html: Removed.
  • css3/selectors3/html/css3-modsel-15.html: Removed.
  • css3/selectors3/html/css3-modsel-150.html: Removed.
  • css3/selectors3/html/css3-modsel-151.html: Removed.
  • css3/selectors3/html/css3-modsel-152.html: Removed.
  • css3/selectors3/html/css3-modsel-154.html: Removed.
  • css3/selectors3/html/css3-modsel-155.html: Removed.
  • css3/selectors3/html/css3-modsel-155a.html: Removed.
  • css3/selectors3/html/css3-modsel-155b.html: Removed.
  • css3/selectors3/html/css3-modsel-155c.html: Removed.
  • css3/selectors3/html/css3-modsel-155d.html: Removed.
  • css3/selectors3/html/css3-modsel-156.html: Removed.
  • css3/selectors3/html/css3-modsel-156b.html: Removed.
  • css3/selectors3/html/css3-modsel-156c.html: Removed.
  • css3/selectors3/html/css3-modsel-157.html: Removed.
  • css3/selectors3/html/css3-modsel-158.html: Removed.
  • css3/selectors3/html/css3-modsel-159.html: Removed.
  • css3/selectors3/html/css3-modsel-15b.html: Removed.
  • css3/selectors3/html/css3-modsel-16.html: Removed.
  • css3/selectors3/html/css3-modsel-160.html: Removed.
  • css3/selectors3/html/css3-modsel-161.html: Removed.
  • css3/selectors3/html/css3-modsel-166.html: Removed.
  • css3/selectors3/html/css3-modsel-166a.html: Removed.
  • css3/selectors3/html/css3-modsel-167.html: Removed.
  • css3/selectors3/html/css3-modsel-167a.html: Removed.
  • css3/selectors3/html/css3-modsel-168.html: Removed.
  • css3/selectors3/html/css3-modsel-168a.html: Removed.
  • css3/selectors3/html/css3-modsel-169.html: Removed.
  • css3/selectors3/html/css3-modsel-169a.html: Removed.
  • css3/selectors3/html/css3-modsel-17-expected.png: Removed.
  • css3/selectors3/html/css3-modsel-17.html: Removed.
  • css3/selectors3/html/css3-modsel-170.html: Removed.
  • css3/selectors3/html/css3-modsel-170a.html: Removed.
  • css3/selectors3/html/css3-modsel-170b.html: Removed.
  • css3/selectors3/html/css3-modsel-170c.html: Removed.
  • css3/selectors3/html/css3-modsel-170d.html: Removed.
  • css3/selectors3/html/css3-modsel-175a.html: Removed.
  • css3/selectors3/html/css3-modsel-175b.html: Removed.
  • css3/selectors3/html/css3-modsel-175c.html: Removed.
  • css3/selectors3/html/css3-modsel-176.html: Removed.
  • css3/selectors3/html/css3-modsel-177a-expected.png: Removed.
  • css3/selectors3/html/css3-modsel-177a.html: Removed.
  • css3/selectors3/html/css3-modsel-177b.html: Removed.
  • css3/selectors3/html/css3-modsel-178.html: Removed.
  • css3/selectors3/html/css3-modsel-179.html: Removed.
  • css3/selectors3/html/css3-modsel-179a.html: Removed.
  • css3/selectors3/html/css3-modsel-18.html: Removed.
  • css3/selectors3/html/css3-modsel-180a.html: Removed.
  • css3/selectors3/html/css3-modsel-181.html: Removed.
  • css3/selectors3/html/css3-modsel-183.html: Removed.
  • css3/selectors3/html/css3-modsel-184a.html: Removed.
  • css3/selectors3/html/css3-modsel-184b.html: Removed.
  • css3/selectors3/html/css3-modsel-184c.html: Removed.
  • css3/selectors3/html/css3-modsel-184d.html: Removed.
  • css3/selectors3/html/css3-modsel-184e.html: Removed.
  • css3/selectors3/html/css3-modsel-184f.html: Removed.
  • css3/selectors3/html/css3-modsel-18a.html: Removed.
  • css3/selectors3/html/css3-modsel-18b.html: Removed.
  • css3/selectors3/html/css3-modsel-18c-expected.png: Removed.
  • css3/selectors3/html/css3-modsel-18c.html: Removed.
  • css3/selectors3/html/css3-modsel-19.html: Removed.
  • css3/selectors3/html/css3-modsel-19b.html: Removed.
  • css3/selectors3/html/css3-modsel-2.html: Removed.
  • css3/selectors3/html/css3-modsel-20.html: Removed.
  • css3/selectors3/html/css3-modsel-21.html: Removed.
  • css3/selectors3/html/css3-modsel-21b.html: Removed.
  • css3/selectors3/html/css3-modsel-21c.html: Removed.
  • css3/selectors3/html/css3-modsel-22.html: Removed.
  • css3/selectors3/html/css3-modsel-23.html: Removed.
  • css3/selectors3/html/css3-modsel-24.html: Removed.
  • css3/selectors3/html/css3-modsel-25.html: Removed.
  • css3/selectors3/html/css3-modsel-27.html: Removed.
  • css3/selectors3/html/css3-modsel-27a-expected.png: Removed.
  • css3/selectors3/html/css3-modsel-27a.html: Removed.
  • css3/selectors3/html/css3-modsel-27b-expected.png: Removed.
  • css3/selectors3/html/css3-modsel-27b.html: Removed.
  • css3/selectors3/html/css3-modsel-28.html: Removed.
  • css3/selectors3/html/css3-modsel-28b.html: Removed.
  • css3/selectors3/html/css3-modsel-29.html: Removed.
  • css3/selectors3/html/css3-modsel-29b.html: Removed.
  • css3/selectors3/html/css3-modsel-30.html: Removed.
  • css3/selectors3/html/css3-modsel-31.html: Removed.
  • css3/selectors3/html/css3-modsel-32.html: Removed.
  • css3/selectors3/html/css3-modsel-33.html: Removed.
  • css3/selectors3/html/css3-modsel-34.html: Removed.
  • css3/selectors3/html/css3-modsel-35.html: Removed.
  • css3/selectors3/html/css3-modsel-36.html: Removed.
  • css3/selectors3/html/css3-modsel-37.html: Removed.
  • css3/selectors3/html/css3-modsel-38.html: Removed.
  • css3/selectors3/html/css3-modsel-39.html: Removed.
  • css3/selectors3/html/css3-modsel-39a.html: Removed.
  • css3/selectors3/html/css3-modsel-39b.html: Removed.
  • css3/selectors3/html/css3-modsel-39c.html: Removed.
  • css3/selectors3/html/css3-modsel-3a.html: Removed.
  • css3/selectors3/html/css3-modsel-4.html: Removed.
  • css3/selectors3/html/css3-modsel-41.html: Removed.
  • css3/selectors3/html/css3-modsel-41a.html: Removed.
  • css3/selectors3/html/css3-modsel-42.html: Removed.
  • css3/selectors3/html/css3-modsel-42a.html: Removed.
  • css3/selectors3/html/css3-modsel-43.html: Removed.
  • css3/selectors3/html/css3-modsel-43b.html: Removed.
  • css3/selectors3/html/css3-modsel-44.html: Removed.
  • css3/selectors3/html/css3-modsel-44b.html: Removed.
  • css3/selectors3/html/css3-modsel-44c.html: Removed.
  • css3/selectors3/html/css3-modsel-44d.html: Removed.
  • css3/selectors3/html/css3-modsel-45.html: Removed.
  • css3/selectors3/html/css3-modsel-45b.html: Removed.
  • css3/selectors3/html/css3-modsel-45c.html: Removed.
  • css3/selectors3/html/css3-modsel-46.html: Removed.
  • css3/selectors3/html/css3-modsel-46b.html: Removed.
  • css3/selectors3/html/css3-modsel-5.html: Removed.
  • css3/selectors3/html/css3-modsel-54.html: Removed.
  • css3/selectors3/html/css3-modsel-55.html: Removed.
  • css3/selectors3/html/css3-modsel-56.html: Removed.
  • css3/selectors3/html/css3-modsel-59.html: Removed.
  • css3/selectors3/html/css3-modsel-6.html: Removed.
  • css3/selectors3/html/css3-modsel-60.html: Removed.
  • css3/selectors3/html/css3-modsel-61-expected.png: Removed.
  • css3/selectors3/html/css3-modsel-61.html: Removed.
  • css3/selectors3/html/css3-modsel-62.html: Removed.
  • css3/selectors3/html/css3-modsel-63.html: Removed.
  • css3/selectors3/html/css3-modsel-64.html: Removed.
  • css3/selectors3/html/css3-modsel-65.html: Removed.
  • css3/selectors3/html/css3-modsel-66.html: Removed.
  • css3/selectors3/html/css3-modsel-66b.html: Removed.
  • css3/selectors3/html/css3-modsel-67.html: Removed.
  • css3/selectors3/html/css3-modsel-68.html: Removed.
  • css3/selectors3/html/css3-modsel-69.html: Removed.
  • css3/selectors3/html/css3-modsel-7.html: Removed.
  • css3/selectors3/html/css3-modsel-70.html: Removed.
  • css3/selectors3/html/css3-modsel-72.html: Removed.
  • css3/selectors3/html/css3-modsel-72b.html: Removed.
  • css3/selectors3/html/css3-modsel-73.html: Removed.
  • css3/selectors3/html/css3-modsel-73b.html: Removed.
  • css3/selectors3/html/css3-modsel-74.html: Removed.
  • css3/selectors3/html/css3-modsel-74b.html: Removed.
  • css3/selectors3/html/css3-modsel-75.html: Removed.
  • css3/selectors3/html/css3-modsel-75b.html: Removed.
  • css3/selectors3/html/css3-modsel-76.html: Removed.
  • css3/selectors3/html/css3-modsel-76b.html: Removed.
  • css3/selectors3/html/css3-modsel-77.html: Removed.
  • css3/selectors3/html/css3-modsel-77b.html: Removed.
  • css3/selectors3/html/css3-modsel-78.html: Removed.
  • css3/selectors3/html/css3-modsel-78b.html: Removed.
  • css3/selectors3/html/css3-modsel-79.html: Removed.
  • css3/selectors3/html/css3-modsel-7b.html: Removed.
  • css3/selectors3/html/css3-modsel-8.html: Removed.
  • css3/selectors3/html/css3-modsel-80.html: Removed.
  • css3/selectors3/html/css3-modsel-81.html: Removed.
  • css3/selectors3/html/css3-modsel-81b.html: Removed.
  • css3/selectors3/html/css3-modsel-82.html: Removed.
  • css3/selectors3/html/css3-modsel-82b.html: Removed.
  • css3/selectors3/html/css3-modsel-83.html: Removed.
  • css3/selectors3/html/css3-modsel-86.html: Removed.
  • css3/selectors3/html/css3-modsel-87.html: Removed.
  • css3/selectors3/html/css3-modsel-87b.html: Removed.
  • css3/selectors3/html/css3-modsel-88.html: Removed.
  • css3/selectors3/html/css3-modsel-88b.html: Removed.
  • css3/selectors3/html/css3-modsel-89.html: Removed.
  • css3/selectors3/html/css3-modsel-9.html: Removed.
  • css3/selectors3/html/css3-modsel-90.html: Removed.
  • css3/selectors3/html/css3-modsel-90b.html: Removed.
  • css3/selectors3/html/css3-modsel-d1.html: Removed.
  • css3/selectors3/html/css3-modsel-d1b.html: Removed.
  • css3/selectors3/html/css3-modsel-d2.html: Removed.
  • css3/selectors3/html/css3-modsel-d4.html: Removed.
  • css3/selectors3/xhtml/css3-modsel-1.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-10.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-100.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-100b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-101.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-101b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-102.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-102b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-103.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-103b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-104.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-104b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-105.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-105b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-106.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-106b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-107.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-107b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-108.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-108b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-109.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-109b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-11.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-110.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-110b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-111.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-111b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-112.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-112b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-113.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-113b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-114.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-114b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-115.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-115b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-116.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-116b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-117.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-117b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-118.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-119.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-120.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-121.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-122.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-123.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-123b-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-123b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-124.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-124b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-125.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-125b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-126.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-126b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-127.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-127b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-128.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-128b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-129.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-129b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-13.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-130.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-130b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-131.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-131b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-132.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-132b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-133.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-133b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-134.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-134b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-135.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-135b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-136.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-136b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-137.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-137b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-138.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-138b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-139.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-139b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-14.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-140.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-140b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-141.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-141b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-142.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-142b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-143.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-143b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-144.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-145a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-145b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-146a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-146b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-147a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-147b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-148.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-149.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-149b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-14b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-14c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-14d.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-14e.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-15.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-150.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-151.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-152.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-153.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-154.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-155.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-155a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-155b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-155c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-155d.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-156.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-156b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-156c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-157.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-158.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-159.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-15b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-15c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-16.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-160.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-161.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-166.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-166a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-167.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-167a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-168.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-168a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-169.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-169a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-17-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-17.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-170.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-170a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-170b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-170c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-170d.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-171.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-172a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-172b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-173a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-173b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-174a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-174b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-175a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-175b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-175c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-176.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-177a-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-177a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-177b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-178.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-179.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-179a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-18.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-180a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-181.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-182.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-183.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-184a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-184b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-184c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-184d.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-184e.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-184f.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-18a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-18b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-18c-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-18c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-19.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-19b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-2.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-20.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-21.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-21b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-21c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-22.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-23.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-24.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-25.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-27.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-27a-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-27a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-27b-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-27b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-28.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-28b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-29.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-29b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-3.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-30.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-31.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-32.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-33.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-34.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-35.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-36.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-37.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-38.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-39.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-39a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-39b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-39c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-3a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-4.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-41.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-41a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-42.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-42a.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-43.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-43b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-44.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-44b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-44c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-44d.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-45.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-45b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-45c.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-46.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-46b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-47.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-48.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-49.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-5.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-50.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-51.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-52.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-53.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-54.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-55.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-56.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-57.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-57b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-59.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-6.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-60.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-61-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-61.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-62.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-63.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-64.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-65.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-66.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-66b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-67.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-68.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-69.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-7.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-70.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-72.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-72b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-73.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-73b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-74.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-74b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-75.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-75b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-76.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-76b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-77.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-77b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-78.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-78b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-79.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-7b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-8.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-80.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-81.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-81b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-82.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-82b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-83.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-86.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-87.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-87b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-88.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-88b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-89.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-9.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-90.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-90b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-91-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-91.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-92-expected.png: Removed.
  • css3/selectors3/xhtml/css3-modsel-92.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-93.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-94.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-94b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-95.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-96.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-96b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-97.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-97b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-98.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-98b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-99.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-99b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-d1.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-d1b.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-d2.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-d3.xml: Removed.
  • css3/selectors3/xhtml/css3-modsel-d4.xml: Removed.
  • css3/selectors3/xml/css3-modsel-1.css: Removed.
  • css3/selectors3/xml/css3-modsel-1.xml: Removed.
  • css3/selectors3/xml/css3-modsel-10.css: Removed.
  • css3/selectors3/xml/css3-modsel-10.xml: Removed.
  • css3/selectors3/xml/css3-modsel-100.css: Removed.
  • css3/selectors3/xml/css3-modsel-100.xml: Removed.
  • css3/selectors3/xml/css3-modsel-100b.css: Removed.
  • css3/selectors3/xml/css3-modsel-100b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-101.css: Removed.
  • css3/selectors3/xml/css3-modsel-101.xml: Removed.
  • css3/selectors3/xml/css3-modsel-101b.css: Removed.
  • css3/selectors3/xml/css3-modsel-101b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-102.css: Removed.
  • css3/selectors3/xml/css3-modsel-102.xml: Removed.
  • css3/selectors3/xml/css3-modsel-102b.css: Removed.
  • css3/selectors3/xml/css3-modsel-102b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-103.css: Removed.
  • css3/selectors3/xml/css3-modsel-103.xml: Removed.
  • css3/selectors3/xml/css3-modsel-103b.css: Removed.
  • css3/selectors3/xml/css3-modsel-103b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-104.css: Removed.
  • css3/selectors3/xml/css3-modsel-104.xml: Removed.
  • css3/selectors3/xml/css3-modsel-104b.css: Removed.
  • css3/selectors3/xml/css3-modsel-104b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-105.css: Removed.
  • css3/selectors3/xml/css3-modsel-105.xml: Removed.
  • css3/selectors3/xml/css3-modsel-105b.css: Removed.
  • css3/selectors3/xml/css3-modsel-105b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-106.css: Removed.
  • css3/selectors3/xml/css3-modsel-106.xml: Removed.
  • css3/selectors3/xml/css3-modsel-106b.css: Removed.
  • css3/selectors3/xml/css3-modsel-106b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-107.css: Removed.
  • css3/selectors3/xml/css3-modsel-107.xml: Removed.
  • css3/selectors3/xml/css3-modsel-107b.css: Removed.
  • css3/selectors3/xml/css3-modsel-107b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-108.css: Removed.
  • css3/selectors3/xml/css3-modsel-108.xml: Removed.
  • css3/selectors3/xml/css3-modsel-108b.css: Removed.
  • css3/selectors3/xml/css3-modsel-108b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-109.css: Removed.
  • css3/selectors3/xml/css3-modsel-109.xml: Removed.
  • css3/selectors3/xml/css3-modsel-109b.css: Removed.
  • css3/selectors3/xml/css3-modsel-109b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-11.css: Removed.
  • css3/selectors3/xml/css3-modsel-11.xml: Removed.
  • css3/selectors3/xml/css3-modsel-110.css: Removed.
  • css3/selectors3/xml/css3-modsel-110.xml: Removed.
  • css3/selectors3/xml/css3-modsel-110b.css: Removed.
  • css3/selectors3/xml/css3-modsel-110b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-111.css: Removed.
  • css3/selectors3/xml/css3-modsel-111.xml: Removed.
  • css3/selectors3/xml/css3-modsel-111b.css: Removed.
  • css3/selectors3/xml/css3-modsel-111b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-112.css: Removed.
  • css3/selectors3/xml/css3-modsel-112.xml: Removed.
  • css3/selectors3/xml/css3-modsel-112b.css: Removed.
  • css3/selectors3/xml/css3-modsel-112b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-113.css: Removed.
  • css3/selectors3/xml/css3-modsel-113.xml: Removed.
  • css3/selectors3/xml/css3-modsel-113b.css: Removed.
  • css3/selectors3/xml/css3-modsel-113b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-114.css: Removed.
  • css3/selectors3/xml/css3-modsel-114.xml: Removed.
  • css3/selectors3/xml/css3-modsel-114b.css: Removed.
  • css3/selectors3/xml/css3-modsel-114b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-115.css: Removed.
  • css3/selectors3/xml/css3-modsel-115.xml: Removed.
  • css3/selectors3/xml/css3-modsel-115b.css: Removed.
  • css3/selectors3/xml/css3-modsel-115b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-116.css: Removed.
  • css3/selectors3/xml/css3-modsel-116.xml: Removed.
  • css3/selectors3/xml/css3-modsel-116b.css: Removed.
  • css3/selectors3/xml/css3-modsel-116b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-117.css: Removed.
  • css3/selectors3/xml/css3-modsel-117.xml: Removed.
  • css3/selectors3/xml/css3-modsel-117b.css: Removed.
  • css3/selectors3/xml/css3-modsel-117b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-118.css: Removed.
  • css3/selectors3/xml/css3-modsel-118.xml: Removed.
  • css3/selectors3/xml/css3-modsel-119.css: Removed.
  • css3/selectors3/xml/css3-modsel-119.xml: Removed.
  • css3/selectors3/xml/css3-modsel-120.css: Removed.
  • css3/selectors3/xml/css3-modsel-120.xml: Removed.
  • css3/selectors3/xml/css3-modsel-121.css: Removed.
  • css3/selectors3/xml/css3-modsel-121.xml: Removed.
  • css3/selectors3/xml/css3-modsel-122.css: Removed.
  • css3/selectors3/xml/css3-modsel-122.xml: Removed.
  • css3/selectors3/xml/css3-modsel-123.css: Removed.
  • css3/selectors3/xml/css3-modsel-123.xml: Removed.
  • css3/selectors3/xml/css3-modsel-123b-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-123b.css: Removed.
  • css3/selectors3/xml/css3-modsel-123b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-124.css: Removed.
  • css3/selectors3/xml/css3-modsel-124.xml: Removed.
  • css3/selectors3/xml/css3-modsel-124b.css: Removed.
  • css3/selectors3/xml/css3-modsel-124b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-125.css: Removed.
  • css3/selectors3/xml/css3-modsel-125.xml: Removed.
  • css3/selectors3/xml/css3-modsel-125b.css: Removed.
  • css3/selectors3/xml/css3-modsel-125b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-126.css: Removed.
  • css3/selectors3/xml/css3-modsel-126.xml: Removed.
  • css3/selectors3/xml/css3-modsel-126b.css: Removed.
  • css3/selectors3/xml/css3-modsel-126b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-127.css: Removed.
  • css3/selectors3/xml/css3-modsel-127.xml: Removed.
  • css3/selectors3/xml/css3-modsel-127b.css: Removed.
  • css3/selectors3/xml/css3-modsel-127b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-128.css: Removed.
  • css3/selectors3/xml/css3-modsel-128.xml: Removed.
  • css3/selectors3/xml/css3-modsel-128b.css: Removed.
  • css3/selectors3/xml/css3-modsel-128b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-129.css: Removed.
  • css3/selectors3/xml/css3-modsel-129.xml: Removed.
  • css3/selectors3/xml/css3-modsel-129b.css: Removed.
  • css3/selectors3/xml/css3-modsel-129b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-13.css: Removed.
  • css3/selectors3/xml/css3-modsel-13.xml: Removed.
  • css3/selectors3/xml/css3-modsel-130.css: Removed.
  • css3/selectors3/xml/css3-modsel-130.xml: Removed.
  • css3/selectors3/xml/css3-modsel-130b.css: Removed.
  • css3/selectors3/xml/css3-modsel-130b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-131.css: Removed.
  • css3/selectors3/xml/css3-modsel-131.xml: Removed.
  • css3/selectors3/xml/css3-modsel-131b.css: Removed.
  • css3/selectors3/xml/css3-modsel-131b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-132.css: Removed.
  • css3/selectors3/xml/css3-modsel-132.xml: Removed.
  • css3/selectors3/xml/css3-modsel-132b.css: Removed.
  • css3/selectors3/xml/css3-modsel-132b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-133.css: Removed.
  • css3/selectors3/xml/css3-modsel-133.xml: Removed.
  • css3/selectors3/xml/css3-modsel-133b.css: Removed.
  • css3/selectors3/xml/css3-modsel-133b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-134.css: Removed.
  • css3/selectors3/xml/css3-modsel-134.xml: Removed.
  • css3/selectors3/xml/css3-modsel-134b.css: Removed.
  • css3/selectors3/xml/css3-modsel-134b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-135.css: Removed.
  • css3/selectors3/xml/css3-modsel-135.xml: Removed.
  • css3/selectors3/xml/css3-modsel-135b.css: Removed.
  • css3/selectors3/xml/css3-modsel-135b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-136.css: Removed.
  • css3/selectors3/xml/css3-modsel-136.xml: Removed.
  • css3/selectors3/xml/css3-modsel-136b.css: Removed.
  • css3/selectors3/xml/css3-modsel-136b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-137.css: Removed.
  • css3/selectors3/xml/css3-modsel-137.xml: Removed.
  • css3/selectors3/xml/css3-modsel-137b.css: Removed.
  • css3/selectors3/xml/css3-modsel-137b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-138.css: Removed.
  • css3/selectors3/xml/css3-modsel-138.xml: Removed.
  • css3/selectors3/xml/css3-modsel-138b.css: Removed.
  • css3/selectors3/xml/css3-modsel-138b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-139.css: Removed.
  • css3/selectors3/xml/css3-modsel-139.xml: Removed.
  • css3/selectors3/xml/css3-modsel-139b.css: Removed.
  • css3/selectors3/xml/css3-modsel-139b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-14.css: Removed.
  • css3/selectors3/xml/css3-modsel-14.xml: Removed.
  • css3/selectors3/xml/css3-modsel-140.css: Removed.
  • css3/selectors3/xml/css3-modsel-140.xml: Removed.
  • css3/selectors3/xml/css3-modsel-140b.css: Removed.
  • css3/selectors3/xml/css3-modsel-140b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-141.css: Removed.
  • css3/selectors3/xml/css3-modsel-141.xml: Removed.
  • css3/selectors3/xml/css3-modsel-141b.css: Removed.
  • css3/selectors3/xml/css3-modsel-141b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-142.css: Removed.
  • css3/selectors3/xml/css3-modsel-142.xml: Removed.
  • css3/selectors3/xml/css3-modsel-142b.css: Removed.
  • css3/selectors3/xml/css3-modsel-142b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-143.css: Removed.
  • css3/selectors3/xml/css3-modsel-143.xml: Removed.
  • css3/selectors3/xml/css3-modsel-143b.css: Removed.
  • css3/selectors3/xml/css3-modsel-143b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-144.css: Removed.
  • css3/selectors3/xml/css3-modsel-144.xml: Removed.
  • css3/selectors3/xml/css3-modsel-145a.css: Removed.
  • css3/selectors3/xml/css3-modsel-145a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-145b.css: Removed.
  • css3/selectors3/xml/css3-modsel-145b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-146a.css: Removed.
  • css3/selectors3/xml/css3-modsel-146a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-146b.css: Removed.
  • css3/selectors3/xml/css3-modsel-146b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-147a.css: Removed.
  • css3/selectors3/xml/css3-modsel-147a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-147b.css: Removed.
  • css3/selectors3/xml/css3-modsel-147b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-148.css: Removed.
  • css3/selectors3/xml/css3-modsel-148.xml: Removed.
  • css3/selectors3/xml/css3-modsel-149.css: Removed.
  • css3/selectors3/xml/css3-modsel-149.xml: Removed.
  • css3/selectors3/xml/css3-modsel-149b.css: Removed.
  • css3/selectors3/xml/css3-modsel-149b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-14b.css: Removed.
  • css3/selectors3/xml/css3-modsel-14b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-14c.css: Removed.
  • css3/selectors3/xml/css3-modsel-14c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-14d.css: Removed.
  • css3/selectors3/xml/css3-modsel-14d.xml: Removed.
  • css3/selectors3/xml/css3-modsel-14e.css: Removed.
  • css3/selectors3/xml/css3-modsel-14e.xml: Removed.
  • css3/selectors3/xml/css3-modsel-15.css: Removed.
  • css3/selectors3/xml/css3-modsel-15.xml: Removed.
  • css3/selectors3/xml/css3-modsel-150.css: Removed.
  • css3/selectors3/xml/css3-modsel-150.xml: Removed.
  • css3/selectors3/xml/css3-modsel-151.css: Removed.
  • css3/selectors3/xml/css3-modsel-151.xml: Removed.
  • css3/selectors3/xml/css3-modsel-152.css: Removed.
  • css3/selectors3/xml/css3-modsel-152.xml: Removed.
  • css3/selectors3/xml/css3-modsel-153.css: Removed.
  • css3/selectors3/xml/css3-modsel-153.xml: Removed.
  • css3/selectors3/xml/css3-modsel-154.css: Removed.
  • css3/selectors3/xml/css3-modsel-154.xml: Removed.
  • css3/selectors3/xml/css3-modsel-155.css: Removed.
  • css3/selectors3/xml/css3-modsel-155.xml: Removed.
  • css3/selectors3/xml/css3-modsel-155a.css: Removed.
  • css3/selectors3/xml/css3-modsel-155a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-155b.css: Removed.
  • css3/selectors3/xml/css3-modsel-155b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-155c.css: Removed.
  • css3/selectors3/xml/css3-modsel-155c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-155d.css: Removed.
  • css3/selectors3/xml/css3-modsel-155d.xml: Removed.
  • css3/selectors3/xml/css3-modsel-156.css: Removed.
  • css3/selectors3/xml/css3-modsel-156.xml: Removed.
  • css3/selectors3/xml/css3-modsel-156b.css: Removed.
  • css3/selectors3/xml/css3-modsel-156b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-156c.css: Removed.
  • css3/selectors3/xml/css3-modsel-156c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-157.css: Removed.
  • css3/selectors3/xml/css3-modsel-157.xml: Removed.
  • css3/selectors3/xml/css3-modsel-158.css: Removed.
  • css3/selectors3/xml/css3-modsel-158.xml: Removed.
  • css3/selectors3/xml/css3-modsel-159.css: Removed.
  • css3/selectors3/xml/css3-modsel-159.xml: Removed.
  • css3/selectors3/xml/css3-modsel-15b.css: Removed.
  • css3/selectors3/xml/css3-modsel-15b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-15c.css: Removed.
  • css3/selectors3/xml/css3-modsel-15c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-16.css: Removed.
  • css3/selectors3/xml/css3-modsel-16.xml: Removed.
  • css3/selectors3/xml/css3-modsel-160.css: Removed.
  • css3/selectors3/xml/css3-modsel-160.xml: Removed.
  • css3/selectors3/xml/css3-modsel-161.css: Removed.
  • css3/selectors3/xml/css3-modsel-161.xml: Removed.
  • css3/selectors3/xml/css3-modsel-166.css: Removed.
  • css3/selectors3/xml/css3-modsel-166.xml: Removed.
  • css3/selectors3/xml/css3-modsel-166a.css: Removed.
  • css3/selectors3/xml/css3-modsel-166a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-167-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-167.css: Removed.
  • css3/selectors3/xml/css3-modsel-167.xml: Removed.
  • css3/selectors3/xml/css3-modsel-167a-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-167a.css: Removed.
  • css3/selectors3/xml/css3-modsel-167a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-168.css: Removed.
  • css3/selectors3/xml/css3-modsel-168.xml: Removed.
  • css3/selectors3/xml/css3-modsel-168a.css: Removed.
  • css3/selectors3/xml/css3-modsel-168a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-169.css: Removed.
  • css3/selectors3/xml/css3-modsel-169.xml: Removed.
  • css3/selectors3/xml/css3-modsel-169a.css: Removed.
  • css3/selectors3/xml/css3-modsel-169a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-17-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-17.css: Removed.
  • css3/selectors3/xml/css3-modsel-17.xml: Removed.
  • css3/selectors3/xml/css3-modsel-170.css: Removed.
  • css3/selectors3/xml/css3-modsel-170.xml: Removed.
  • css3/selectors3/xml/css3-modsel-170a.css: Removed.
  • css3/selectors3/xml/css3-modsel-170a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-170b.css: Removed.
  • css3/selectors3/xml/css3-modsel-170b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-170c.css: Removed.
  • css3/selectors3/xml/css3-modsel-170c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-170d.css: Removed.
  • css3/selectors3/xml/css3-modsel-170d.xml: Removed.
  • css3/selectors3/xml/css3-modsel-171.css: Removed.
  • css3/selectors3/xml/css3-modsel-171.xml: Removed.
  • css3/selectors3/xml/css3-modsel-172a.css: Removed.
  • css3/selectors3/xml/css3-modsel-172a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-172b.css: Removed.
  • css3/selectors3/xml/css3-modsel-172b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-173a.css: Removed.
  • css3/selectors3/xml/css3-modsel-173a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-173b.css: Removed.
  • css3/selectors3/xml/css3-modsel-173b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-174a.css: Removed.
  • css3/selectors3/xml/css3-modsel-174a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-174b.css: Removed.
  • css3/selectors3/xml/css3-modsel-174b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-175a.css: Removed.
  • css3/selectors3/xml/css3-modsel-175a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-175b.css: Removed.
  • css3/selectors3/xml/css3-modsel-175b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-175c.css: Removed.
  • css3/selectors3/xml/css3-modsel-175c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-176.css: Removed.
  • css3/selectors3/xml/css3-modsel-176.xml: Removed.
  • css3/selectors3/xml/css3-modsel-177a-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-177a.css: Removed.
  • css3/selectors3/xml/css3-modsel-177a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-177b.css: Removed.
  • css3/selectors3/xml/css3-modsel-177b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-178.css: Removed.
  • css3/selectors3/xml/css3-modsel-178.xml: Removed.
  • css3/selectors3/xml/css3-modsel-179.css: Removed.
  • css3/selectors3/xml/css3-modsel-179.xml: Removed.
  • css3/selectors3/xml/css3-modsel-179a.css: Removed.
  • css3/selectors3/xml/css3-modsel-179a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-18.css: Removed.
  • css3/selectors3/xml/css3-modsel-18.xml: Removed.
  • css3/selectors3/xml/css3-modsel-180a.css: Removed.
  • css3/selectors3/xml/css3-modsel-180a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-181.css: Removed.
  • css3/selectors3/xml/css3-modsel-181.xml: Removed.
  • css3/selectors3/xml/css3-modsel-182.css: Removed.
  • css3/selectors3/xml/css3-modsel-182.xml: Removed.
  • css3/selectors3/xml/css3-modsel-183.css: Removed.
  • css3/selectors3/xml/css3-modsel-183.xml: Removed.
  • css3/selectors3/xml/css3-modsel-184a.css: Removed.
  • css3/selectors3/xml/css3-modsel-184a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-184b.css: Removed.
  • css3/selectors3/xml/css3-modsel-184b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-184c.css: Removed.
  • css3/selectors3/xml/css3-modsel-184c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-184d.css: Removed.
  • css3/selectors3/xml/css3-modsel-184d.xml: Removed.
  • css3/selectors3/xml/css3-modsel-184e.css: Removed.
  • css3/selectors3/xml/css3-modsel-184e.xml: Removed.
  • css3/selectors3/xml/css3-modsel-184f.css: Removed.
  • css3/selectors3/xml/css3-modsel-184f.xml: Removed.
  • css3/selectors3/xml/css3-modsel-18a.css: Removed.
  • css3/selectors3/xml/css3-modsel-18a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-18b.css: Removed.
  • css3/selectors3/xml/css3-modsel-18b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-18c-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-18c.css: Removed.
  • css3/selectors3/xml/css3-modsel-18c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-19.css: Removed.
  • css3/selectors3/xml/css3-modsel-19.xml: Removed.
  • css3/selectors3/xml/css3-modsel-19b.css: Removed.
  • css3/selectors3/xml/css3-modsel-19b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-2.css: Removed.
  • css3/selectors3/xml/css3-modsel-2.xml: Removed.
  • css3/selectors3/xml/css3-modsel-20.css: Removed.
  • css3/selectors3/xml/css3-modsel-20.xml: Removed.
  • css3/selectors3/xml/css3-modsel-21.css: Removed.
  • css3/selectors3/xml/css3-modsel-21.xml: Removed.
  • css3/selectors3/xml/css3-modsel-21b.css: Removed.
  • css3/selectors3/xml/css3-modsel-21b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-21c.css: Removed.
  • css3/selectors3/xml/css3-modsel-21c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-22.css: Removed.
  • css3/selectors3/xml/css3-modsel-22.xml: Removed.
  • css3/selectors3/xml/css3-modsel-23.css: Removed.
  • css3/selectors3/xml/css3-modsel-23.xml: Removed.
  • css3/selectors3/xml/css3-modsel-24.css: Removed.
  • css3/selectors3/xml/css3-modsel-24.xml: Removed.
  • css3/selectors3/xml/css3-modsel-25.css: Removed.
  • css3/selectors3/xml/css3-modsel-25.xml: Removed.
  • css3/selectors3/xml/css3-modsel-27.css: Removed.
  • css3/selectors3/xml/css3-modsel-27.xml: Removed.
  • css3/selectors3/xml/css3-modsel-27a-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-27a.css: Removed.
  • css3/selectors3/xml/css3-modsel-27a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-27b-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-27b.css: Removed.
  • css3/selectors3/xml/css3-modsel-27b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-28.css: Removed.
  • css3/selectors3/xml/css3-modsel-28.xml: Removed.
  • css3/selectors3/xml/css3-modsel-28b.css: Removed.
  • css3/selectors3/xml/css3-modsel-28b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-29.css: Removed.
  • css3/selectors3/xml/css3-modsel-29.xml: Removed.
  • css3/selectors3/xml/css3-modsel-29b.css: Removed.
  • css3/selectors3/xml/css3-modsel-29b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-3.css: Removed.
  • css3/selectors3/xml/css3-modsel-3.xml: Removed.
  • css3/selectors3/xml/css3-modsel-30.css: Removed.
  • css3/selectors3/xml/css3-modsel-30.xml: Removed.
  • css3/selectors3/xml/css3-modsel-31.css: Removed.
  • css3/selectors3/xml/css3-modsel-31.xml: Removed.
  • css3/selectors3/xml/css3-modsel-32.css: Removed.
  • css3/selectors3/xml/css3-modsel-32.xml: Removed.
  • css3/selectors3/xml/css3-modsel-33.css: Removed.
  • css3/selectors3/xml/css3-modsel-33.xml: Removed.
  • css3/selectors3/xml/css3-modsel-34.css: Removed.
  • css3/selectors3/xml/css3-modsel-34.xml: Removed.
  • css3/selectors3/xml/css3-modsel-35.css: Removed.
  • css3/selectors3/xml/css3-modsel-35.xml: Removed.
  • css3/selectors3/xml/css3-modsel-36.css: Removed.
  • css3/selectors3/xml/css3-modsel-36.xml: Removed.
  • css3/selectors3/xml/css3-modsel-37.css: Removed.
  • css3/selectors3/xml/css3-modsel-37.xml: Removed.
  • css3/selectors3/xml/css3-modsel-38.css: Removed.
  • css3/selectors3/xml/css3-modsel-38.xml: Removed.
  • css3/selectors3/xml/css3-modsel-39.css: Removed.
  • css3/selectors3/xml/css3-modsel-39.xml: Removed.
  • css3/selectors3/xml/css3-modsel-39a.css: Removed.
  • css3/selectors3/xml/css3-modsel-39a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-39b.css: Removed.
  • css3/selectors3/xml/css3-modsel-39b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-39c.css: Removed.
  • css3/selectors3/xml/css3-modsel-39c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-3a.css: Removed.
  • css3/selectors3/xml/css3-modsel-3a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-4.css: Removed.
  • css3/selectors3/xml/css3-modsel-4.xml: Removed.
  • css3/selectors3/xml/css3-modsel-41.css: Removed.
  • css3/selectors3/xml/css3-modsel-41.xml: Removed.
  • css3/selectors3/xml/css3-modsel-41a.css: Removed.
  • css3/selectors3/xml/css3-modsel-41a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-42.css: Removed.
  • css3/selectors3/xml/css3-modsel-42.xml: Removed.
  • css3/selectors3/xml/css3-modsel-42a.css: Removed.
  • css3/selectors3/xml/css3-modsel-42a.xml: Removed.
  • css3/selectors3/xml/css3-modsel-43.css: Removed.
  • css3/selectors3/xml/css3-modsel-43.xml: Removed.
  • css3/selectors3/xml/css3-modsel-43b.css: Removed.
  • css3/selectors3/xml/css3-modsel-43b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-44.css: Removed.
  • css3/selectors3/xml/css3-modsel-44.xml: Removed.
  • css3/selectors3/xml/css3-modsel-44b.css: Removed.
  • css3/selectors3/xml/css3-modsel-44b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-44c.css: Removed.
  • css3/selectors3/xml/css3-modsel-44c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-44d.css: Removed.
  • css3/selectors3/xml/css3-modsel-44d.xml: Removed.
  • css3/selectors3/xml/css3-modsel-45.css: Removed.
  • css3/selectors3/xml/css3-modsel-45.xml: Removed.
  • css3/selectors3/xml/css3-modsel-45b.css: Removed.
  • css3/selectors3/xml/css3-modsel-45b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-45c.css: Removed.
  • css3/selectors3/xml/css3-modsel-45c.xml: Removed.
  • css3/selectors3/xml/css3-modsel-46.css: Removed.
  • css3/selectors3/xml/css3-modsel-46.xml: Removed.
  • css3/selectors3/xml/css3-modsel-46b.css: Removed.
  • css3/selectors3/xml/css3-modsel-46b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-47.css: Removed.
  • css3/selectors3/xml/css3-modsel-47.xml: Removed.
  • css3/selectors3/xml/css3-modsel-48.css: Removed.
  • css3/selectors3/xml/css3-modsel-48.xml: Removed.
  • css3/selectors3/xml/css3-modsel-49.css: Removed.
  • css3/selectors3/xml/css3-modsel-49.xml: Removed.
  • css3/selectors3/xml/css3-modsel-5.css: Removed.
  • css3/selectors3/xml/css3-modsel-5.xml: Removed.
  • css3/selectors3/xml/css3-modsel-50.css: Removed.
  • css3/selectors3/xml/css3-modsel-50.xml: Removed.
  • css3/selectors3/xml/css3-modsel-51.css: Removed.
  • css3/selectors3/xml/css3-modsel-51.xml: Removed.
  • css3/selectors3/xml/css3-modsel-52.css: Removed.
  • css3/selectors3/xml/css3-modsel-52.xml: Removed.
  • css3/selectors3/xml/css3-modsel-53.css: Removed.
  • css3/selectors3/xml/css3-modsel-53.xml: Removed.
  • css3/selectors3/xml/css3-modsel-54.css: Removed.
  • css3/selectors3/xml/css3-modsel-54.xml: Removed.
  • css3/selectors3/xml/css3-modsel-55.css: Removed.
  • css3/selectors3/xml/css3-modsel-55.xml: Removed.
  • css3/selectors3/xml/css3-modsel-56.css: Removed.
  • css3/selectors3/xml/css3-modsel-56.xml: Removed.
  • css3/selectors3/xml/css3-modsel-57.css: Removed.
  • css3/selectors3/xml/css3-modsel-57.xml: Removed.
  • css3/selectors3/xml/css3-modsel-57b.css: Removed.
  • css3/selectors3/xml/css3-modsel-57b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-59.css: Removed.
  • css3/selectors3/xml/css3-modsel-59.xml: Removed.
  • css3/selectors3/xml/css3-modsel-6.css: Removed.
  • css3/selectors3/xml/css3-modsel-6.xml: Removed.
  • css3/selectors3/xml/css3-modsel-60.css: Removed.
  • css3/selectors3/xml/css3-modsel-60.xml: Removed.
  • css3/selectors3/xml/css3-modsel-61-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-61.css: Removed.
  • css3/selectors3/xml/css3-modsel-61.xml: Removed.
  • css3/selectors3/xml/css3-modsel-62.css: Removed.
  • css3/selectors3/xml/css3-modsel-62.xml: Removed.
  • css3/selectors3/xml/css3-modsel-63.css: Removed.
  • css3/selectors3/xml/css3-modsel-63.xml: Removed.
  • css3/selectors3/xml/css3-modsel-64.css: Removed.
  • css3/selectors3/xml/css3-modsel-64.xml: Removed.
  • css3/selectors3/xml/css3-modsel-65.css: Removed.
  • css3/selectors3/xml/css3-modsel-65.xml: Removed.
  • css3/selectors3/xml/css3-modsel-66.css: Removed.
  • css3/selectors3/xml/css3-modsel-66.xml: Removed.
  • css3/selectors3/xml/css3-modsel-66b.css: Removed.
  • css3/selectors3/xml/css3-modsel-66b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-67.css: Removed.
  • css3/selectors3/xml/css3-modsel-67.xml: Removed.
  • css3/selectors3/xml/css3-modsel-68.css: Removed.
  • css3/selectors3/xml/css3-modsel-68.xml: Removed.
  • css3/selectors3/xml/css3-modsel-69.css: Removed.
  • css3/selectors3/xml/css3-modsel-69.xml: Removed.
  • css3/selectors3/xml/css3-modsel-7.css: Removed.
  • css3/selectors3/xml/css3-modsel-7.xml: Removed.
  • css3/selectors3/xml/css3-modsel-70.css: Removed.
  • css3/selectors3/xml/css3-modsel-70.xml: Removed.
  • css3/selectors3/xml/css3-modsel-72.css: Removed.
  • css3/selectors3/xml/css3-modsel-72.xml: Removed.
  • css3/selectors3/xml/css3-modsel-72b.css: Removed.
  • css3/selectors3/xml/css3-modsel-72b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-73.css: Removed.
  • css3/selectors3/xml/css3-modsel-73.xml: Removed.
  • css3/selectors3/xml/css3-modsel-73b.css: Removed.
  • css3/selectors3/xml/css3-modsel-73b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-74.css: Removed.
  • css3/selectors3/xml/css3-modsel-74.xml: Removed.
  • css3/selectors3/xml/css3-modsel-74b.css: Removed.
  • css3/selectors3/xml/css3-modsel-74b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-75.css: Removed.
  • css3/selectors3/xml/css3-modsel-75.xml: Removed.
  • css3/selectors3/xml/css3-modsel-75b.css: Removed.
  • css3/selectors3/xml/css3-modsel-75b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-76.css: Removed.
  • css3/selectors3/xml/css3-modsel-76.xml: Removed.
  • css3/selectors3/xml/css3-modsel-76b.css: Removed.
  • css3/selectors3/xml/css3-modsel-76b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-77.css: Removed.
  • css3/selectors3/xml/css3-modsel-77.xml: Removed.
  • css3/selectors3/xml/css3-modsel-77b.css: Removed.
  • css3/selectors3/xml/css3-modsel-77b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-78.css: Removed.
  • css3/selectors3/xml/css3-modsel-78.xml: Removed.
  • css3/selectors3/xml/css3-modsel-78b.css: Removed.
  • css3/selectors3/xml/css3-modsel-78b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-79.css: Removed.
  • css3/selectors3/xml/css3-modsel-79.xml: Removed.
  • css3/selectors3/xml/css3-modsel-7b.css: Removed.
  • css3/selectors3/xml/css3-modsel-7b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-8.css: Removed.
  • css3/selectors3/xml/css3-modsel-8.xml: Removed.
  • css3/selectors3/xml/css3-modsel-80.css: Removed.
  • css3/selectors3/xml/css3-modsel-80.xml: Removed.
  • css3/selectors3/xml/css3-modsel-81.css: Removed.
  • css3/selectors3/xml/css3-modsel-81.xml: Removed.
  • css3/selectors3/xml/css3-modsel-81b.css: Removed.
  • css3/selectors3/xml/css3-modsel-81b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-82.css: Removed.
  • css3/selectors3/xml/css3-modsel-82.xml: Removed.
  • css3/selectors3/xml/css3-modsel-82b.css: Removed.
  • css3/selectors3/xml/css3-modsel-82b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-83.css: Removed.
  • css3/selectors3/xml/css3-modsel-83.xml: Removed.
  • css3/selectors3/xml/css3-modsel-86.css: Removed.
  • css3/selectors3/xml/css3-modsel-86.xml: Removed.
  • css3/selectors3/xml/css3-modsel-87.css: Removed.
  • css3/selectors3/xml/css3-modsel-87.xml: Removed.
  • css3/selectors3/xml/css3-modsel-87b.css: Removed.
  • css3/selectors3/xml/css3-modsel-87b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-88.css: Removed.
  • css3/selectors3/xml/css3-modsel-88.xml: Removed.
  • css3/selectors3/xml/css3-modsel-88b.css: Removed.
  • css3/selectors3/xml/css3-modsel-88b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-89.css: Removed.
  • css3/selectors3/xml/css3-modsel-89.xml: Removed.
  • css3/selectors3/xml/css3-modsel-9.css: Removed.
  • css3/selectors3/xml/css3-modsel-9.xml: Removed.
  • css3/selectors3/xml/css3-modsel-90.css: Removed.
  • css3/selectors3/xml/css3-modsel-90.xml: Removed.
  • css3/selectors3/xml/css3-modsel-90b.css: Removed.
  • css3/selectors3/xml/css3-modsel-90b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-91-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-91.css: Removed.
  • css3/selectors3/xml/css3-modsel-91.xml: Removed.
  • css3/selectors3/xml/css3-modsel-92-expected.png: Removed.
  • css3/selectors3/xml/css3-modsel-92.css: Removed.
  • css3/selectors3/xml/css3-modsel-92.xml: Removed.
  • css3/selectors3/xml/css3-modsel-93.css: Removed.
  • css3/selectors3/xml/css3-modsel-93.xml: Removed.
  • css3/selectors3/xml/css3-modsel-94.css: Removed.
  • css3/selectors3/xml/css3-modsel-94.xml: Removed.
  • css3/selectors3/xml/css3-modsel-94b.css: Removed.
  • css3/selectors3/xml/css3-modsel-94b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-95.css: Removed.
  • css3/selectors3/xml/css3-modsel-95.xml: Removed.
  • css3/selectors3/xml/css3-modsel-96.css: Removed.
  • css3/selectors3/xml/css3-modsel-96.xml: Removed.
  • css3/selectors3/xml/css3-modsel-96b.css: Removed.
  • css3/selectors3/xml/css3-modsel-96b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-97.css: Removed.
  • css3/selectors3/xml/css3-modsel-97.xml: Removed.
  • css3/selectors3/xml/css3-modsel-97b.css: Removed.
  • css3/selectors3/xml/css3-modsel-97b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-98.css: Removed.
  • css3/selectors3/xml/css3-modsel-98.xml: Removed.
  • css3/selectors3/xml/css3-modsel-98b.css: Removed.
  • css3/selectors3/xml/css3-modsel-98b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-99.css: Removed.
  • css3/selectors3/xml/css3-modsel-99.xml: Removed.
  • css3/selectors3/xml/css3-modsel-99b.css: Removed.
  • css3/selectors3/xml/css3-modsel-99b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-d1.css: Removed.
  • css3/selectors3/xml/css3-modsel-d1.xml: Removed.
  • css3/selectors3/xml/css3-modsel-d1b.css: Removed.
  • css3/selectors3/xml/css3-modsel-d1b.xml: Removed.
  • css3/selectors3/xml/css3-modsel-d2.css: Removed.
  • css3/selectors3/xml/css3-modsel-d2.xml: Removed.
  • css3/selectors3/xml/css3-modsel-d3.css: Removed.
  • css3/selectors3/xml/css3-modsel-d3.xml: Removed.
  • css3/selectors3/xml/css3-modsel-d4.css: Removed.
  • css3/selectors3/xml/css3-modsel-d4.xml: Removed.
  • fast/css/css3-modsel-22.html: Removed.
  • gpu-process/TestExpectations:
  • platform/gtk/css3/css3-modsel-33-expected.png: Removed.
  • platform/gtk/css3/css3-modsel-33-expected.txt: Removed.
  • platform/gtk/css3/css3-modsel-35-expected.png: Removed.
  • platform/gtk/css3/css3-modsel-35-expected.txt: Removed.
  • platform/gtk/css3/css3-modsel-36-expected.png: Removed.
  • platform/gtk/css3/css3-modsel-36-expected.txt: Removed.
  • platform/gtk/css3/css3-modsel-37-expected.png: Removed.
  • platform/gtk/css3/css3-modsel-37-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-1-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-1-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-10-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-10-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-11-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-11-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-13-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-13-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-144-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-144-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-148-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-148-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-149-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-149-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-149b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-149b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14d-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14e-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-14e-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-15-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-15-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-150-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-150-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-151-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-151-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-152-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-152-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-154-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-154-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155d-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-155d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-156-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-156-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-156b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-156b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-156c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-156c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-157-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-157-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-158-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-158-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-159-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-159-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-15b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-15b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-16-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-16-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-160-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-160-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-161-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-161-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-166-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-166-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-166a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-166a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-167-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-167-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-167a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-167a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-168-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-168-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-168a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-168a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-169-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-169-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-169a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-169a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-17-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170d-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-170d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-175a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-175a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-175b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-175b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-175c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-175c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-176-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-176-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-177a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-177b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-177b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-178-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-178-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-179-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-179-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-179a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-179a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-18-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-180a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-180a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-181-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-181-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-183-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-183-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184d-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184e-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184e-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184f-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-184f-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-18a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-18a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-18b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-18b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-18c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-19-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-19-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-19b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-2-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-2-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-20-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-20-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-21-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-21-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-21b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-21b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-21c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-21c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-22-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-22-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-23-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-24-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-25-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-25-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-27-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-27-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-27a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-27b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-28-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-28-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-28b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-28b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-29-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-29-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-29b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-29b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-30-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-30-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-31-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-31-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-32-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-32-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-33-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-33-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-34-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-34-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-35-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-35-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-36-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-36-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-37-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-37-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-38-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-38-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-39c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-3a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-3a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-4-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-4-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-41-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-41-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-41a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-41a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-42-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-42-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-42a-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-42a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-43-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-43-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-43b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-43b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44d-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-44d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-45-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-45-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-45b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-45b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-45c-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-45c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-46-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-46-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-46b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-46b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-5-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-5-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-54-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-54-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-55-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-55-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-56-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-56-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-59-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-59-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-6-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-6-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-60-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-60-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-61-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-62-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-62-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-63-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-63-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-64-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-64-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-65-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-65-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-66-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-66-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-66b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-66b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-67-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-67-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-68-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-69-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-7-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-7-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-70-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-70-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-72-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-72-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-72b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-72b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-73-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-73-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-73b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-73b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-74-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-74-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-74b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-74b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-75-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-75-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-75b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-75b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-76-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-76-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-76b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-76b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-77-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-77-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-77b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-77b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-78-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-78-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-78b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-78b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-79-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-79-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-7b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-7b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-8-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-8-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-80-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-80-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-81-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-81-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-81b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-81b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-82-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-82-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-82b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-82b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-83-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-83-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-86-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-86-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-87-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-87-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-87b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-87b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-88-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-88-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-88b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-88b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-89-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-89-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-9-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-9-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-90-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-90-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-90b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-90b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d1-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d1-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d1b-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d1b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d2-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d2-expected.txt: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d4-expected.png: Removed.
  • platform/gtk/css3/selectors3/html/css3-modsel-d4-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-1-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-10-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-100-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-100b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-101-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-101b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-102-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-102b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-103-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-103b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-104-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-104b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-105-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-105b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-106-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-106b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-107-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-107b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-108-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-108b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-109-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-109b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-11-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-110-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-110b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-111-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-111b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-112-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-112b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-113-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-113b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-114-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-114b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-115-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-115b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-116-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-116b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-117-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-117b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-118-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-119-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-120-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-121-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-122-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-123-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-124-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-124b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-125-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-125b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-126-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-126b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-127-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-127b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-128-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-128b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-129-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-129b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-13-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-130-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-130b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-131-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-131b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-132-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-132b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-133-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-133b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-134-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-134b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-135-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-135b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-136-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-136b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-137-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-137b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-138-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-138b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-139-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-139b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-140-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-140b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-141-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-141b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-142-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-142b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-143-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-143b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-144-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-145a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-145b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-146a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-146b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-147a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-147b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-148-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-149-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-149b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14e-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-15-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-150-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-151-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-152-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-153-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-154-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-156-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-156b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-156c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-157-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-158-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-159-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-15b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-16-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-160-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-161-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-166-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-166a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-167-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-167a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-168-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-168a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-169-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-169a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-171-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-172a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-172b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-173a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-173b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-174a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-174b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-175a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-175b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-175c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-176-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-177b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-178-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-179-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-179a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-180a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-181-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-182-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-183-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184e-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184f-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-19-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-2-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-20-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-21-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-21b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-21c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-22-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-23-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-24-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-25-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-27-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-3-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-30-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-31-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-32-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-33-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-34-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-35-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-36-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-37-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-38-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-3a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-4-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-41-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-41a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-42-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-42a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-43-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-43b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-45-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-45b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-45c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-46-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-46b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-47-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-48-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-49-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-5-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-50-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-51-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-52-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-53-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-54-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-55-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-56-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-57-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-57b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-59-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-6-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-60-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-62-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-63-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-64-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-65-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-66-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-66b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-67-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-68-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-69-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-7-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-70-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-72-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-72b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-75-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-75b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-76-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-76b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-79-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-7b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-8-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-80-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-81-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-81b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-82-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-82b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-83-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-86-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-87-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-87b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-88-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-88b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-89-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-9-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-90-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-90b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-93-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-94-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-94b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-95-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-96-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-96b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-97-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-97b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-98-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-98b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-99-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-99b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d1-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d1b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d2-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d3-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d4-expected.png: Removed.
  • platform/gtk/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-1-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-1-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-10-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-10-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-100-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-100-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-100b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-100b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-101-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-101-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-101b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-101b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-102-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-102-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-102b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-102b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-103-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-103-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-103b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-103b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-104-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-104-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-104b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-104b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-105-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-105-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-105b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-105b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-106-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-106-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-106b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-106b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-107-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-107-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-107b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-107b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-108-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-108-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-108b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-108b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-109-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-109-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-109b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-109b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-11-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-11-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-110-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-110-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-110b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-110b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-111-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-111-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-111b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-111b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-112-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-112-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-112b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-112b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-113-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-113-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-113b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-113b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-114-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-114-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-114b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-114b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-115-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-115-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-115b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-115b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-116-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-116-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-116b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-116b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-117-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-117-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-117b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-117b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-118-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-118-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-119-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-119-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-120-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-120-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-121-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-121-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-122-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-122-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-123-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-123-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-123b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-124-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-124-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-124b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-124b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-125-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-125-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-125b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-125b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-126-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-126-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-126b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-126b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-127-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-127-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-127b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-127b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-128-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-128-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-128b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-128b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-129-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-129-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-129b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-129b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-13-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-13-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-130-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-130-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-130b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-130b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-131-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-131-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-131b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-131b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-132-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-132-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-132b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-132b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-133-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-133-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-133b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-133b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-134-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-134-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-134b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-134b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-135-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-135-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-135b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-135b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-136-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-136-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-136b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-136b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-137-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-137-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-137b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-137b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-138-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-138-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-138b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-138b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-139-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-139-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-139b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-139b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-140-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-140-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-140b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-140b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-141-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-141-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-141b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-141b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-142-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-142-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-142b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-142b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-143-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-143-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-143b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-143b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-144-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-144-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-145a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-145a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-145b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-145b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-146a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-146a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-146b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-146b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-147a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-147a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-147b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-147b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-148-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-148-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-149-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-149-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-149b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-149b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14e-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-14e-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-15-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-15-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-150-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-150-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-151-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-151-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-152-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-152-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-153-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-153-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-154-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-154-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-155d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-156-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-156-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-156b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-156b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-156c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-156c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-157-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-157-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-158-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-158-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-159-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-159-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-15b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-15b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-15c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-15c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-16-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-16-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-160-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-160-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-161-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-161-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-166-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-166-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-166a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-166a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-167-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-167a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-168-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-168-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-168a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-168a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-169-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-169-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-169a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-169a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-17-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-170d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-171-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-171-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-172a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-172a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-172b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-172b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-173a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-173a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-173b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-173b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-174a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-174a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-174b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-174b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-175a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-175a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-175b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-175b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-175c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-175c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-176-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-176-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-177a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-177b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-177b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-178-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-178-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-179-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-179-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-179a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-179a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-18-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-180a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-180a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-181-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-181-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-182-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-182-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-183-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-183-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184e-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184e-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184f-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-184f-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-18a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-18a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-18b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-18b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-18c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-19-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-19-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-19b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-2-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-2-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-20-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-20-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-21-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-21-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-21b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-21b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-21c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-21c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-22-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-22-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-23-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-24-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-25-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-25-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-27-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-27-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-27a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-27b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-28-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-28-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-28b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-28b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-29-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-29-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-29b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-29b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-3-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-3-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-30-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-30-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-31-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-31-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-32-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-32-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-33-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-33-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-34-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-34-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-35-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-35-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-36-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-36-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-37-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-37-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-38-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-38-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-39c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-3a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-3a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-4-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-4-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-41-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-41-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-41a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-41a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-42-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-42-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-42a-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-42a-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-43-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-43-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-43b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-43b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44d-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-44d-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-45-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-45-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-45b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-45b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-45c-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-45c-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-46-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-46-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-46b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-46b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-47-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-47-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-48-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-48-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-49-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-49-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-5-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-5-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-50-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-50-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-51-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-51-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-52-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-52-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-53-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-53-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-54-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-54-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-55-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-55-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-56-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-56-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-57-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-57-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-57b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-57b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-59-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-59-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-6-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-6-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-60-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-60-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-61-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-62-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-62-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-63-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-63-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-64-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-64-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-65-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-65-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-66-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-66-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-66b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-66b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-67-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-67-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-68-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-69-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-7-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-7-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-70-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-70-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-72-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-72-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-72b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-72b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-73-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-73-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-73b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-73b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-74-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-74-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-74b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-74b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-75-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-75-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-75b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-75b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-76-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-76-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-76b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-76b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-77-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-77-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-77b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-77b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-78-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-78-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-78b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-78b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-79-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-79-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-7b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-7b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-8-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-8-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-80-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-80-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-81-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-81-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-81b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-81b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-82-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-82-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-82b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-82b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-83-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-83-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-86-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-86-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-87-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-87-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-87b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-87b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-88-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-88-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-88b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-88b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-89-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-89-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-9-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-9-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-90-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-90-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-90b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-90b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-91-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-92-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-93-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-93-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-94-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-94-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-94b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-94b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-95-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-95-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-96-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-96-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-96b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-96b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-97-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-97-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-97b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-97b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-98-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-98-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-98b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-98b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-99-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-99-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-99b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-99b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d1-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d1-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d1b-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d2-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d2-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d3-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d3-expected.txt: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d4-expected.png: Removed.
  • platform/gtk/css3/selectors3/xml/css3-modsel-d4-expected.txt: Removed.
  • platform/gtk/fast/css/css3-modsel-22-expected.png: Removed.
  • platform/gtk/fast/css/css3-modsel-22-expected.txt: Removed.
  • platform/ios/css3/css3-modsel-33-expected.txt: Removed.
  • platform/ios/css3/css3-modsel-35-expected.txt: Removed.
  • platform/ios/css3/css3-modsel-36-expected.txt: Removed.
  • platform/ios/css3/css3-modsel-37-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-1-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-10-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-11-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-13-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-14-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-144-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-148-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-149-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-149b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-14b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-14c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-14d-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-14e-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-15-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-150-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-151-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-152-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-154-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-155-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-155a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-155b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-155c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-155d-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-156-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-156b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-156c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-157-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-158-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-159-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-15b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-16-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-160-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-161-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-166-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-166a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-167-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-167a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-168-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-168a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-169-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-169a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-17-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-170-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-170a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-170b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-170c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-170d-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-175a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-175b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-175c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-176-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-177a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-177b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-178-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-179-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-179a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-180a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-181-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-183-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-184a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-184b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-184c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-184d-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-184e-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-184f-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-18a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-18b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-18c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-19-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-2-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-20-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-21-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-21b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-21c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-22-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-25-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-27-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-27a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-27b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-28-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-28b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-29-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-29b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-30-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-31-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-32-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-33-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-34-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-35-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-36-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-37-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-38-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-39-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-39a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-39b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-39c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-3a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-4-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-41-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-41a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-42-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-42a-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-43-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-43b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-44-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-44b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-44c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-44d-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-45-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-45b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-45c-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-46-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-46b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-5-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-54-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-55-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-56-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-59-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-6-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-60-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-61-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-62-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-63-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-64-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-65-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-66-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-66b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-67-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-7-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-70-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-72-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-72b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-73-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-73b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-74-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-74b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-75-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-75b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-76-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-76b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-77-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-77b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-78-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-78b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-79-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-7b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-8-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-80-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-81-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-81b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-82-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-82b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-83-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-86-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-87-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-87b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-88-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-88b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-89-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-9-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-90-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-90b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-d1-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-d1b-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-d2-expected.txt: Removed.
  • platform/ios/css3/selectors3/html/css3-modsel-d4-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Removed.
  • platform/ios/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-1-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-10-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-100-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-100b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-101-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-101b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-102-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-102b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-103-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-103b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-104-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-104b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-105-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-105b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-106-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-106b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-107-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-107b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-108-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-108b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-109-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-109b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-11-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-110-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-110b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-111-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-111b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-112-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-112b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-113-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-113b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-114-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-114b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-115-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-115b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-116-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-116b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-117-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-117b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-118-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-119-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-120-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-121-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-122-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-123-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-123b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-124-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-124b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-125-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-125b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-126-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-126b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-127-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-127b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-128-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-128b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-129-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-129b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-13-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-130-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-130b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-131-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-131b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-132-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-132b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-133-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-133b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-134-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-134b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-135-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-135b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-136-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-136b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-137-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-137b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-138-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-138b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-139-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-139b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-14-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-140-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-140b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-141-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-141b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-142-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-142b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-143-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-143b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-144-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-145a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-145b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-146a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-146b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-147a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-147b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-148-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-149-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-149b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-14b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-14c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-14d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-14e-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-15-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-150-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-151-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-152-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-153-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-154-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-155-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-155a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-155b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-155c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-155d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-156-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-156b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-156c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-157-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-158-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-159-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-15b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-15c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-16-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-160-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-161-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-166-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-166a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-167-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-167a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-168-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-168a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-169-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-169a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-17-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-170-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-170a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-170b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-170c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-170d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-171-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-172a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-172b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-173a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-173b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-174a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-174b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-175a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-175b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-175c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-176-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-177a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-177b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-178-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-179-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-179a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-180a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-181-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-182-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-183-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-184a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-184b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-184c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-184d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-184e-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-184f-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-18a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-18b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-18c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-19-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-2-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-20-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-21-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-21b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-21c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-22-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-25-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-27-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-27a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-27b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-28-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-28b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-29-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-29b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-3-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-30-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-31-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-32-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-33-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-34-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-35-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-36-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-37-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-38-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-39-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-39a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-39b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-39c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-3a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-4-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-41-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-41a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-42-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-42a-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-43-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-43b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-44-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-44b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-44c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-44d-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-45-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-45b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-45c-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-46-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-46b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-47-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-48-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-49-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-5-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-50-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-51-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-52-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-53-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-54-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-55-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-56-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-57-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-57b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-59-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-6-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-60-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-61-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-62-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-63-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-64-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-65-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-66-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-66b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-67-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-7-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-70-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-72-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-72b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-73-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-73b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-74-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-74b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-75-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-75b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-76-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-76b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-77-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-77b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-78-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-78b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-79-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-7b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-8-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-80-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-81-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-81b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-82-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-82b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-83-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-86-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-87-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-87b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-88-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-88b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-89-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-9-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-90-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-90b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-91-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-92-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-93-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-94-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-94b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-95-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-96-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-96b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-97-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-97b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-98-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-98b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-99-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-99b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-d1-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-d2-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-d3-expected.txt: Removed.
  • platform/ios/css3/selectors3/xml/css3-modsel-d4-expected.txt: Removed.
  • platform/ios/fast/css/css3-modsel-22-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/mac-highsierra/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/mac-mojave/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/mac-mojave/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/mac-mojave/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/mac-wk1/TestExpectations:
  • platform/mac/TestExpectations:
  • platform/mac/css3/css3-modsel-33-expected.png: Removed.
  • platform/mac/css3/css3-modsel-33-expected.txt: Removed.
  • platform/mac/css3/css3-modsel-35-expected.png: Removed.
  • platform/mac/css3/css3-modsel-35-expected.txt: Removed.
  • platform/mac/css3/css3-modsel-36-expected.png: Removed.
  • platform/mac/css3/css3-modsel-36-expected.txt: Removed.
  • platform/mac/css3/css3-modsel-37-expected.png: Removed.
  • platform/mac/css3/css3-modsel-37-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-1-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-1-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-10-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-10-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-11-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-11-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-13-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-13-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-144-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-144-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-148-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-148-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-149-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-149-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-149b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-149b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14d-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14d-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14e-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-14e-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-15-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-15-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-150-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-150-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-151-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-151-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-152-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-152-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-154-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-154-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155d-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-155d-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-156-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-156-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-156b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-156b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-156c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-156c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-157-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-157-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-158-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-158-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-159-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-159-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-15b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-15b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-16-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-16-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-160-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-160-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-161-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-161-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-166-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-166-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-166a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-166a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-167-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-167-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-167a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-167a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-168-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-168-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-168a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-168a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-169-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-169-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-169a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-169a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-17-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-17-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170d-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-170d-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-175a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-175a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-175b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-175b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-175c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-175c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-176-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-176-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-177a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-177a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-177b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-177b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-178-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-178-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-179-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-179-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-179a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-179a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-180a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-180a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-181-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-181-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-183-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-183-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184d-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184d-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184e-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184e-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184f-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-184f-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-18a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-18a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-18b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-18b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-18c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-18c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-19-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-19-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-2-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-2-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-20-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-20-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-21-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-21-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-21b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-21b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-21c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-21c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-22-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-22-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-24-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-25-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-25-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-27-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-27-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-27a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-27a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-27b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-27b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-28-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-28-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-28b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-28b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-29-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-29-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-29b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-29b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-30-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-30-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-31-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-31-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-32-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-32-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-33-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-33-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-34-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-34-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-35-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-35-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-36-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-36-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-37-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-37-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-38-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-38-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-39c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-3a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-3a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-4-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-4-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-41-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-41-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-41a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-41a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-42-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-42-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-42a-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-42a-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-43-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-43-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-43b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-43b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44d-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-44d-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-45-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-45-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-45b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-45b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-45c-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-45c-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-46-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-46-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-46b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-46b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-5-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-5-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-54-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-54-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-55-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-55-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-56-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-56-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-59-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-59-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-6-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-6-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-60-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-60-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-61-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-61-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-62-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-62-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-63-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-63-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-64-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-64-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-65-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-65-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-66-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-66-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-66b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-66b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-67-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-67-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-68-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-7-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-7-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-70-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-70-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-72-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-72-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-72b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-72b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-73-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-73-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-73b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-73b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-74-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-74-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-74b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-74b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-75-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-75-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-75b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-75b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-76-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-76-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-76b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-76b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-77-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-77-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-77b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-77b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-78-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-78-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-78b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-78b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-79-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-79-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-7b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-7b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-8-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-8-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-80-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-80-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-81-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-81-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-81b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-81b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-82-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-82-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-82b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-82b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-83-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-83-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-86-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-86-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-87-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-87-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-87b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-87b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-88-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-88-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-88b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-88b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-89-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-89-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-9-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-9-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-90-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-90-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-90b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-90b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d1-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d1-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d1b-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d1b-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d2-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d2-expected.txt: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d4-expected.png: Removed.
  • platform/mac/css3/selectors3/html/css3-modsel-d4-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-1-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-10-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-100-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-100b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-101-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-101b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-102-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-102b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-103-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-103b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-104-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-104b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-105-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-105b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-106-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-106b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-107-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-107b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-108-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-108b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-109-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-109b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-11-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-110-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-110b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-111-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-111b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-112-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-112b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-113-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-113b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-114-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-114b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-115-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-115b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-116-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-116b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-117-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-117b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-118-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-119-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-120-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-121-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-122-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-123-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-123b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-124-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-124b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-125-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-125b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-126-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-126b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-127-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-127b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-128-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-128b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-129-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-129b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-13-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-130-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-130b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-131-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-131b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-132-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-132b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-133-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-133b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-134-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-134b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-135-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-135b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-136-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-136b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-137-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-137b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-138-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-138b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-139-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-139b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-140-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-140b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-141-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-141b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-142-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-142b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-143-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-143b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-144-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-145a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-145b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-146a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-146b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-147a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-147b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-148-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-149-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-149b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14d-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14e-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-15-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-150-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-151-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-152-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-153-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-154-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155d-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-156-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-156b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-156c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-157-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-158-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-159-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-15b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-15c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-16-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-160-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-161-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-166-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-166a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-167-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-167a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-168-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-168a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-169-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-169a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-17-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170d-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-171-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-172a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-172b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-173a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-173b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-174a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-174b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-175a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-175b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-175c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-176-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-177a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-177b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-178-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-179-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-179a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-180a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-181-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-182-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-183-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184d-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184e-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184f-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-18a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-18b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-18c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-19-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-2-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-20-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-21-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-21b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-21c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-22-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-25-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-27-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-27a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-27b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-28-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-28b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-29-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-29b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-3-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-30-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-31-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-32-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-33-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-34-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-35-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-36-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-37-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-38-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-3a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-4-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-41-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-41a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-42-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-42a-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-43-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-43b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44d-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-45-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-45b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-45c-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-46-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-46b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-47-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-48-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-49-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-5-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-50-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-51-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-52-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-53-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-54-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-55-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-56-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-57-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-57b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-59-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-6-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-60-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-61-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-62-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-63-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-65-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-66-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-66b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-67-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-7-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-70-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-72-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-72b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-73-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-73b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-74-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-74b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-75-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-75b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-76-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-76b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-77-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-77b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-78-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-78b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-79-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-7b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-8-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-80-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-81-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-81b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-82-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-82b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-83-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-86-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-87-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-87b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-88-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-88b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-89-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-9-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-90-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-90b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-91-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-92-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-93-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-94-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-94b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-95-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-96-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-96b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-97-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-97b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-98-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-98b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-99-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-99b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d1-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d1b-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d2-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d3-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d4-expected.png: Removed.
  • platform/mac/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-1-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-1-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-10-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-10-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-100-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-100-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-100b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-100b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-101-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-101-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-101b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-101b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-102-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-102-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-102b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-102b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-103-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-103-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-103b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-103b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-104-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-104-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-104b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-104b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-105-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-105-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-105b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-105b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-106-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-106-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-106b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-106b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-107-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-107-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-107b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-107b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-108-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-108-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-108b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-108b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-109-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-109-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-109b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-109b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-11-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-11-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-110-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-110-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-110b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-110b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-111-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-111-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-111b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-111b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-112-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-112-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-112b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-112b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-113-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-113-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-113b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-113b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-114-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-114-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-114b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-114b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-115-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-115-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-115b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-115b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-116-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-116-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-116b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-116b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-117-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-117-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-117b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-117b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-118-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-118-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-119-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-119-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-120-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-120-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-121-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-121-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-122-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-122-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-123-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-123-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-123b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-123b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-124-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-124-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-124b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-124b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-125-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-125-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-125b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-125b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-126-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-126-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-126b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-126b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-127-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-127-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-127b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-127b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-128-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-128-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-128b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-128b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-129-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-129-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-129b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-129b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-13-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-13-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-130-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-130-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-130b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-130b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-131-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-131-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-131b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-131b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-132-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-132-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-132b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-132b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-133-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-133-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-133b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-133b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-134-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-134-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-134b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-134b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-135-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-135-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-135b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-135b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-136-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-136-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-136b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-136b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-137-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-137-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-137b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-137b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-138-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-138-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-138b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-138b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-139-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-139-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-139b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-139b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-140-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-140-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-140b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-140b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-141-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-141-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-141b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-141b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-142-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-142-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-142b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-142b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-143-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-143-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-143b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-143b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-144-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-144-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-145a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-145a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-145b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-145b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-146a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-146a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-146b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-146b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-147a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-147a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-147b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-147b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-148-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-148-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-149-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-149-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-149b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-149b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14d-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14e-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-14e-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-15-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-15-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-150-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-150-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-151-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-151-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-152-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-152-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-153-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-153-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-154-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-154-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155d-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-155d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-156-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-156-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-156b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-156b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-156c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-156c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-157-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-157-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-158-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-158-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-159-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-159-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-15b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-15b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-15c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-15c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-16-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-16-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-160-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-160-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-161-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-161-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-166-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-166-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-166a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-166a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-167-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-167-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-167a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-167a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-168-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-168-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-168a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-168a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-169-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-169-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-169a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-169a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-17-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-17-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170d-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-170d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-171-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-171-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-172a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-172a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-172b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-172b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-173a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-173a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-173b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-173b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-174a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-174a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-174b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-174b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-175a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-175a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-175b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-175b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-175c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-175c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-176-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-176-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-177a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-177a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-177b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-177b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-178-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-178-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-179-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-179-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-179a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-179a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-180a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-180a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-181-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-181-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-182-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-182-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-183-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-183-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184d-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184e-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184e-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184f-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-184f-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-18a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-18a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-18b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-18b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-18c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-18c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-19-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-19-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-2-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-2-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-20-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-20-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-21-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-21-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-21b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-21b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-21c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-21c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-22-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-22-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-24-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-25-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-25-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-27-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-27-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-27a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-27a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-27b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-27b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-28-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-28-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-28b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-28b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-29-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-29-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-29b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-29b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-3-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-3-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-30-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-30-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-31-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-31-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-32-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-32-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-33-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-33-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-34-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-34-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-35-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-35-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-36-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-36-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-37-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-37-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-38-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-38-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-39c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-3a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-3a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-4-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-4-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-41-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-41-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-41a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-41a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-42-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-42-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-42a-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-42a-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-43-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-43-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-43b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-43b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44d-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-44d-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-45-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-45-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-45b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-45b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-45c-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-45c-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-46-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-46-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-46b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-46b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-47-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-47-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-48-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-48-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-49-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-49-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-5-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-5-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-50-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-50-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-51-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-51-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-52-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-52-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-53-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-53-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-54-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-54-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-55-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-55-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-56-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-56-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-57-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-57-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-57b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-57b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-59-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-59-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-6-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-6-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-60-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-60-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-61-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-61-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-62-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-62-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-63-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-63-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-64-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-64-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-65-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-65-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-66-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-66-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-66b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-66b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-67-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-67-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-68-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-7-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-7-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-70-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-70-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-72-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-72-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-72b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-72b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-73-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-73-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-73b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-73b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-74-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-74-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-74b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-74b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-75-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-75-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-75b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-75b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-76-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-76-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-76b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-76b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-77-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-77-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-77b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-77b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-78-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-78-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-78b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-78b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-79-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-79-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-7b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-7b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-8-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-8-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-80-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-80-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-81-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-81-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-81b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-81b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-82-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-82-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-82b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-82b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-83-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-83-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-86-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-86-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-87-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-87-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-87b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-87b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-88-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-88-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-88b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-88b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-89-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-89-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-9-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-9-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-90-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-90-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-90b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-90b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-91-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-91-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-92-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-92-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-93-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-93-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-94-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-94-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-94b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-94b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-95-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-95-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-96-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-96-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-96b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-96b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-97-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-97-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-97b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-97b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-98-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-98-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-98b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-98b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-99-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-99-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-99b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-99b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d1-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d1-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d1b-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d2-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d2-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d3-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d3-expected.txt: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d4-expected.png: Removed.
  • platform/mac/css3/selectors3/xml/css3-modsel-d4-expected.txt: Removed.
  • platform/mac/fast/css/css3-modsel-22-expected.png: Removed.
  • platform/mac/fast/css/css3-modsel-22-expected.txt: Removed.
  • platform/win/css3/css3-modsel-33-expected.txt: Removed.
  • platform/win/css3/css3-modsel-35-expected.txt: Removed.
  • platform/win/css3/css3-modsel-36-expected.txt: Removed.
  • platform/win/css3/css3-modsel-37-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-1-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-10-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-11-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-13-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-14-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-144-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-148-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-149-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-149b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-14b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-14c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-14d-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-14e-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-15-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-150-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-151-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-152-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-154-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-155-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-155a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-155b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-155c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-155d-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-156-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-156b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-156c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-157-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-158-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-159-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-15b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-16-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-160-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-161-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-161-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-166-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-166a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-167-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-167a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-168-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-168a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-169-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-169a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-17-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-170-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-170a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-170b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-170c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-170d-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-175a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-175b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-175c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-176-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-177a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-177b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-178-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-179-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-179a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-180a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-181-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-183-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-184a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-184b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-184c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-184d-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-184e-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-184f-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-18a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-18b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-18c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-19-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-19b-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-2-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-20-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-21-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-21b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-21c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-22-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-23-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-24-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-25-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-25-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-27-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-27a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-27b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-28-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-28b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-29-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-29b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-30-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-31-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-32-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-33-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-34-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-35-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-36-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-37-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-38-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-39-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-39a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-39b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-39c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-3a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-4-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-41-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-41a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-42-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-42a-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-43-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-43b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-44-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-44b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-44c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-44d-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-45-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-45b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-45c-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-46-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-46b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-5-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-54-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-55-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-56-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-59-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-6-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-60-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-61-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-62-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-63-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-64-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-64-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-65-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-66-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-66b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-67-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-68-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-69-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-7-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-70-expected.png: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-70-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-72-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-72b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-73-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-73b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-74-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-74b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-75-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-75b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-76-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-76b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-77-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-77b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-78-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-78b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-79-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-7b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-8-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-80-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-81-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-81b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-82-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-82b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-83-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-86-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-87-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-87b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-88-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-88b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-89-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-9-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-90-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-90b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-d1-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-d1b-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-d2-expected.txt: Removed.
  • platform/win/css3/selectors3/html/css3-modsel-d4-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-161-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-19b-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-23-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-24-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-25-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-64-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-68-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-69-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-70-expected.png: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Removed.
  • platform/win/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-1-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-10-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-100-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-100b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-101-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-101b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-102-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-102b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-103-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-103b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-104-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-104b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-105-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-105b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-106-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-106b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-107-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-107b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-108-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-108b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-109-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-109b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-11-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-110-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-110b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-111-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-111b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-112-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-112b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-113-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-113b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-114-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-114b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-115-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-115b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-116-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-116b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-117-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-117b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-118-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-119-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-120-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-121-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-122-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-123-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-123b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-124-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-124b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-125-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-125b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-126-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-126b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-127-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-127b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-128-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-128b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-129-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-129b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-13-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-130-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-130b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-131-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-131b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-132-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-132b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-133-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-133b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-134-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-134b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-135-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-135b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-136-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-136b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-137-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-137b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-138-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-138b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-139-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-139b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-14-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-140-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-140b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-141-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-141b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-142-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-142b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-143-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-143b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-144-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-145a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-145b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-146a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-146b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-147a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-147b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-148-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-149-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-149b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-14b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-14c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-14d-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-14e-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-15-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-150-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-151-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-152-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-153-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-154-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-155-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-155a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-155b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-155c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-155d-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-156-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-156b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-156c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-157-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-158-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-159-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-15b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-15c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-16-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-160-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-161-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-161-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-166-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-166a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-167-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-167a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-168-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-168a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-169-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-169a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-17-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-170-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-170a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-170b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-170c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-170d-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-171-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-172a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-172b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-173a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-173b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-174a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-174b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-175a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-175b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-175c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-176-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-177a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-177b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-178-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-179-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-179a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-180a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-181-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-182-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-183-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-184a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-184b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-184c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-184d-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-184e-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-184f-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-18a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-18b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-18c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-19-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-19b-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-2-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-20-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-21-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-21b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-21c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-22-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-23-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-24-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-25-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-25-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-27-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-27a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-27b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-28-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-28b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-29-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-29b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-3-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-30-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-31-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-32-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-33-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-34-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-35-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-36-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-37-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-38-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-39-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-39a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-39b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-39c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-3a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-4-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-41-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-41a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-42-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-42a-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-43-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-43b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-44-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-44b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-44c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-44d-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-45-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-45b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-45c-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-46-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-46b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-47-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-48-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-49-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-5-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-50-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-51-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-52-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-53-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-54-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-55-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-56-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-57-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-57b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-59-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-6-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-60-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-61-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-62-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-63-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-64-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-64-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-65-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-66-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-66b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-67-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-68-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-69-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-7-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-70-expected.png: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-70-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-72-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-72b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-73-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-73b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-74-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-74b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-75-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-75b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-76-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-76b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-77-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-77b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-78-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-78b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-79-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-7b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-8-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-80-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-81-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-81b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-82-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-82b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-83-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-86-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-87-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-87b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-88-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-88b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-89-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-9-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-90-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-90b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-91-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-92-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-93-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-94-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-94b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-95-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-96-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-96b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-97-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-97b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-98-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-98b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-99-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-99b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-d1-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-d2-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-d3-expected.txt: Removed.
  • platform/win/css3/selectors3/xml/css3-modsel-d4-expected.txt: Removed.
  • platform/win/fast/css/css3-modsel-22-expected.txt: Removed.
  • platform/wincairo/TestExpectations:
  • platform/wincairo/css3/css3-modsel-33-expected.txt: Removed.
  • platform/wincairo/css3/css3-modsel-35-expected.txt: Removed.
  • platform/wincairo/css3/css3-modsel-36-expected.txt: Removed.
  • platform/wincairo/css3/css3-modsel-37-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-1-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-10-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-11-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-13-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-14-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-144-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-148-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-149-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-149b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-14b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-14c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-14d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-14e-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-15-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-150-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-151-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-152-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-154-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-155-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-155a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-155b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-155c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-155d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-156-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-156b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-156c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-157-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-158-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-159-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-15b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-16-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-160-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-161-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-166-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-166a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-167-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-167a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-168-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-168a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-169-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-169a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-17-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-170-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-170a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-170b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-170c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-170d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-175a-expected.png: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-175a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-175b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-175c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-176-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-177a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-177b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-178-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-179-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-179a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-180a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-181-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-183-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-184a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-184b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-184c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-184d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-184e-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-184f-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-18a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-18b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-18c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-19-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-2-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-20-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-21-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-21b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-21c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-22-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-25-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-27-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-27a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-27b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-28-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-28b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-29-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-29b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-30-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-31-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-32-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-33-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-34-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-35-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-36-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-37-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-38-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-39-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-39a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-39b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-39c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-3a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-4-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-41-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-41a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-42-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-42a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-43-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-43b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-44-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-44b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-44c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-44d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-45-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-45b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-45c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-46-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-46b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-5-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-54-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-55-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-56-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-59-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-6-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-60-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-61-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-62-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-63-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-64-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-65-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-66-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-66b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-67-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-7-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-70-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-72-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-72b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-73-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-73b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-74-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-74b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-75-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-75b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-76-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-76b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-77-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-77b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-78-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-78b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-79-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-7b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-8-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-80-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-81-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-81b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-82-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-82b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-83-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-86-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-87-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-87b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-88-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-88b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-89-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-9-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-90-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-90b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-d1-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-d1b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-d2-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/html/css3-modsel-d4-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-1-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-10-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-100-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-100b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-101-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-101b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-102-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-102b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-103-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-103b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-104-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-104b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-105-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-105b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-106-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-106b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-107-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-107b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-108-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-108b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-109-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-109b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-11-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-110-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-110b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-111-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-111b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-112-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-112b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-113-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-113b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-114-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-114b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-115-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-115b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-116-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-116b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-117-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-117b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-118-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-119-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-120-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-121-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-122-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-123-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-123b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-124-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-124b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-125-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-125b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-126-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-126b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-127-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-127b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-128-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-128b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-129-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-129b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-13-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-130-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-130b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-131-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-131b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-132-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-132b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-133-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-133b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-134-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-134b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-135-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-135b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-136-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-136b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-137-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-137b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-138-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-138b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-139-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-139b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-14-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-140-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-140b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-141-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-141b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-142-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-142b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-143-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-143b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-144-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-145a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-145b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-146a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-146b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-147a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-147b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-148-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-149-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-149b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-14b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-14c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-14d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-14e-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-15-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-150-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-151-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-152-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-153-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-154-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-155-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-155a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-155b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-155c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-155d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-156-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-156b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-156c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-157-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-158-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-159-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-15b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-15c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-16-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-160-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-161-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-166-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-166a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-167-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-167a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-168-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-168a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-169-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-169a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-17-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-170-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-170a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-170b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-170c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-170d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-171-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-172a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-172b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-173a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-173b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-174a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-174b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-175a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-175b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-175c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-176-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-177a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-177b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-178-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-179-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-179a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-180a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-181-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-182-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-183-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-184a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-184b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-184c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-184d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-184e-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-184f-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-18a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-18b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-18c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-19-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-2-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-20-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-21-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-21b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-21c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-22-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-25-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-27-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-27a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-27b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-28-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-28b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-29-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-29b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-3-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-30-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-31-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-32-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-33-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-34-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-35-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-36-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-37-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-38-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-39-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-39a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-39b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-39c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-3a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-4-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-41-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-41a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-42-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-42a-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-43-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-43b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-44-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-44b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-44c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-44d-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-45-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-45b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-45c-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-46-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-46b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-47-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-48-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-49-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-5-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-50-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-51-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-52-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-53-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-54-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-55-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-56-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-57-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-57b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-59-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-6-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-60-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-61-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-62-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-63-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-64-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-65-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-66-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-66b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-67-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-7-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-70-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-72-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-72b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-73-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-73b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-74-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-74b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-75-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-75b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-76-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-76b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-77-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-77b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-78-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-78b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-79-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-7b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-8-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-80-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-81-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-81b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-82-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-82b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-83-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-86-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-87-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-87b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-88-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-88b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-89-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-9-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-90-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-90b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-91-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-92-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-93-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-94-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-94b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-95-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-96-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-96b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-97-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-97b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-98-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-98b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-99-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-99b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-d1-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-d2-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-d3-expected.txt: Removed.
  • platform/wincairo/css3/selectors3/xml/css3-modsel-d4-expected.txt: Removed.
  • platform/wincairo/fast/css/css3-modsel-22-expected.txt: Removed.
  • platform/wpe/css3/css3-modsel-33-expected.txt: Removed.
  • platform/wpe/css3/css3-modsel-35-expected.txt: Removed.
  • platform/wpe/css3/css3-modsel-36-expected.txt: Removed.
  • platform/wpe/css3/css3-modsel-37-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-1-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-10-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-11-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-13-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-14-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-144-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-148-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-149-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-149b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-14b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-14c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-14d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-14e-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-15-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-150-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-151-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-152-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-154-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-155-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-155a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-155b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-155c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-155d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-156-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-156b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-156c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-157-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-158-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-159-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-15b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-16-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-160-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-161-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-166-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-166a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-167-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-167a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-168-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-168a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-169-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-169a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-17-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-170-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-170a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-170b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-170c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-170d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-175a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-175b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-175c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-176-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-177a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-177b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-178-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-179-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-179a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-18-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-180a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-181-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-183-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-184a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-184b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-184c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-184d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-184e-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-184f-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-18a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-18b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-18c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-19-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-19b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-2-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-20-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-21-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-21b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-21c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-22-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-23-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-24-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-25-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-27-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-27a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-27b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-28-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-28b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-29-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-29b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-30-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-31-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-32-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-33-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-34-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-35-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-36-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-37-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-38-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-39-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-39a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-39b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-39c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-3a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-4-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-41-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-41a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-42-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-42a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-43-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-43b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-44-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-44b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-44c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-44d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-45-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-45b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-45c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-46-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-46b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-5-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-54-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-55-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-56-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-59-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-6-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-60-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-61-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-62-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-63-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-64-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-65-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-66-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-66b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-67-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-68-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-69-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-7-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-70-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-72-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-72b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-73-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-73b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-74-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-74b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-75-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-75b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-76-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-76b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-77-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-77b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-78-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-78b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-79-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-7b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-8-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-80-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-81-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-81b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-82-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-82b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-83-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-86-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-87-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-87b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-88-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-88b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-89-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-9-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-90-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-90b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-d1-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-d1b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-d2-expected.txt: Removed.
  • platform/wpe/css3/selectors3/html/css3-modsel-d4-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-1-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-10-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-100-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-100b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-101-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-101b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-102-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-102b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-103-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-103b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-104-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-104b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-105-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-105b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-106-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-106b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-107-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-107b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-108-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-108b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-109-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-109b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-11-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-110-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-110b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-111-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-111b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-112-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-112b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-113-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-113b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-114-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-114b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-115-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-115b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-116-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-116b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-117-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-117b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-118-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-119-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-120-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-121-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-122-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-123-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-123b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-124-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-124b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-125-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-125b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-126-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-126b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-127-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-127b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-128-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-128b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-129-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-129b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-13-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-130-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-130b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-131-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-131b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-132-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-132b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-133-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-133b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-134-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-134b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-135-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-135b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-136-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-136b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-137-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-137b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-138-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-138b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-139-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-139b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-14-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-140-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-140b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-141-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-141b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-142-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-142b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-143-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-143b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-144-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-145a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-145b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-146a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-146b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-147a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-147b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-148-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-149-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-149b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-14b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-14c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-14d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-14e-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-15-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-150-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-151-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-152-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-153-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-154-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-155-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-155a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-155b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-155c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-155d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-156-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-156b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-156c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-157-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-158-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-159-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-15b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-15c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-16-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-160-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-161-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-166-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-166a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-167-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-167a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-168-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-168a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-169-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-169a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-17-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-170-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-170a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-170b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-170c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-170d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-171-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-172a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-172b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-173a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-173b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-174a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-174b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-175a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-175b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-175c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-176-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-177a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-177b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-178-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-179-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-179a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-18-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-180a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-181-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-182-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-183-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-184a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-184b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-184c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-184d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-184e-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-184f-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-18a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-18b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-18c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-19-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-19b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-2-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-20-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-21-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-21b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-21c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-22-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-23-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-24-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-25-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-27-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-27a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-27b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-28-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-28b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-29-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-29b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-3-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-30-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-31-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-32-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-33-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-34-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-35-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-36-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-37-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-38-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-39-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-39a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-39b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-39c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-3a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-4-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-41-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-41a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-42-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-42a-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-43-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-43b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-44-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-44b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-44c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-44d-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-45-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-45b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-45c-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-46-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-46b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-47-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-48-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-49-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-5-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-50-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-51-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-52-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-53-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-54-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-55-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-56-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-57-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-57b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-59-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-6-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-60-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-61-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-62-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-63-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-64-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-65-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-66-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-66b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-67-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-68-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-69-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-7-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-70-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-72-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-72b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-73-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-73b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-74-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-74b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-75-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-75b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-76-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-76b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-77-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-77b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-78-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-78b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-79-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-7b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-8-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-80-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-81-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-81b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-82-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-82b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-83-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-86-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-87-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-87b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-88-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-88b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-89-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-9-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-90-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-90b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-91-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-92-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-93-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-94-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-94b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-95-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-96-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-96b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-97-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-97b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-98-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-98b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-99-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-99b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-d1-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-d2-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-d3-expected.txt: Removed.
  • platform/wpe/css3/selectors3/xml/css3-modsel-d4-expected.txt: Removed.
  • platform/wpe/fast/css/css3-modsel-22-expected.txt: Removed.
10:22 PM Changeset in webkit [259280] by ddkilzer@apple.com
  • 3 edits in trunk/Source/WebKit

REGRESSION (r251574, r251600): _WKTextManipulationToken and _WKTextManipulationConfiguration are missing -dealloc
<https://webkit.org/b/209794>

Reviewed by Wenson Hsieh.

  • UIProcess/API/Cocoa/_WKTextManipulationConfiguration.mm:

(-[_WKTextManipulationConfiguration dealloc]): Add.

  • UIProcess/API/Cocoa/_WKTextManipulationToken.mm:

(-[_WKTextManipulationToken dealloc]): Add.

8:55 PM Changeset in webkit [259279] by Peng Liu
  • 3 edits in trunk/Tools

PiP support of MiniBrowser is broken
https://bugs.webkit.org/show_bug.cgi?id=209749

Reviewed by Jer Noble.

Add com.apple.PIPAgent to the mach-lookup.global.name temporary exception entitlement.

  • MiniBrowser/MiniBrowser.entitlements:

Fix an issue that the intended preferences are overwritten by default values
and enable the PiP support.

  • MiniBrowser/mac/AppDelegate.m:

(-[BrowserAppDelegate defaultConfiguration]):

8:35 PM Changeset in webkit [259278] by Simon Fraser
  • 5 edits in trunk/Source/WebCore

ScrollLatchingState should use WeakPtr<Element>
https://bugs.webkit.org/show_bug.cgi?id=209714

Reviewed by Darin Adler.

ScrollLatchingState shouldn't affect element lifetimes. Change it to use WeakPtr instead
of RefPtr<>.

  • page/EventHandler.cpp:

(WebCore::EventHandler::defaultWheelEventHandler):

  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::platformPrepareForWheelEvents):

  • page/scrolling/ScrollLatchingState.cpp:

(WebCore::ScrollLatchingState::setWheelEventElement):
(WebCore::ScrollLatchingState::setPreviousWheelScrolledElement):
(WebCore::ScrollLatchingState::setScrollableContainer):

  • page/scrolling/ScrollLatchingState.h:
8:32 PM Changeset in webkit [259277] by Nikita Vasilyev
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: the Dock Side navigation item is automatically focused when Web Inspector is opened detached, preventing any global spacebar shortcuts from working
https://bugs.webkit.org/show_bug.cgi?id=209760

Reviewed by Devin Rousso.

When undocking, Web Inspector focuses on the first visible focusable element. I don't know why.
This patch restores the focus to the previously focused element.

  • UserInterface/Base/Main.js:
8:12 PM Changeset in webkit [259276] by Megan Gardner
  • 5 edits in trunk/Source

Update to new Data Detectors SPI
https://bugs.webkit.org/show_bug.cgi?id=209788
<rdar://problem/60690050>

Reviewed by Tim Horton.

Source/WebCore:

Updating to a newer SPI to help Data Detectors.
No behavior change.

  • page/mac/ServicesOverlayController.mm:

(WebCore::ServicesOverlayController::buildPhoneNumberHighlights):
(WebCore::ServicesOverlayController::buildSelectionHighlight):

Source/WebCore/PAL:

  • pal/spi/mac/DataDetectorsSPI.h:
7:45 PM Changeset in webkit [259275] by wilander@apple.com
  • 33 edits
    4 adds in trunk

Experimental: Enforce SameSite=strict for domains classified as bounce trackers
https://bugs.webkit.org/show_bug.cgi?id=209761
<rdar://problem/59394943>

Reviewed by Brent Fulgham and Kate Cheney (informal).

Source/WebCore:

This experimental feature is part of Intelligent Tracking Prevention and only enabled if
ITP (Resource Load Statistics) are. A new enum WebCore::SameSiteStrictEnforcementEnabled
controls the new behavior with default setting WebCore::SameSiteStrictEnforcementEnabled::No.

The features keeps a separate count of topFrameUniqueRedirectsToSinceSameSiteStrictEnforcement
which builds up to a threshold. Once a domain goes above the threshold, its cookies are
rewritten as SameSite=strict and the topFrameUniqueRedirectsToSinceSameSiteStrictEnforcement
counter for that domain is reset, effectively giving the domain a new chance to change its
behavior.

Tests: http/tests/resourceLoadStatistics/enforce-samesite-strict-based-on-top-frame-unique-redirects-to-database.html

http/tests/resourceLoadStatistics/enforce-samesite-strict-based-on-top-frame-unique-redirects-to.html

  • loader/ResourceLoadStatistics.h:

New field topFrameUniqueRedirectsToSinceSameSiteStrictEnforcement.

  • page/Settings.yaml:
  • platform/network/NetworkStorageSession.h:

New enum SameSiteStrictEnforcementEnabled.

Source/WebKit:

This experimental feature is part of Intelligent Tracking Prevention and only enabled if
ITP (Resource Load Statistics) are. A new enum WebCore::SameSiteStrictEnforcementEnabled
controls the new behavior with default setting WebCore::SameSiteStrictEnforcementEnabled::No.

The features keeps a separate count of topFrameUniqueRedirectsToSinceSameSiteStrictEnforcement
which builds up to a threshold. Once a domain goes above the threshold, its cookies are
rewritten as SameSite=strict and the topFrameUniqueRedirectsToSinceSameSiteStrictEnforcement
counter for that domain is reset, effectively giving the domain a new chance to change its
behavior.

Test infrastructure is added to allow for layout tests.

  • NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:

(WebKit::ResourceLoadStatisticsDatabaseStore::createUniqueIndices):
(WebKit::ResourceLoadStatisticsDatabaseStore::createSchema):
(WebKit::ResourceLoadStatisticsDatabaseStore::insertDomainRelationships):
(WebKit::CompletionHandler<void):

  • NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.h:
  • NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp:

(WebKit::ResourceLoadStatisticsMemoryStore::logFrameNavigation):
(WebKit::ResourceLoadStatisticsMemoryStore::setTopFrameUniqueRedirectTo):
(WebKit::ResourceLoadStatisticsMemoryStore::shouldEnforceSameSiteStrictFor):
(WebKit::ResourceLoadStatisticsMemoryStore::registrableDomainsToDeleteOrRestrictWebsiteDataFor):

  • NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.h:
  • NetworkProcess/Classifier/ResourceLoadStatisticsStore.h:

(WebKit::ResourceLoadStatisticsStore::setSameSiteStrictEnforcementEnabled):
(WebKit::ResourceLoadStatisticsStore::isSameSiteStrictEnforcementEnabled const):

  • NetworkProcess/Classifier/WebResourceLoadStatisticsStore.cpp:

(WebKit::WebResourceLoadStatisticsStore::setSameSiteStrictEnforcementEnabled):

  • NetworkProcess/Classifier/WebResourceLoadStatisticsStore.h:

(WebKit::RegistrableDomainsToDeleteOrRestrictWebsiteDataFor::isolatedCopy const):
(WebKit::RegistrableDomainsToDeleteOrRestrictWebsiteDataFor::isEmpty const):

  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::setShouldEnbleSameSiteStrictEnforcementForTesting):

  • NetworkProcess/NetworkProcess.h:
  • NetworkProcess/NetworkProcess.messages.in:

Added SetShouldEnbleSameSiteStrictEnforcementForTesting.

  • NetworkProcess/NetworkSession.cpp:

(WebKit::NetworkSession::NetworkSession):
(WebKit::NetworkSession::forwardResourceLoadStatisticsSettings):
(WebKit::NetworkSession::deleteAndRestrictWebsiteDataForRegistrableDomains):
(WebKit::NetworkSession::setShouldEnbleSameSiteStrictEnforcement):

  • NetworkProcess/NetworkSession.h:
  • Scripts/webkit/messages.py:

IPC instructions to find WebCore::SameSiteStrictEnforcementEnabled in
WebCore/NetworkStorageSession.h.

  • Shared/ResourceLoadStatisticsParameters.h:

(WebKit::ResourceLoadStatisticsParameters::encode const):
(WebKit::ResourceLoadStatisticsParameters::decode):

  • Shared/WebPreferences.yaml:
  • UIProcess/API/APINavigation.h:

(API::Navigation::setIsLoadedWithNavigationShared):
(API::Navigation::isLoadedWithNavigationShared const):

Keeps track of how a navigation occurs to make sure that
WebPageProxy::logFrameNavigation() can capture navigations initiated by the
user through the hosting application.

  • UIProcess/API/C/WKWebsiteDataStoreRef.cpp:

(WKWebsiteDataStoreStatisticsResetToConsistentState):

  • UIProcess/Network/NetworkProcessProxy.cpp:

(WebKit::NetworkProcessProxy::setShouldEnbleSameSiteStrictEnforcementForTesting):

  • UIProcess/Network/NetworkProcessProxy.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::loadRequestWithNavigationShared):

See comment above for API::Navigation.

(WebKit::WebPageProxy::decidePolicyForNavigationAction):

See comment above for API::Navigation.

  • UIProcess/WebProcessPool.cpp:

(WebKit::WebProcessPool::ensureNetworkProcess):

  • UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:

(WebKit::WebsiteDataStore::parameters):

  • UIProcess/WebsiteData/WebsiteDataStore.cpp:

(WebKit::WebsiteDataStore::setResourceLoadStatisticsShouldEnbleSameSiteStrictEnforcementForTesting):

  • UIProcess/WebsiteData/WebsiteDataStore.h:

LayoutTests:

  • http/tests/resourceLoadStatistics/enforce-samesite-strict-based-on-top-frame-unique-redirects-to-database-expected.txt: Added.
  • http/tests/resourceLoadStatistics/enforce-samesite-strict-based-on-top-frame-unique-redirects-to-database.html: Added.
  • http/tests/resourceLoadStatistics/enforce-samesite-strict-based-on-top-frame-unique-redirects-to-expected.txt: Added.
  • http/tests/resourceLoadStatistics/enforce-samesite-strict-based-on-top-frame-unique-redirects-to.html: Added.
  • platform/ios/TestExpectations:

New test cases marked as pass for Catalina+ based on CFNetwork API availability.

  • platform/mac-wk2/TestExpectations:

New test cases marked as pass for Catalina+ based on CFNetwork API availability.

  • platform/wk2/TestExpectations:

New test cases marked as skip due to CFNetwork API availability.

7:41 PM Changeset in webkit [259274] by Devin Rousso
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: REGRESSION(r259101): items in the contextmenu of the tab bar don't have any text
https://bugs.webkit.org/show_bug.cgi?id=209793

Reviewed by Timothy Hatcher.

Fix a few places that weren't changed to use displayName instead of title.

  • UserInterface/Base/Main.js:

(WI._tabBrowserSelectedTabContentViewDidChange):

  • UserInterface/Views/TabBar.js:

(WI.TabBar.prototype._handleTabContainerMouseDown):
(WI.TabBar.prototype._handleTabContainerContextMenu):

7:09 PM Changeset in webkit [259273] by Alan Coon
  • 3 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258958. rdar://problem/61082960

Ignore in-app browser privacy checks for apps with com.apple.private.applemediaservices entitlement
https://bugs.webkit.org/show_bug.cgi?id=209509
<rdar://problem/60750956>

Reviewed by Brent Fulgham.

  • UIProcess/WebPageProxy.cpp: (WebKit::m_ignoresAppBoundDomains): (WebKit::WebPageProxy::setIsNavigatingToAppBoundDomain):
  • UIProcess/WebPageProxy.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258958 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259272] by Alan Coon
  • 4 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258821. rdar://problem/61082970

Adopt -[UIWindowScene interfaceOrientation] when determining device orientation
https://bugs.webkit.org/show_bug.cgi?id=209372
<rdar://problem/60491857>

Reviewed by Darin Adler.

Currently, for WebKit clients that have adopted the UIScene lifecycle (and also do not set an interface
orientation override, like MobileSafari does), device orientation APIs will always report that the device is in
portrait mode, regardless of the actual device orientation. This is because our current mechanism for tracking
device orientation asks the shared UIApplication for its -statusBarOrientation. This is hard-coded to always
return UIInterfaceOrientationPortrait for apps that adopt the UIScene lifecycle, and will additionally trigger a
simulated crash, explaining that it is invalid for any scene-based app to call -statusBarOrientation.

To fix this, we adjust the deviceOrientation helper in WKWebViewIOS.mm to work for scene-based apps. See below
for more details.

  • Platform/spi/ios/UIKitSPI.h:
  • UIProcess/API/ios/WKWebViewIOS.h:
  • UIProcess/API/ios/WKWebViewIOS.mm: (-[WKWebView _setupScrollAndContentViews]):

Change call sites of deviceOrientation() to be [self _deviceOrientation] instead.

(-[WKWebView _deviceOrientation]):

Replace deviceOrientation() with a _deviceOrientation helper method on WKWebView. For non-scene-based
apps, this new helper method does not change any behavior, and continues to go through UIApplication. However,
for scene-based apps, we instead ask the web view's window's UIWindowScene for its interface orientation.

Importantly, this means that if a WKWebView is not parented, it doesn't have a valid device orientation (i.e.
the orientation is UIInterfaceOrientationUnknown). As such, a newly created WKWebView that is unparented will
start out with no orientation; it's only upon moving the view into a window that it is able to determine the
device orientation. To ensure this, we add logic to -didMoveToWindow to recompute device orientation and
dispatch an update if needed.

To avoid sending unnecessary updates, if a WKWebView is unparented, we wait until it's parented again to send
the new device orientation.

(-[WKWebView didMoveToWindow]):
(-[WKWebView _windowDidRotate:]):
(deviceOrientation): Deleted.

See -[WKWebView _deviceOrientation] above.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258821 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259271] by Alan Coon
  • 6 edits in branches/safari-610.1.7-branch

Cherry-pick r258804. rdar://problem/61082982

[iPadOS] Yahoo! search results are sometimes zoomed in a little
https://bugs.webkit.org/show_bug.cgi?id=209356
<rdar://problem/60563952>

Reviewed by Tim Horton.

Source/WebKit:

When the web content process uses WebPage::scalePage() to modify the viewport scale (e.g. after a viewport
configuration change) on iOS, it's possible for this new scale to be replaced by a previous scale when
dispatching the next visible content rect update. Consider the following scenario:

  1. A remote layer tree transaction is sent to the UI process containing scale a.
  2. WebPage::scalePage is called with a scale b.
  3. A visible content rect update with scale a is scheduled, sent to the web process and dispatched.
  4. The page scale reverts to a.

This bug exercises the above scenario: the Yahoo search results page specifies a responsive viewport
(device-width and scale=1), but proceeds to lay out outside of the bounds of the device width. As such, after
the document finishes parsing, we attempt to shrink the page to fit; however, if this shrinking happens after
a remote layer tree transaction with the old scale but before the next visible content rect update containing
that old scale, we will end up reverting to this old scale instead of the scale after shrinking to fit. This
same bug is present when using setViewScale, which was exercised by the flaky test below, since the new scale
after the viewport configuration change may be overridden by an incoming visible content rect update.

To fix this, we add a mechanism to detect when the page scale has been changed by the web process (e.g. after a
viewport change) and remember the last committed layer tree identifier at that moment. Later, if we get a
visible content rect update with a layer tree commit identifier equal to (or older than) the layer tree commit
identifier when we changed the page scale, don't set the page scale factor using this incoming scale; instead,
wait for the next visible content rect update (which will contain the new scale).

Fixes an existing flaky test: fast/viewport/ios/device-width-viewport-after-changing-view-scale.html

  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::close): (WebKit::WebPage::scalePage): (WebKit::WebPage::platformDidScalePage):

Add a platform hook that is invoked after scaling the page via scalePage. See below for the iOS version.

(WebKit::WebPage::didCommitLoad):
(WebKit::WebPage::didFinishDocumentLoad):
(WebKit::WebPage::didFinishLoad):

Drive-by fix: remove an unnecessary UNUSED_PARAM. Also, replace calls to schedule the shrink to fit content
timer with a call to shrinkToFitContent instead.

  • WebProcess/WebPage/WebPage.h:

Add a member variable to remember the last sent layer tree commit ID and page scale, when we last changed the
page scale via the web process. This is set in platformDidScalePage below.

  • WebProcess/WebPage/ios/WebPageIOS.mm: (WebKit::WebPage::dynamicViewportSizeUpdate): (WebKit::WebPage::shrinkToFitContent):

Refactor this to not return a bool, but instead call viewportConfigurationChanged at the end if the viewport
actually changed.

(WebKit::WebPage::updateVisibleContentRects):

Ignore the incoming page scale when updating visible content rects if it:

  1. Is the same as the last page scale we sent via layer tree commit.
  2. After sending the above scale, we've since adjusted the page scale such that it is no longer the same.

(WebKit::WebPage::platformDidScalePage):

Update m_lastLayerTreeTransactionIdAndPageScaleBeforeScalingPage.

(WebKit::WebPage::scheduleShrinkToFitContent): Deleted.
(WebKit::WebPage::shrinkToFitContentTimerFired): Deleted.

Remove the zero-delay timer before running the shrink-to-fit heuristic, and just call shrinkToFitContent
directly. This was a source of flakiness when trying to reproduce the bug, and doesn't seem to serve any
purpose since we shrink-to-fit after dispatching the "DOMContentLoaded" and "load" events anyways.

(WebKit::WebPage::immediatelyShrinkToFitContent): Deleted.

LayoutTests:

Remove failing expectations for fast/viewport/ios/device-width-viewport-after-changing-view-scale.html.

  • platform/ios-wk2/TestExpectations:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258804 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259270] by Alan Coon
  • 5 edits in branches/safari-610.1.7-branch

Cherry-pick r258659. rdar://problem/61083009

REGRESSION (r257214): Targeted preview animates to the wrong place when dropping in editable content
https://bugs.webkit.org/show_bug.cgi?id=209218
<rdar://problem/60560831>

Reviewed by Tim Horton.

Source/WebKit:

In r257214, we split out the context menu hint preview container view into two views: one for drag and drop, and
another for the context menu hint. The container view used for both drag and drop previews was removed under
-cleanUpDragSourceSessionState, which is invoked after both drag and drop sessions have ended; however, in the
case of a drop in editable content where the drop preview is delayed, the drop animation can end up finishing
after -cleanUpDragSourceSessionState is invoked. This means we end up prematurely unparenting the preview
container, which results in a broken drop animation.

To fix this, split the drag and drop container views further, into separate container views for dragging and for
dropping. The drag preview container will continue to be removed under -cleanUpDragSourceSessionState, and the
drop preview container will now be removed under the delegate call to -dropInteraction:concludeDrop:, which is
invoked by UIKit after all drop previews are finished animating.

Covered by adding additional test assertions while running existing API tests (see Tools/ChangeLog for more
details).

  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm: (-[WKContentView _createPreviewContainerWithLayerName:]):

Pull out common logic for creating and setting up a preview container view into a helper method. This is used by
the three methods below, which ensure container views for each of the types of previews we create when showing
the context menu, dragging an element, and dropping.

(-[WKContentView containerForDropPreviews]):
(-[WKContentView containerForDragPreviews]):
(-[WKContentView containerForContextMenuHintPreviews]):

Add a third preview container view for drop previews, and factor duplicated code in these three methods into a
common helper (see above).

(-[WKContentView _hideTargetedPreviewContainerViews]):
(-[WKContentView _deliverDelayedDropPreviewIfPossible:]):

Instead of using the container for drag previews, use the container for drop previews.

(-[WKContentView dropInteraction:concludeDrop:]):

Remove the drop preview container after the drop has concluded (i.e. all animations are complete).

Tools:

Augment the drag and drop test harness to verify that for all targeted previews, if they have container views,
those views must be parented (i.e. they must be connected to a UIWindow).

  • TestWebKitAPI/ios/DragAndDropSimulatorIOS.mm: (-[DragAndDropSimulator _concludeDropAndPerformOperationIfNecessary]): (-[DragAndDropSimulator _expectNoDropPreviewsWithUnparentedContainerViews]): (-[DragAndDropSimulator _invokeDropAnimationCompletionBlocksAndConcludeDrop]):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258659 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259269] by Alan Coon
  • 2 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258530. rdar://problem/61082999

Crash under WebCookieCache::clearForHost()
https://bugs.webkit.org/show_bug.cgi?id=209149
<rdar://problem/60453086>

Reviewed by Darin Adler.

Alternative fix for Bug 209149 based on comments from Darin.

  • WebProcess/WebPage/WebCookieCache.cpp: (WebKit::WebCookieCache::clearForHost): (WebKit::WebCookieCache::pruneCacheIfNecessary):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258530 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259268] by Alan Coon
  • 4 edits in branches/safari-610.1.7-branch

Cherry-pick r258521. rdar://problem/61082999

Crash under WebCookieCache::clearForHost()
https://bugs.webkit.org/show_bug.cgi?id=209149
<rdar://problem/60453086>

Reviewed by Alex Christensen.

Source/WebKit:

Make sure WebCookieCache::pruneCacheIfNecessary() keeps alive the host String it is passing
to WebCookieCache::clearForHost(). Previously, it was merely deferencing a HashSet iterator
and passing that to clearForHost(). However, clearForHost() would then drop the String from
the HashSet and the host would no longer be valid.

Change covered by new API test.

  • WebProcess/WebPage/WebCookieCache.cpp: (WebKit::WebCookieCache::pruneCacheIfNecessary):

Tools:

Add API test coverage.

  • TestWebKitAPI/Tests/WebKitCocoa/CookiePrivateBrowsing.mm: (TEST):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258521 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259267] by Alan Coon
  • 3 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258456. rdar://problem/61082974

Clean up sandbox violations found during testing
https://bugs.webkit.org/show_bug.cgi?id=209096
<rdar://problem/59931477>

Reviewed by Geoffrey Garen.

Remove telemetry from some items, and allow access to some IOKit properties
needed for media playback on macOS and iOS.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
  • WebProcess/com.apple.WebProcess.sb.in:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258456 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259266] by Alan Coon
  • 13 edits
    1 add in branches/safari-610.1.7-branch/Source/JavaScriptCore

Cherry-pick r258344. rdar://problem/61083004

[JSC] Use CacheableIdentifier in ByValInfo
https://bugs.webkit.org/show_bug.cgi?id=208978

Reviewed by Saam Barati.

CodeBlock::finalizeUnconditionally discards JITData. And this includes ByValInfo, which holds Identifier.
However, finalizeUnconditionally is only guaranteeing that the main thread is not working. It can be invoked
in the heap thread, and it is not not setting the AtomStringTable for this heap thread. If Identifier destroys
AtomStringImpl, which fails to unregister itself from the table.

In this patch,

  1. We explicitly set nullptr for the current AtomStringTable to catch the bug as soon as possible in GC end phase.
  2. We use CacheableIdentifier in ByValInfo to avoid destroying Identifier in CodeBlock::finalizeUnconditionally.
  • CMakeLists.txt:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • Sources.txt:
  • bytecode/ByValInfo.cpp: Added. (JSC::ByValInfo::visitAggregate):
  • bytecode/ByValInfo.h:
  • bytecode/CodeBlock.cpp: (JSC::CodeBlock::stronglyVisitStrongReferences):
  • bytecode/CodeBlock.h:
  • dfg/DFGByteCodeParser.cpp: (JSC::DFG::ByteCodeParser::handlePutByVal):
  • heap/Heap.cpp: (JSC::Heap::runEndPhase):
  • jit/JIT.h:
  • jit/JITOperations.cpp:
  • jit/JITPropertyAccess.cpp: (JSC::JIT::emitByValIdentifierCheck):
  • runtime/CacheableIdentifier.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258344 268f45cc-cd09-0410-ab3c-d52691b4dbfc

7:09 PM Changeset in webkit [259265] by Alan Coon
  • 3 edits
    2 adds in branches/safari-610.1.7-branch

Cherry-pick r258282. rdar://problem/61082987

icloud.com Notes text in titles and headings is distorted
https://bugs.webkit.org/show_bug.cgi?id=208908
<rdar://problem/58874371>

Reviewed by Zalan Bujtas.

Source/WebCore:

icloud.com Notes determines if a font has finished loading by measuring it repeatedly.
Depending on the state of the page, we may slice the text differently in different
circumstances. These slices are all supposed to sum together equivalently, but
floating point precision may cause the results to be slightly off.

WidthIterator::applyFontTransforms() was summing a large list of numbers, and then
subtracting the same large list of numbers. A more robust design would be to sum
it twice, and then subtract the two sums.

Test: fast/text/shaping-width-precision.html

  • platform/graphics/WidthIterator.cpp: (WebCore::WidthIterator::applyFontTransforms):

LayoutTests:

  • fast/text/shaping-width-precision-expected.txt: Added.
  • fast/text/shaping-width-precision.html: Added.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258282 268f45cc-cd09-0410-ab3c-d52691b4dbfc

6:46 PM Changeset in webkit [259264] by ysuzuki@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

[JSC] DFGArrayMode::alreadyChecked should have NonArray check when ArrayMode is NonArray+SlowPutArrayStorage
https://bugs.webkit.org/show_bug.cgi?id=209791

Reviewed by Saam Barati.

DFGArrayMode::alreadyChecked with NonArray+SlowPutArrayStorage should check NonArray condition.

  • dfg/DFGArrayMode.cpp:

(JSC::DFG::ArrayMode::alreadyChecked const):

  • dfg/DFGArrayMode.h:

(JSC::DFG::ArrayMode::arrayModesWithIndexingShapes const):

6:29 PM Changeset in webkit [259263] by Alan Coon
  • 34 edits
    3 deletes in branches/safari-610.1.7-branch

Revert 610.1.7.7 content to re-integrate.

6:27 PM Changeset in webkit [259262] by Alexey Shvayka
  • 12 edits in trunk

Add support in named capture group identifiers for direct surrogate pairs
https://bugs.webkit.org/show_bug.cgi?id=178174

Reviewed by Darin Adler and Michael Saboff.

JSTests:

  • test262/expectations.yaml: Mark 2 test cases as passing.

Source/JavaScriptCore:

This change:

a) Adds support for unescaped astral symbols in RegExp identifier names [1],

aligning JSC with V8.

b) Rewords InvalidUnicodeEscape error code to be used for \uXXXX escapes in

Unicode patterns and named groups/references instead of InvalidIdentityEscape,
matching error messages in V8 and SpiderMonkey.

c) Adds hasError() checks after tryConsumeGroupName() so errors generated in

tryConsumeIdentifierCharacter() would not get overriden.

d) Removes code duplication by using tryConsumeUnicodeEscape() for parsing \u

in parseEscape(); cleans up parsing \u{} escapes a bit, preferring ASSERTs
over hasError() checks.

[1]: https://tc39.es/ecma262/#prod-RegExpIdentifierName

  • yarr/YarrErrorCode.cpp:

(JSC::Yarr::errorMessage):
(JSC::Yarr::errorToThrow):

  • yarr/YarrErrorCode.h:
  • yarr/YarrParser.h:

(JSC::Yarr::Parser::parseEscape):
(JSC::Yarr::Parser::parseParenthesesBegin):
(JSC::Yarr::Parser::tryConsumeUnicodeEscape):
(JSC::Yarr::Parser::tryConsumeIdentifierCharacter):

LayoutTests:

Adjusted tests for error messages changes and added coverage for messages
of syntax errors due to invalid \u escapes inside named groups/references.

  • js/regexp-named-capture-groups-expected.txt:
  • js/regexp-unicode-expected.txt:
  • js/regress-158080-expected.txt:
  • js/script-tests/regexp-named-capture-groups.js:
  • js/script-tests/regexp-unicode.js:
5:52 PM Changeset in webkit [259261] by Devin Rousso
  • 57 edits
    9 copies
    41 adds in trunk

[CSS Selectors 4] Add support for :is() with the same logic for the existing :matches()
https://bugs.webkit.org/show_bug.cgi?id=209707

Reviewed by Antti Koivisto.

LayoutTests/imported/w3c:

  • web-platform-tests/css/selectors/invalidation/is-expected.txt:

Source/WebCore:

Add PseudoClassType::PseudoClassIs and use it where PseudoClassTyle::PseudoClassMatches
is already used now.

Tests: fast/css/is-specificity-1.html

fast/css/is-specificity-2.html
fast/css/is-specificity-3.html
fast/css/is-specificity-4.html
fast/css/is-specificity-5.html
fast/css/is-specificity-6.html
fast/css/is-specificity-7.html
fast/css/is-specificity-8.html
fast/css/is-specificity-9.html
fast/css/is-specificity-10.html
fast/css/parsing-css-is-1.html
fast/css/parsing-css-is-2.html
fast/css/parsing-css-is-3.html
fast/css/parsing-css-is-4.html
fast/css/parsing-css-is-5.html
fast/css/parsing-css-is-6.html
fast/css/parsing-css-is-7.html
fast/css/parsing-css-is-8.html
fast/selectors/is-backtracking.html
fast/selectors/is-complex.html
fast/selectors/is-selector-list.html
fast/selectors/is-selector-list-ending-with-never-matching-selectors.html
fast/selectors/is-with-pseudo-element.html
fast/selectors/pseudo-element-inside-is.html
fast/selectors/querySelector-is.html
imported/w3c/web-platform-tests/css/selectors/invalidation/is.html
imported/w3c/web-platform-tests/css/selectors/is-nested.html
imported/w3c/web-platform-tests/css/selectors/is-specificity.html

  • css/CSSSelector.h:
  • css/CSSSelector.cpp:

(WebCore::simpleSelectorSpecificityInternal):
(WebCore::simpleSelectorFunctionalPseudoClassStaticSpecificity):
(WebCore::CSSSelector::selectorText const):

  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::matchRecursively const):

  • css/SelectorPseudoClassAndCompatibilityElementMap.in:
  • css/parser/CSSSelectorParser.cpp:

(WebCore::isOnlyPseudoClassFunction):
(WebCore::CSSSelectorParser::consumePseudo):

  • cssjit/SelectorCompiler.cpp:

(WebCore::SelectorCompiler::addPseudoClassType):
(WebCore::SelectorChecker::checkOne const):

  • inspector/InspectorStyleSheet.cpp:

(WebCore::hasDynamicSpecificity):

  • features.json:

LayoutTests:

  • fast/css/css-selector-text.html:
  • fast/css/css-selector-text-expected.txt:
  • fast/css/css-set-selector-text.html:
  • fast/css/css-set-selector-text-expected.txt:
  • fast/css/is-specificity-1.html: Copied from fast/css/matches-specificity-1.html.
  • fast/css/is-specificity-1-expected.html: Copied from fast/css/matches-specificity-1-expected.html.
  • fast/css/is-specificity-2.html: Copied from fast/css/matches-specificity-2.html.
  • fast/css/is-specificity-2-expected.html: Copied from fast/css/matches-specificity-2-expected.html.
  • fast/css/is-specificity-3.html: Copied from fast/css/matches-specificity-3.html.
  • fast/css/is-specificity-3-expected.html: Copied from fast/css/matches-specificity-3-expected.html.
  • fast/css/is-specificity-4.html: Copied from fast/css/matches-specificity-4.html.
  • fast/css/is-specificity-4-expected.html: Copied from fast/css/matches-specificity-4-expected.html.
  • fast/css/is-specificity-5.html: Copied from fast/css/matches-specificity-5.html.
  • fast/css/is-specificity-5-expected.html: Copied from fast/css/matches-specificity-5-expected.html.
  • fast/css/is-specificity-6.html: Copied from fast/css/matches-specificity-6.html.
  • fast/css/is-specificity-6-expected.html: Copied from fast/css/matches-specificity-6-expected.html.
  • fast/css/is-specificity-7.html: Copied from fast/css/matches-specificity-7.html.
  • fast/css/is-specificity-7-expected.html: Copied from fast/css/matches-specificity-7-expected.html.
  • fast/css/is-specificity-8.html: Copied from fast/css/matches-specificity-8.html.
  • fast/css/is-specificity-8-expected.html: Copied from fast/css/matches-specificity-8-expected.html.
  • fast/css/is-specificity-9.html: Copied from fast/css/matches-specificity-9.html.
  • fast/css/is-specificity-9-expected.html: Copied from fast/css/matches-specificity-9-expected.html.
  • fast/css/is-specificity-10.html: Copied from fast/css/matches-specificity-10.html.
  • fast/css/is-specificity-10-expected.html: Copied from fast/css/matches-specificity-10-expected.html.
  • fast/css/parsing-css-attribute-case-insensitive-value-1.html:
  • fast/css/parsing-css-attribute-case-insensitive-value-1-expected.txt:
  • fast/css/parsing-css-attribute-case-insensitive-value-4.html:
  • fast/css/parsing-css-attribute-case-insensitive-value-4-expected.txt:
  • fast/css/parsing-css-is-1.html: Coped from fast/css/parsing-css-matches-1.html.
  • fast/css/parsing-css-is-1-expected.txt: Coped from fast/css/parsing-css-matches-1-expected.txt.
  • fast/css/parsing-css-is-2.html: Coped from fast/css/parsing-css-matches-2.html.
  • fast/css/parsing-css-is-2-expected.txt: Coped from fast/css/parsing-css-matches-2-expected.txt.
  • fast/css/parsing-css-is-3.html: Coped from fast/css/parsing-css-matches-3.html.
  • fast/css/parsing-css-is-3-expected.txt: Coped from fast/css/parsing-css-matches-3-expected.txt.
  • fast/css/parsing-css-is-4.html: Coped from fast/css/parsing-css-matches-4.html.
  • fast/css/parsing-css-is-4-expected.txt: Coped from fast/css/parsing-css-matches-4-expected.txt.
  • fast/css/parsing-css-is-5.html: Coped from fast/css/parsing-css-matches-5.html.
  • fast/css/parsing-css-is-5-expected.txt: Coped from fast/css/parsing-css-matches-5-expected.txt.
  • fast/css/parsing-css-is-6.html: Coped from fast/css/parsing-css-matches-6.html.
  • fast/css/parsing-css-is-6-expected.txt: Coped from fast/css/parsing-css-matches-6-expected.txt.
  • fast/css/parsing-css-is-7.html: Coped from fast/css/parsing-css-matches-7.html.
  • fast/css/parsing-css-is-7-expected.txt: Coped from fast/css/parsing-css-matches-7-expected.txt.
  • fast/css/parsing-css-is-8.html: Coped from fast/css/parsing-css-matches-8.html.
  • fast/css/parsing-css-is-8-expected.txt: Coped from fast/css/parsing-css-matches-8-expected.txt.
  • fast/css/parsing-css-not-1.html:
  • fast/css/parsing-css-not-1-expected.txt:
  • fast/css/parsing-css-not-2.html:
  • fast/css/parsing-css-not-2-expected.txt:
  • fast/css/parsing-css-not-5.html:
  • fast/css/parsing-css-not-5-expected.txt:
  • fast/css/parsing-css-not-6.html:
  • fast/css/parsing-css-not-6-expected.txt:
  • fast/css/parsing-css-not-7.html:
  • fast/css/parsing-css-not-7-expected.txt:
  • fast/css/parsing-css-not-8.html:
  • fast/css/parsing-css-not-8-expected.txt:
  • fast/css/parsing-css-not-9.html:
  • fast/css/parsing-css-not-9-expected.txt:
  • fast/css/parsing-css-nth-child-of-4.html:
  • fast/css/parsing-css-nth-child-of-4-expected.txt:
  • fast/css/parsing-css-nth-last-child-of-4.html:
  • fast/css/parsing-css-nth-last-child-of-4-expected.txt:
  • fast/selectors/case-insensitive-attribute-register-requirement-1.html:
  • fast/selectors/case-insensitive-attribute-register-requirement-1-expected.txt:
  • fast/selectors/element-matches-attribute-ascii-case-insensitive-html-expected.txt:
  • fast/selectors/element-matches-attribute-ascii-case-insensitive-html.html:
  • fast/selectors/is-backtracking.html: Copied from fast/selectors/matches-backtracking.html.
  • fast/selectors/is-backtracking-expected.txt: Copied from fast/selectors/matches-backtracking-expected.txt.
  • fast/selectors/is-complex.html: Copied from fast/selectors/matches-complex.html.
  • fast/selectors/is-complex-expected.txt: Copied from fast/selectors/matches-complex-expected.txt.
  • fast/selectors/is-selector-list.html: Copied from fast/selectors/matches-selector-list.html.
  • fast/selectors/is-selector-list-expected.txt: Copied from fast/selectors/matches-selector-list-expected.txt.
  • fast/selectors/is-selector-list-ending-with-never-matching-selectors.html: Copied from fast/selectors/matches-selector-list-ending-with-never-matching-selectors.html.
  • fast/selectors/is-selector-list-ending-with-never-matching-selectors-expected.txt: Copied from fast/selectors/matches-selector-list-ending-with-never-matching-selectors-expected.txt.
  • fast/selectors/is-with-pseudo-element.html: Copied from fast/selectors/matches-with-pseudo-element.html.
  • fast/selectors/is-with-pseudo-element-expected.html: Copied from fast/selectors/matches-with-pseudo-element-expected.html.
  • fast/selectors/pseudo-element-inside-is.html: Copied from fast/selectors/pseudo-element-inside-matches.html.
  • fast/selectors/pseudo-element-inside-is-expected.html: Copied from fast/selectors/pseudo-element-inside-matches-expected.html.
  • fast/selectors/querySelector-attribute-ascii-case-insensitive-html.html:
  • fast/selectors/querySelector-attribute-ascii-case-insensitive-html-expected.txt:
  • fast/selectors/querySelector-is.html: Copied from fast/selectors/querySelector-matches.html.
  • fast/selectors/querySelector-is-expected.txt: Copied from fast/selectors/querySelector-matches-expected.txt.
  • fast/selectors/querySelector-tagname-case-sensitivity-svg-in-html.html:
  • fast/selectors/querySelector-tagname-case-sensitivity-svg-in-html-expected.txt:
  • fast/selectors/querySelector-tagname-case-sensitivity-svg-in-xhtml.xhtml:
  • fast/selectors/querySelector-tagname-case-sensitivity-svg-in-xhtml-expected.txt:
  • fast/selectors/querySelector-tagname-case-sensitivity-xml-in-html.html:
  • fast/selectors/querySelector-tagname-case-sensitivity-xml-in-html-expected.txt:
  • fast/selectors/querySelector-tagname-case-sensitivity-xml-in-xhtml.xhtml:
  • fast/selectors/querySelector-tagname-case-sensitivity-xml-in-xhtml-expected.txt:
  • inspector/css/selector-dynamic-specificity.html:
  • inspector/css/selector-dynamic-specificity-expected.txt:
  • TestExpectations:
  • platform/wincairo/TestExpectations:
  • platform/mac-wk2/TestExpectations:
5:42 PM Changeset in webkit [259260] by Russell Epstein
  • 2 edits in branches/safari-609-branch/Source/WebKit

Cherry-pick r259056. rdar://problem/61064876

Force Touch preview on file:/// URL works while clicking on the URL is blocked
https://bugs.webkit.org/show_bug.cgi?id=209589
<rdar://57687893>

Reviewed by Antoine Quint.

The immediate action for links should never trigger on file: URLs.

  • UIProcess/mac/WKImmediateActionController.mm: (-[WKImmediateActionController _defaultAnimationController]):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@259056 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:42 PM Changeset in webkit [259259] by Russell Epstein
  • 3 edits in branches/safari-609-branch/Source/WebKit

Cherry-pick r258902. rdar://problem/61064808

IPC::Decoder::decodeFixedLengthData() should be marked WARN_UNUSED_RETURN
<https://webkit.org/b/209448>
<rdar://problem/60797998>

Reviewed by Chris Dumez.

  • Platform/IPC/ArgumentCoders.h: (struct VectorArgumentCoder::decode):
  • Check the return value of Decoder::decodeFixedLengthData().
  • Platform/IPC/Decoder.h: (IPC::Decoder::decodeFixedLengthData): Add WARN_UNUSED_RETURN.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258902 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:42 PM Changeset in webkit [259258] by Russell Epstein
  • 5 edits in branches/safari-609-branch

Cherry-pick r258837. rdar://problem/61064858

MediaDevices::refreshDevices should take device type into account
https://bugs.webkit.org/show_bug.cgi?id=209417
<rdar://problem/60521332>

Reviewed by Eric Carlson.

Source/WebCore:

Now that we set deviceId to the empty string when media capture is not granted,
we can have two devices with the same ID. We also need to handle the device type.

  • Modules/mediastream/MediaDevices.cpp: (WebCore::MediaDevices::refreshDevices):

LayoutTests:

  • fast/mediastream/media-device-info-expected.txt:
  • fast/mediastream/media-device-info.html:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258837 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:42 PM Changeset in webkit [259257] by Russell Epstein
  • 3 edits in branches/safari-609-branch/Source/JavaScriptCore

Cherry-pick r258540. rdar://problem/61064830

[JSC] JSMapIterator and JSSetIterator are CellType
https://bugs.webkit.org/show_bug.cgi?id=209168
<rdar://problem/59705631>

Reviewed by Saam Barati.

They are JSCell, not JSObject since they are not used as a user-observable set/map iterators in JSC.
However, their JSType is ObjectType. They should use CellType instead.

  • runtime/JSMapIterator.h:
  • runtime/JSSetIterator.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258540 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:42 PM Changeset in webkit [259256] by Russell Epstein
  • 14 edits in branches/safari-609-branch

Cherry-pick r258493. rdar://problem/61064864

Remove the use of empty WebRTC sources for receiver tracks
https://bugs.webkit.org/show_bug.cgi?id=209061

Reviewed by Eric Carlson.

LayoutTests/imported/w3c:

  • web-platform-tests/webrtc/RTCPeerConnection-track-stats.https-expected.txt:

Source/WebCore:

We no longer need to create receivers with empty sources since we now always have a libwebrtc receiver from which we can get the track.
We remove that code path.
This sldo allows using the right track parameters from the start, like track id.

Covered by existing and rebased tests.

  • Modules/mediastream/RTCPeerConnection.h:
  • Modules/mediastream/libwebrtc/LibWebRTCMediaEndpoint.cpp: (WebCore::LibWebRTCMediaEndpoint::addPendingTrackEvent): (WebCore::LibWebRTCMediaEndpoint::collectTransceivers): (WebCore::LibWebRTCMediaEndpoint::newTransceiver):
  • Modules/mediastream/libwebrtc/LibWebRTCPeerConnectionBackend.cpp: (WebCore::LibWebRTCPeerConnectionBackend::createReceiver): (WebCore::LibWebRTCPeerConnectionBackend::addTrack): (WebCore::LibWebRTCPeerConnectionBackend::addTransceiverFromTrackOrKind): (WebCore::LibWebRTCPeerConnectionBackend::newRemoteTransceiver):
  • Modules/mediastream/libwebrtc/LibWebRTCPeerConnectionBackend.h:
  • Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverBackend.cpp: (WebCore::LibWebRTCRtpReceiverBackend::createSource):
  • Modules/mediastream/libwebrtc/LibWebRTCRtpReceiverBackend.h:
  • platform/mediastream/RealtimeIncomingAudioSource.cpp: (WebCore::RealtimeIncomingAudioSource::RealtimeIncomingAudioSource):
  • platform/mediastream/RealtimeIncomingAudioSource.h:
  • platform/mediastream/RealtimeIncomingVideoSource.cpp: (WebCore::RealtimeIncomingVideoSource::RealtimeIncomingVideoSource):
  • platform/mediastream/RealtimeIncomingVideoSource.h:
  • testing/MockLibWebRTCPeerConnection.h: (WebCore::MockMediaStreamTrack::state const): (WebCore::MockRtpReceiver::SetObserver):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258493 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:42 PM Changeset in webkit [259255] by Russell Epstein
  • 3 edits in branches/safari-609-branch/Source/WebCore

Cherry-pick r258464. rdar://problem/61064870

Call SVGTRefElement::buildPendingResource in SVGElement::didFinishInsertingNode
https://bugs.webkit.org/show_bug.cgi?id=208981

Reviewed by Antti Koivisto.

This patch moves the call to SVGTRefElement::buildPendingResource from SVGElement::insertedIntoAncestor
to SVGElement::didFinishInsertingNode.

  • svg/SVGElement.cpp: (WebCore::SVGElement::insertedIntoAncestor): Return true when the element has a pending resource ID. (WebCore::SVGElement::didFinishInsertingNode): Added. Calls buildPendingResourcesIfNeeded.
  • svg/SVGElement.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258464 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:42 PM Changeset in webkit [259254] by Russell Epstein
  • 2 edits in branches/safari-609-branch/Source/JavaScriptCore

Cherry-pick r258452. rdar://problem/61064799

Missing arithMode for ArithAbs and ArithNegate in DFGClobberize
https://bugs.webkit.org/show_bug.cgi?id=208685
<rdar://problem/60115088>

Reviewed by Saam Barati.

In the pure case of ArithNegate and ArithAbs in DFGClobberize, their PureValues did not include their
respective ArithMode. That means that e.g. a CheckOverflow ArithNegate/Abs could be considered equivalent
to an Unchecked version of the same node.

Thanks to Samuel Groß of Google Project Zero for identifying this bug.

  • dfg/DFGClobberize.h: (JSC::DFG::clobberize):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258452 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:41 PM Changeset in webkit [259253] by Andres Gonzalez
  • 2 edits in trunk/Source/WebKit

Cache [WKAccessibilityWebPageObject accessibilityParameterizedAttributeNames] to avoid hitting often the main thread in isolated tree mode.
https://bugs.webkit.org/show_bug.cgi?id=209767

Reviewed by Chris Fleizach.

[WKAccessibilityWebPageObject accessibilityParameterizedAttributeNames]
is called often in isolated tree mode causing a dispatch to the main thread.
This change caches this value so it doesn't keep hitting the main thread.

  • WebProcess/WebPage/mac/WKAccessibilityWebPageObjectMac.mm:

(-[WKAccessibilityWebPageObject ALLOW_DEPRECATED_IMPLEMENTATIONS_END]):

5:25 PM Changeset in webkit [259252] by Chris Dumez
  • 59 edits in trunk/Source/WebCore

Overrides of ActiveDOMObject::hasPendingActivity() should not need to query the base class's hasPendingActivity()
https://bugs.webkit.org/show_bug.cgi?id=209754

Reviewed by Geoff Garen and Darin Adler.

Overrides of ActiveDOMObject::hasPendingActivity() should not need to query the base
class's hasPendingActivity(). This is error-prone and leads to bad bugs.

To address the issue, ActiveDOMObject::hasPendingActivity() is no longer virtual and
checks both m_pendingActivityCount and a virtual virtualHasPendingActivity() function.
Subclasses now override virtualHasPendingActivity() and no longer need to query the
base class's virtualHasPendingActivity().

  • Modules/encryptedmedia/MediaKeySession.cpp:

(WebCore::MediaKeySession::virtualHasPendingActivity const):
(WebCore::MediaKeySession::hasPendingActivity const): Deleted.

  • Modules/encryptedmedia/MediaKeySession.h:
  • Modules/encryptedmedia/legacy/WebKitMediaKeySession.cpp:

(WebCore::WebKitMediaKeySession::virtualHasPendingActivity const):
(WebCore::WebKitMediaKeySession::hasPendingActivity const): Deleted.

  • Modules/encryptedmedia/legacy/WebKitMediaKeySession.h:
  • Modules/indexeddb/IDBDatabase.cpp:

(WebCore::IDBDatabase::virtualHasPendingActivity const):
(WebCore::IDBDatabase::hasPendingActivity const): Deleted.

  • Modules/indexeddb/IDBDatabase.h:
  • Modules/indexeddb/IDBIndex.cpp:

(WebCore::IDBIndex::virtualHasPendingActivity const):
(WebCore::IDBIndex::hasPendingActivity const): Deleted.

  • Modules/indexeddb/IDBIndex.h:
  • Modules/indexeddb/IDBObjectStore.cpp:

(WebCore::IDBObjectStore::virtualHasPendingActivity const):
(WebCore::IDBObjectStore::hasPendingActivity const): Deleted.

  • Modules/indexeddb/IDBObjectStore.h:
  • Modules/indexeddb/IDBRequest.cpp:

(WebCore::IDBRequest::virtualHasPendingActivity const):
(WebCore::IDBRequest::hasPendingActivity const): Deleted.

  • Modules/indexeddb/IDBRequest.h:
  • Modules/indexeddb/IDBTransaction.cpp:

(WebCore::IDBTransaction::virtualHasPendingActivity const):
(WebCore::IDBTransaction::hasPendingActivity const): Deleted.

  • Modules/indexeddb/IDBTransaction.h:
  • Modules/mediarecorder/MediaRecorder.cpp:

(WebCore::MediaRecorder::virtualHasPendingActivity const):
(WebCore::MediaRecorder::hasPendingActivity const): Deleted.

  • Modules/mediarecorder/MediaRecorder.h:
  • Modules/mediasource/MediaSource.cpp:

(WebCore::MediaSource::virtualHasPendingActivity const):
(WebCore::MediaSource::hasPendingActivity const): Deleted.

  • Modules/mediasource/MediaSource.h:
  • Modules/mediasource/SourceBuffer.cpp:

(WebCore::SourceBuffer::virtualHasPendingActivity const):
(WebCore::SourceBuffer::hasPendingActivity const): Deleted.

  • Modules/mediasource/SourceBuffer.h:
  • Modules/mediastream/MediaDevices.cpp:

(WebCore::MediaDevices::virtualHasPendingActivity const):
(WebCore::MediaDevices::hasPendingActivity const): Deleted.

  • Modules/mediastream/MediaDevices.h:
  • Modules/mediastream/MediaStream.cpp:

(WebCore::MediaStream::virtualHasPendingActivity const):
(WebCore::MediaStream::hasPendingActivity const): Deleted.

  • Modules/mediastream/MediaStream.h:
  • Modules/mediastream/MediaStreamTrack.cpp:

(WebCore::MediaStreamTrack::virtualHasPendingActivity const):
(WebCore::MediaStreamTrack::hasPendingActivity const): Deleted.

  • Modules/mediastream/MediaStreamTrack.h:
  • Modules/mediastream/RTCPeerConnection.cpp:

(WebCore::RTCPeerConnection::virtualHasPendingActivity const):
(WebCore::RTCPeerConnection::hasPendingActivity const): Deleted.

  • Modules/mediastream/RTCPeerConnection.h:
  • animation/WebAnimation.cpp:

(WebCore::WebAnimation::virtualHasPendingActivity const):
(WebCore::WebAnimation::hasPendingActivity const): Deleted.

  • animation/WebAnimation.h:
  • css/FontFace.cpp:

(WebCore::FontFace::virtualHasPendingActivity const):
(WebCore::FontFace::hasPendingActivity const): Deleted.

  • css/FontFace.h:
  • dom/ActiveDOMObject.cpp:

(WebCore::ActiveDOMObject::hasPendingActivity const): Deleted.

  • dom/ActiveDOMObject.h:
  • dom/MessagePort.cpp:

(WebCore::MessagePort::virtualHasPendingActivity const):
(WebCore::MessagePort::hasPendingActivity const): Deleted.

  • dom/MessagePort.h:
  • fileapi/FileReader.cpp:

(WebCore::FileReader::virtualHasPendingActivity const):
(WebCore::FileReader::hasPendingActivity const): Deleted.

  • fileapi/FileReader.h:
  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::virtualHasPendingActivity const):
(WebCore::HTMLMediaElement::hasPendingActivity const): Deleted.

  • html/HTMLMediaElement.h:
  • html/HTMLTrackElement.cpp:

(WebCore::HTMLTrackElement::virtualHasPendingActivity const):
(WebCore::HTMLTrackElement::hasPendingActivity const): Deleted.

  • html/HTMLTrackElement.h:
  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::hasPendingActivity const): Deleted.

  • html/canvas/WebGLRenderingContextBase.h:
  • html/track/TrackListBase.cpp:

(WebCore::TrackListBase::virtualHasPendingActivity const):
(WebCore::TrackListBase::hasPendingActivity const): Deleted.

  • html/track/TrackListBase.h:
  • page/IntersectionObserver.cpp:

(WebCore::IntersectionObserver::virtualHasPendingActivity const):
(WebCore::IntersectionObserver::hasPendingActivity const): Deleted.

  • page/IntersectionObserver.h:
  • page/ResizeObserver.cpp:

(WebCore::ResizeObserver::virtualHasPendingActivity const):
(WebCore::ResizeObserver::hasPendingActivity const): Deleted.

  • page/ResizeObserver.h:
  • page/SuspendableTimer.cpp:

(WebCore::SuspendableTimerBase::virtualHasPendingActivity const):
(WebCore::SuspendableTimerBase::hasPendingActivity const): Deleted.

  • page/SuspendableTimer.h:
  • workers/Worker.cpp:

(WebCore::Worker::virtualHasPendingActivity const):
(WebCore::Worker::hasPendingActivity const): Deleted.

  • workers/Worker.h:
  • workers/service/ServiceWorkerRegistration.cpp:

(WebCore::ServiceWorkerRegistration::virtualHasPendingActivity const):
(WebCore::ServiceWorkerRegistration::hasPendingActivity const): Deleted.

  • workers/service/ServiceWorkerRegistration.h:
  • xml/XMLHttpRequest.cpp:

(WebCore::XMLHttpRequest::virtualHasPendingActivity const):
(WebCore::XMLHttpRequest::hasPendingActivity const): Deleted.

  • xml/XMLHttpRequest.h:
5:20 PM Changeset in webkit [259251] by Russell Epstein
  • 8 edits in branches/safari-609-branch/Source

Versioning.

5:08 PM Changeset in webkit [259250] by Russell Epstein
  • 3 edits in branches/safari-609.2.1.2-branch/Source/JavaScriptCore

Cherry-pick r258540. rdar://problem/61064824

[JSC] JSMapIterator and JSSetIterator are CellType
https://bugs.webkit.org/show_bug.cgi?id=209168
<rdar://problem/59705631>

Reviewed by Saam Barati.

They are JSCell, not JSObject since they are not used as a user-observable set/map iterators in JSC.
However, their JSType is ObjectType. They should use CellType instead.

  • runtime/JSMapIterator.h:
  • runtime/JSSetIterator.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258540 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:08 PM Changeset in webkit [259249] by Russell Epstein
  • 2 edits in branches/safari-609.2.1.2-branch/Source/JavaScriptCore

Cherry-pick r258452. rdar://problem/61064792

Missing arithMode for ArithAbs and ArithNegate in DFGClobberize
https://bugs.webkit.org/show_bug.cgi?id=208685
<rdar://problem/60115088>

Reviewed by Saam Barati.

In the pure case of ArithNegate and ArithAbs in DFGClobberize, their PureValues did not include their
respective ArithMode. That means that e.g. a CheckOverflow ArithNegate/Abs could be considered equivalent
to an Unchecked version of the same node.

Thanks to Samuel Groß of Google Project Zero for identifying this bug.

  • dfg/DFGClobberize.h: (JSC::DFG::clobberize):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258452 268f45cc-cd09-0410-ab3c-d52691b4dbfc

5:03 PM Changeset in webkit [259248] by Simon Fraser
  • 7 edits
    3 adds in trunk

scrollIntoView() erroneously scrolls non-containing block scrollers
https://bugs.webkit.org/show_bug.cgi?id=209715

Reviewed by Zalan Bujtas.

Source/WebCore:

RenderLayer::scrollByRecursively() would just walk up the parent RenderLayer chain
trying to scroll each one. However, this would hit overflow:scroll which wasn't in the
containing block chain, erroneously scrolling unrelated scrollers.

Fix by adding RenderLayer::enclosingLayerInContainingBlockOrder() and calling
it from RenderLayer::enclosingScrollableLayer(). Also extend enclosingScrollableLayer()
to make explicit 'include self' and frame-boundary crossing.

In future, scrollByRecursively() should really be virtual on ScrollableArea, and implemented
on its subclasses.

Test: http/wpt/css/cssom-view/scrollintoview-containingblock-chain.html

  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::platformPrepareForWheelEvents):

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::enclosingLayerInContainingBlockOrder const):
(WebCore::enclosingContainingBlockLayer):
(WebCore::RenderLayer::enclosingScrollableLayer const):
(WebCore::RenderLayer::scrollByRecursively):
(WebCore::RenderLayer::scrollRectToVisible):
(WebCore::RenderLayer::enclosingScrollableArea const):
(WebCore::RenderLayer::hasScrollableOrRubberbandableAncestor):
(WebCore::RenderLayer::calculateClipRects const):
(WebCore::parentLayerCrossFrame): Deleted.

  • rendering/RenderLayer.h:

Source/WebKitLegacy/win:

  • WebView.cpp:

(WebView::gesture):

LayoutTests:

  • http/wpt/css/cssom-view/scrollintoview-containingblock-chain-expected.txt: Added.
  • http/wpt/css/cssom-view/scrollintoview-containingblock-chain.html: Added.
5:02 PM Changeset in webkit [259247] by Russell Epstein
  • 8 edits in branches/safari-609.2.1.2-branch/Source

Versioning.

4:57 PM Changeset in webkit [259246] by Ross Kirsling
  • 6 edits
    1 add in trunk

RegExp.prototype.exec must always access lastIndex
https://bugs.webkit.org/show_bug.cgi?id=209375

Reviewed by Saam Barati.

JSTests:

  • mozilla/ecma_3/RegExp/15.10.6.2-2.js:

Sync test with mozilla-central's copy.
(https://searchfox.org/mozilla-central/source/js/src/tests/non262/RegExp/15.10.6.2-2.js)

  • stress/regexp-exec-always-accesses-lastindex.js: Added.
  • test262/expectations.yaml:

Mark eight test cases as passing.

Source/JavaScriptCore:

From https://tc39.es/ecma262/#sec-regexpbuiltinexec:

21.2.5.2.2 Runtime Semantics: RegExpBuiltinExec ( R, S )

...

  1. Let lastIndex be ? ToLength(? Get(R, "lastIndex")). ...
  2. If global is false and sticky is false, set lastIndex to 0.

That is, we're always obliged to verify that lastIndex is Number-coercible, even if we don't use the value.

DFG, in particular, must make sure strength reductions don't apply when lastIndex isn't an unsigned integer
(i.e., when user code has written something strange to it).
foldToConstant already has an early out for this, but it needs to apply to convertToStatic too.

Furthermore, ToLength clamps negative values to 0, so correct getRegExpObjectLastIndexAsUnsigned accordingly.

  • dfg/DFGStrengthReductionPhase.cpp:

(JSC::DFG::StrengthReductionPhase::handleNode):

  • runtime/RegExpObjectInlines.h:

(JSC::getRegExpObjectLastIndexAsUnsigned):
(JSC::RegExpObject::execInline):
(JSC::RegExpObject::matchInline):

4:53 PM Changeset in webkit [259245] by Wenson Hsieh
  • 2 edits in trunk/Source/WebCore

WebPasteboardProxy::SetPasteboardURL should fail gracefully when the copied NSURL is nil
https://bugs.webkit.org/show_bug.cgi?id=209785
<rdar://problem/61075986>

Reviewed by Tim Horton.

Harden PlatformPasteboard::setURL() against the possibility of a null NSURL when converting the given
PasteboardURL's WebKit URL into a URL string using -[NSURL absoluteString].

  • platform/mac/PlatformPasteboardMac.mm:

(WebCore::PlatformPasteboard::setURL):

4:45 PM Changeset in webkit [259244] by rniwa@webkit.org
  • 2 edits in trunk/Source/WebCore

Assertion failure in HTMLFormElement::formElementIndex
https://bugs.webkit.org/show_bug.cgi?id=209643

Reviewed by Darin Adler.

The bug was caused by FormAssociatedElement::findAssociatedForm finding a wrong form element
when it's called on an element which appears later in the removed subtree.

When we find the new form element to associate this element with, check to make sure its root
element is that of the tree scope. This condition will be false if this element is in in the midst
of being removed.

  • html/FormAssociatedElement.cpp:

(WebCore::FormAssociatedElement::findAssociatedForm):

4:44 PM Changeset in webkit [259243] by Chris Dumez
  • 2 edits in trunk/Source/WebKit

WebKit should take a foreground assertion for offscreen loads when the app is foreground
https://bugs.webkit.org/show_bug.cgi?id=209748
<rdar://problem/59169812>

Reviewed by Geoffrey Garen.

  • UIProcess/API/APIPageConfiguration.h:
4:41 PM Changeset in webkit [259242] by Chris Dumez
  • 5 edits in trunk/Source/WebKit

REGRESSION (r259211): ASSERT(window) in applicationType() under shouldUseForegroundPriorityForClientNavigation()
https://bugs.webkit.org/show_bug.cgi?id=209759

Reviewed by Darin Adler.

Make sure to not call applicationType() with a null window. This patch maintains previous behavior
in release builds.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::loadRequest):
(WebKit::WebPageProxy::loadFile):
(WebKit::WebPageProxy::loadData):

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

(WebKit::PageClientImpl::isApplicationVisible):

  • UIProcess/ios/WebPageProxyIOS.mm:

(WebKit::WebPageProxy::shouldForceForegroundPriorityForClientNavigation const):
(WebKit::WebPageProxy::shouldUseForegroundPriorityForClientNavigation const): Deleted.

4:39 PM Changeset in webkit [259241] by don.olmstead@sony.com
  • 18 edits in trunk/Source

Non-unified build fixes late March 2020 edition
https://bugs.webkit.org/show_bug.cgi?id=209781

Unreviewed build fix.

Source/JavaScriptCore:

  • jit/JITInlineCacheGenerator.h:

Source/WebCore:

  • animation/ElementAnimationRareData.cpp:
  • dom/SimpleRange.cpp:
  • editing/VisiblePosition.cpp:
  • layout/blockformatting/BlockFormattingContext.cpp:
  • layout/blockformatting/BlockFormattingContextGeometry.cpp:
  • layout/inlineformatting/InlineFormattingContext.cpp:
  • layout/invalidation/InvalidationState.cpp:
  • layout/tableformatting/TableFormattingContext.cpp:
  • page/FocusController.cpp:
  • page/PageConfiguration.cpp:
  • rendering/RenderBlock.cpp:
  • svg/SVGClipPathElement.cpp:
  • xml/parser/XMLDocumentParserLibxml2.cpp:

Source/WebKit:

  • NetworkProcess/NetworkDataTask.cpp:
4:06 PM Changeset in webkit [259240] by Kate Cheney
  • 4 edits in trunk/Source/WebKit

Known app-bound domain protocols should not check the app-bound domain list
https://bugs.webkit.org/show_bug.cgi?id=209755
<rdar://problem/60875376>

Reviewed by Chris Dumez.

This patch checks if a url should be treated as app-bound based on
protocol before deciding to check the app-bound domain list.
It is wasteful to check the app-bound domain list when some protocols
are automatically considered app-bound.

Existing behavior should be maintained, this is tested by existing
In-App Browser Privacy layout and API tests.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::setIsNavigatingToAppBoundDomain):
(WebKit::shouldBeTreatedAsAppBound): Deleted.
We can remove the check for the url protocol here because we are
doing it instead in WebsiteDataStore::beginAppBoundDomainCheck.
(WebKit::WebPageProxy::decidePolicyForNavigationAction):
Changed if PLATFORM(COCOA) to if PLATFORM(IOS_FAMILY) because it
is unnecessary to check the app-bound domain list for other
platforms (the values returned would be ignored in
setIsNavigatingToAppBoundDomain).

  • UIProcess/WebsiteData/Cocoa/WebsiteDataStoreCocoa.mm:

(WebKit::shouldTreatURLProtocolAsAppBound):
(WebKit::WebsiteDataStore::beginAppBoundDomainCheck):

  • UIProcess/WebsiteData/WebsiteDataStore.h:
3:41 PM Changeset in webkit [259239] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebKit

REGRESSION (r256756): -[WKPreferenceObserver init]: Instance variable used while 'self' is not set to the result of '[(super or self) init...]'
<https://webkit.org/b/209765>

Reviewed by Darin Adler.

  • UIProcess/Cocoa/PreferenceObserver.mm:

(-[WKPreferenceObserver init]): Call [self init] and set
self to fix the clang static analyzer warning.

3:41 PM Changeset in webkit [259238] by Ryan Haddad
  • 3 edits in trunk/LayoutTests

Unreviewed test gardening, mark webrtc/datachannel/multiple-connections.html as slow.

  • TestExpectations: Remove these entries since this is specific to macOS WK1.
  • platform/mac-wk1/TestExpectations:
3:22 PM Changeset in webkit [259237] by Ryan Haddad
  • 2 edits in trunk/Source/WebKit

Unreviewed, reverting r259211.

Caused API test assertion failures on iOS

Reverted changeset:

"WebKit should take a foreground assertion for offscreen loads
when the app is foreground"
https://bugs.webkit.org/show_bug.cgi?id=209748
https://trac.webkit.org/changeset/259211

3:01 PM Changeset in webkit [259236] by Devin Rousso
  • 33 edits in trunk/Source

Web Inspector: provide a way to log messages from the network process
https://bugs.webkit.org/show_bug.cgi?id=204775

Reviewed by Brian Burg.

ITP can be influenced by multiple pages simultaneously, meaning that sending a console
message to the Web Inspector that's connected to the page that caused a change may not be
useful as developers often don't test in complete isolation. As such, having a way to
broadcast a console message to all Web Inspectors ensures that any changes caused by any
page are always able to be seen, no matter which page is being actively inspected.

Source/JavaScriptCore:

  • inspector/protocol/Console.json:
  • inspector/scripts/codegen/generator.py:
  • runtime/ConsoleTypes.h:
  • runtime/ConsoleClient.cpp:

(JSC::appendMessagePrefix):

  • inspector/ConsoleMessage.cpp:

(Inspector::messageSourceValue):
Add ITPDebug and AdClickAttribution message sources.

Source/WebCore:

  • loader/AdClickAttribution.h:
  • loader/AdClickAttribution.cpp:

(WebCore::AdClickAttribution::parseConversionRequest):
Add a console message to Web Inspector if there are any errors when parsing an ad click
attribution link attribute.

Source/WebInspectorUI:

  • UserInterface/Models/ConsoleMessage.js:
  • UserInterface/Models/IssueMessage.js:

(WI.IssueMessage):
Add ITPDebug and AdClickAttribution message sources.

Source/WebKit:

  • NetworkProcess/NetworkProcess.h:
  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::broadcastConsoleMessage): Added.

  • NetworkProcess/NetworkConnectionToWebProcess.cpp:
  • NetworkProcess/NetworkConnectionToWebProcess.h:

(WebKit::NetworkConnectionToWebProcess::broadcastConsoleMessage): Added.

  • WebProcess/Network/NetworkProcessConnection.messages.in:
  • WebProcess/Network/NetworkProcessConnection.h:
  • WebProcess/Network/NetworkProcessConnection.cpp:

(WebKit::NetworkProcessConnection::broadcastConsoleMessage): Added.

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

(WebKit::WebProcess::webFrames const): Added.
Broadcasted console messages are relayed from the network process to the web process via the
functions above in the order that they are written.

  • NetworkProcess/NetworkSession.cpp:

(WebKit::NetworkSession::NetworkSession):

  • NetworkProcess/AdClickAttributionManager.h:

(WebKit::AdClickAttributionManager::AdClickAttributionManager):

  • NetworkProcess/AdClickAttributionManager.cpp:

(WebKit::AdClickAttributionManager::storeUnconverted):
(WebKit::AdClickAttributionManager::handleConversion):
(WebKit::AdClickAttributionManager::convert):
(WebKit::AdClickAttributionManager::fireConversionRequest):

  • NetworkProcess/Classifier/ResourceLoadStatisticsStore.h:
  • NetworkProcess/Classifier/ResourceLoadStatisticsStore.cpp:

(WebKit::ResourceLoadStatisticsStore::removeDataRecords):
(WebKit::ResourceLoadStatisticsStore::setResourceLoadStatisticsDebugMode):
(WebKit::ResourceLoadStatisticsStore::debugBroadcastConsoleMessage): Added.
(WebKit::ResourceLoadStatisticsStore::debugLogDomainsInBatches):

  • NetworkProcess/Classifier/ResourceLoadStatisticsDatabaseStore.cpp:

(WebKit::ResourceLoadStatisticsDatabaseStore::requestStorageAccess):
(WebKit::ResourceLoadStatisticsDatabaseStore::requestStorageAccessUnderOpener):
(WebKit::ResourceLoadStatisticsDatabaseStore::ensurePrevalentResourcesForDebugMode):
(WebKit::ResourceLoadStatisticsDatabaseStore::updateCookieBlocking):

  • NetworkProcess/Classifier/ResourceLoadStatisticsMemoryStore.cpp:

(WebKit::ResourceLoadStatisticsMemoryStore::requestStorageAccess):
(WebKit::ResourceLoadStatisticsMemoryStore::requestStorageAccessUnderOpener):
(WebKit::ResourceLoadStatisticsMemoryStore::ensurePrevalentResourcesForDebugMode):
(WebKit::ResourceLoadStatisticsMemoryStore::updateCookieBlocking):

  • NetworkProcess/NetworkResourceLoader.cpp:

(WebKit::NetworkResourceLoader::willSendRedirectedRequest):
Send a console message for the result of WebCore::AdClickAttribution::parseConversionRequest.

Source/WebKitLegacy/mac:

  • WebCoreSupport/WebChromeClient.mm:

(stringForMessageSource):
Add ITPDebug and AdClickAttribution message sources.

2:40 PM Changeset in webkit [259235] by Devin Rousso
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: Timelines: the current time marker should always be on top
https://bugs.webkit.org/show_bug.cgi?id=209758

Reviewed by Timothy Hatcher.

  • UserInterface/Views/TimelineRuler.css:

(.timeline-ruler > .markers):
(.timeline-ruler > .markers > .divider):
(.timeline-ruler > .markers > .marker):
(.timeline-ruler > .markers > .marker.current-time):
Move the z-index from the .markers container to each individual marker element so that
the .marker.current-time can override it.

  • UserInterface/Views/Variables.css:

(:root):
Add --timeline-current-time-z-index that is above --timeline-record-z-index.

2:24 PM Changeset in webkit [259234] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Catalina wk2 ] tiled-drawing/scrolling/frames/frameset-nested-frame-scrollability.html is flaky failing.
https://bugs.webkit.org/show_bug.cgi?id=209769

Unreviewed test gardening.

  • platform/mac-wk2/TestExpectations:
2:23 PM Changeset in webkit [259233] by Diego Pino Garcia
  • 1 edit
    32 deletes in trunk/LayoutTests

[WPE] Gardening, remove redundant baselines
https://bugs.webkit.org/show_bug.cgi?id=209768

Unreviewed gardening.

The baselines below are not needed as they're equal to the
generic baseline.

  • platform/wpe/fast/dom/Range/getBoundingClientRect-expected.txt: Removed.
  • platform/wpe/fast/dom/Window/window-properties-geolocation-expected.txt: Removed.
  • platform/wpe/fast/images/icon-decoding-expected.txt: Removed.
  • platform/wpe/http/tests/dom/same-origin-detached-window-properties-expected.txt: Removed.
  • platform/wpe/http/tests/websocket/tests/hybi/network-process-crash-error-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/css/css-transitions/before-load-001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/api/redirect/redirect-method.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/fetch/api/redirect/redirect-method.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/html/semantics/interactive-elements/the-dialog-element/dialog-showModal-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/service-workers/service-worker/websocket-in-service-worker.https-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/Create-valid-url-protocol-empty.any-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/Create-valid-url-protocol-empty.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/bufferedAmount-unchanged-by-sync-xhr.any.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-deleting-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/close/close-multiple-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/close/close-nested-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/close/close-return-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/events/017-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/events/018-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/events/019-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/readyState/003-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/opening-handshake/001-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/opening-handshake/003-sets-origin.worker-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/opening-handshake/005-expected.txt: Removed.
  • platform/wpe/imported/w3c/web-platform-tests/websockets/security/001-expected.txt: Removed.
  • platform/wpe/webanimations/partly-accelerated-transition-by-removing-property-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance/canvas/buffer-offscreen-test-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance/canvas/buffer-preserve-test-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance/context/context-attribute-preserve-drawing-buffer-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance/extensions/webgl-draw-buffers-framebuffer-unsupported-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance/glsl/misc/shader-struct-scope-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance/glsl/misc/shaders-with-invariance-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance/reading/read-pixels-test-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance2/extensions/promoted-extensions-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance2/glsl3/shader-linking-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance2/glsl3/valid-invariant-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance2/rendering/clear-srgb-color-buffer-expected.txt: Removed.
  • platform/wpe/webgl/2.0.0/conformance2/rendering/instanced-rendering-bug-expected.txt: Removed.
2:13 PM Changeset in webkit [259232] by Jacob Uphoff
  • 8 edits
    2 deletes in trunk

Source/WebCore:
Unreviewed, reverting r259158.

This commit caused an assertion failure

Reverted changeset:

"Nullptr crash in InlineTextBox::emphasisMarkExistsAndIsAbove"
https://bugs.webkit.org/show_bug.cgi?id=207034
https://trac.webkit.org/changeset/259158

LayoutTests:
020-03-30 Jacob Uphoff <Jacob Uphoff>

Unreviewed, reverting r259158.

This commit caused an assertion failure

Reverted changeset:

"Nullptr crash in InlineTextBox::emphasisMarkExistsAndIsAbove"
https://bugs.webkit.org/show_bug.cgi?id=207034
https://trac.webkit.org/changeset/259158

2:03 PM Changeset in webkit [259231] by Diego Pino Garcia
  • 2 edits in trunk/LayoutTests

[GTK] Gardening, update TestExpectations
https://bugs.webkit.org/show_bug.cgi?id=209764

Unreviewed gardening.

  • platform/gtk/TestExpectations: Tests are no longer passing after

r258906

1:57 PM Changeset in webkit [259230] by Alan Coon
  • 3 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258958. rdar://problem/60750956

Ignore in-app browser privacy checks for apps with com.apple.private.applemediaservices entitlement
https://bugs.webkit.org/show_bug.cgi?id=209509
<rdar://problem/60750956>

Reviewed by Brent Fulgham.

  • UIProcess/WebPageProxy.cpp: (WebKit::m_ignoresAppBoundDomains): (WebKit::WebPageProxy::setIsNavigatingToAppBoundDomain):
  • UIProcess/WebPageProxy.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258958 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259229] by Alan Coon
  • 4 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258821. rdar://problem/60491857

Adopt -[UIWindowScene interfaceOrientation] when determining device orientation
https://bugs.webkit.org/show_bug.cgi?id=209372
<rdar://problem/60491857>

Reviewed by Darin Adler.

Currently, for WebKit clients that have adopted the UIScene lifecycle (and also do not set an interface
orientation override, like MobileSafari does), device orientation APIs will always report that the device is in
portrait mode, regardless of the actual device orientation. This is because our current mechanism for tracking
device orientation asks the shared UIApplication for its -statusBarOrientation. This is hard-coded to always
return UIInterfaceOrientationPortrait for apps that adopt the UIScene lifecycle, and will additionally trigger a
simulated crash, explaining that it is invalid for any scene-based app to call -statusBarOrientation.

To fix this, we adjust the deviceOrientation helper in WKWebViewIOS.mm to work for scene-based apps. See below
for more details.

  • Platform/spi/ios/UIKitSPI.h:
  • UIProcess/API/ios/WKWebViewIOS.h:
  • UIProcess/API/ios/WKWebViewIOS.mm: (-[WKWebView _setupScrollAndContentViews]):

Change call sites of deviceOrientation() to be [self _deviceOrientation] instead.

(-[WKWebView _deviceOrientation]):

Replace deviceOrientation() with a _deviceOrientation helper method on WKWebView. For non-scene-based
apps, this new helper method does not change any behavior, and continues to go through UIApplication. However,
for scene-based apps, we instead ask the web view's window's UIWindowScene for its interface orientation.

Importantly, this means that if a WKWebView is not parented, it doesn't have a valid device orientation (i.e.
the orientation is UIInterfaceOrientationUnknown). As such, a newly created WKWebView that is unparented will
start out with no orientation; it's only upon moving the view into a window that it is able to determine the
device orientation. To ensure this, we add logic to -didMoveToWindow to recompute device orientation and
dispatch an update if needed.

To avoid sending unnecessary updates, if a WKWebView is unparented, we wait until it's parented again to send
the new device orientation.

(-[WKWebView didMoveToWindow]):
(-[WKWebView _windowDidRotate:]):
(deviceOrientation): Deleted.

See -[WKWebView _deviceOrientation] above.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258821 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259228] by Alan Coon
  • 6 edits in branches/safari-610.1.7-branch

Cherry-pick r258804. rdar://problem/60563952

[iPadOS] Yahoo! search results are sometimes zoomed in a little
https://bugs.webkit.org/show_bug.cgi?id=209356
<rdar://problem/60563952>

Reviewed by Tim Horton.

Source/WebKit:

When the web content process uses WebPage::scalePage() to modify the viewport scale (e.g. after a viewport
configuration change) on iOS, it's possible for this new scale to be replaced by a previous scale when
dispatching the next visible content rect update. Consider the following scenario:

  1. A remote layer tree transaction is sent to the UI process containing scale a.
  2. WebPage::scalePage is called with a scale b.
  3. A visible content rect update with scale a is scheduled, sent to the web process and dispatched.
  4. The page scale reverts to a.

This bug exercises the above scenario: the Yahoo search results page specifies a responsive viewport
(device-width and scale=1), but proceeds to lay out outside of the bounds of the device width. As such, after
the document finishes parsing, we attempt to shrink the page to fit; however, if this shrinking happens after
a remote layer tree transaction with the old scale but before the next visible content rect update containing
that old scale, we will end up reverting to this old scale instead of the scale after shrinking to fit. This
same bug is present when using setViewScale, which was exercised by the flaky test below, since the new scale
after the viewport configuration change may be overridden by an incoming visible content rect update.

To fix this, we add a mechanism to detect when the page scale has been changed by the web process (e.g. after a
viewport change) and remember the last committed layer tree identifier at that moment. Later, if we get a
visible content rect update with a layer tree commit identifier equal to (or older than) the layer tree commit
identifier when we changed the page scale, don't set the page scale factor using this incoming scale; instead,
wait for the next visible content rect update (which will contain the new scale).

Fixes an existing flaky test: fast/viewport/ios/device-width-viewport-after-changing-view-scale.html

  • WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::close): (WebKit::WebPage::scalePage): (WebKit::WebPage::platformDidScalePage):

Add a platform hook that is invoked after scaling the page via scalePage. See below for the iOS version.

(WebKit::WebPage::didCommitLoad):
(WebKit::WebPage::didFinishDocumentLoad):
(WebKit::WebPage::didFinishLoad):

Drive-by fix: remove an unnecessary UNUSED_PARAM. Also, replace calls to schedule the shrink to fit content
timer with a call to shrinkToFitContent instead.

  • WebProcess/WebPage/WebPage.h:

Add a member variable to remember the last sent layer tree commit ID and page scale, when we last changed the
page scale via the web process. This is set in platformDidScalePage below.

  • WebProcess/WebPage/ios/WebPageIOS.mm: (WebKit::WebPage::dynamicViewportSizeUpdate): (WebKit::WebPage::shrinkToFitContent):

Refactor this to not return a bool, but instead call viewportConfigurationChanged at the end if the viewport
actually changed.

(WebKit::WebPage::updateVisibleContentRects):

Ignore the incoming page scale when updating visible content rects if it:

  1. Is the same as the last page scale we sent via layer tree commit.
  2. After sending the above scale, we've since adjusted the page scale such that it is no longer the same.

(WebKit::WebPage::platformDidScalePage):

Update m_lastLayerTreeTransactionIdAndPageScaleBeforeScalingPage.

(WebKit::WebPage::scheduleShrinkToFitContent): Deleted.
(WebKit::WebPage::shrinkToFitContentTimerFired): Deleted.

Remove the zero-delay timer before running the shrink-to-fit heuristic, and just call shrinkToFitContent
directly. This was a source of flakiness when trying to reproduce the bug, and doesn't seem to serve any
purpose since we shrink-to-fit after dispatching the "DOMContentLoaded" and "load" events anyways.

(WebKit::WebPage::immediatelyShrinkToFitContent): Deleted.

LayoutTests:

Remove failing expectations for fast/viewport/ios/device-width-viewport-after-changing-view-scale.html.

  • platform/ios-wk2/TestExpectations:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258804 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259227] by Alan Coon
  • 5 edits in branches/safari-610.1.7-branch

Cherry-pick r258659. rdar://problem/60560831

REGRESSION (r257214): Targeted preview animates to the wrong place when dropping in editable content
https://bugs.webkit.org/show_bug.cgi?id=209218
<rdar://problem/60560831>

Reviewed by Tim Horton.

Source/WebKit:

In r257214, we split out the context menu hint preview container view into two views: one for drag and drop, and
another for the context menu hint. The container view used for both drag and drop previews was removed under
-cleanUpDragSourceSessionState, which is invoked after both drag and drop sessions have ended; however, in the
case of a drop in editable content where the drop preview is delayed, the drop animation can end up finishing
after -cleanUpDragSourceSessionState is invoked. This means we end up prematurely unparenting the preview
container, which results in a broken drop animation.

To fix this, split the drag and drop container views further, into separate container views for dragging and for
dropping. The drag preview container will continue to be removed under -cleanUpDragSourceSessionState, and the
drop preview container will now be removed under the delegate call to -dropInteraction:concludeDrop:, which is
invoked by UIKit after all drop previews are finished animating.

Covered by adding additional test assertions while running existing API tests (see Tools/ChangeLog for more
details).

  • UIProcess/ios/WKContentViewInteraction.h:
  • UIProcess/ios/WKContentViewInteraction.mm: (-[WKContentView _createPreviewContainerWithLayerName:]):

Pull out common logic for creating and setting up a preview container view into a helper method. This is used by
the three methods below, which ensure container views for each of the types of previews we create when showing
the context menu, dragging an element, and dropping.

(-[WKContentView containerForDropPreviews]):
(-[WKContentView containerForDragPreviews]):
(-[WKContentView containerForContextMenuHintPreviews]):

Add a third preview container view for drop previews, and factor duplicated code in these three methods into a
common helper (see above).

(-[WKContentView _hideTargetedPreviewContainerViews]):
(-[WKContentView _deliverDelayedDropPreviewIfPossible:]):

Instead of using the container for drag previews, use the container for drop previews.

(-[WKContentView dropInteraction:concludeDrop:]):

Remove the drop preview container after the drop has concluded (i.e. all animations are complete).

Tools:

Augment the drag and drop test harness to verify that for all targeted previews, if they have container views,
those views must be parented (i.e. they must be connected to a UIWindow).

  • TestWebKitAPI/ios/DragAndDropSimulatorIOS.mm: (-[DragAndDropSimulator _concludeDropAndPerformOperationIfNecessary]): (-[DragAndDropSimulator _expectNoDropPreviewsWithUnparentedContainerViews]): (-[DragAndDropSimulator _invokeDropAnimationCompletionBlocksAndConcludeDrop]):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258659 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259226] by Alan Coon
  • 2 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258530. rdar://problem/60453086

Crash under WebCookieCache::clearForHost()
https://bugs.webkit.org/show_bug.cgi?id=209149
<rdar://problem/60453086>

Reviewed by Darin Adler.

Alternative fix for Bug 209149 based on comments from Darin.

  • WebProcess/WebPage/WebCookieCache.cpp: (WebKit::WebCookieCache::clearForHost): (WebKit::WebCookieCache::pruneCacheIfNecessary):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258530 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259225] by Alan Coon
  • 4 edits in branches/safari-610.1.7-branch

Cherry-pick r258521. rdar://problem/60453086

Crash under WebCookieCache::clearForHost()
https://bugs.webkit.org/show_bug.cgi?id=209149
<rdar://problem/60453086>

Reviewed by Alex Christensen.

Source/WebKit:

Make sure WebCookieCache::pruneCacheIfNecessary() keeps alive the host String it is passing
to WebCookieCache::clearForHost(). Previously, it was merely deferencing a HashSet iterator
and passing that to clearForHost(). However, clearForHost() would then drop the String from
the HashSet and the host would no longer be valid.

Change covered by new API test.

  • WebProcess/WebPage/WebCookieCache.cpp: (WebKit::WebCookieCache::pruneCacheIfNecessary):

Tools:

Add API test coverage.

  • TestWebKitAPI/Tests/WebKitCocoa/CookiePrivateBrowsing.mm: (TEST):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258521 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259224] by Alan Coon
  • 3 edits in branches/safari-610.1.7-branch/Source/WebKit

Cherry-pick r258456. rdar://problem/59931477

Clean up sandbox violations found during testing
https://bugs.webkit.org/show_bug.cgi?id=209096
<rdar://problem/59931477>

Reviewed by Geoffrey Garen.

Remove telemetry from some items, and allow access to some IOKit properties
needed for media playback on macOS and iOS.

  • Resources/SandboxProfiles/ios/com.apple.WebKit.WebContent.sb:
  • WebProcess/com.apple.WebProcess.sb.in:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258456 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259223] by Alan Coon
  • 13 edits
    1 add in branches/safari-610.1.7-branch/Source/JavaScriptCore

Cherry-pick r258344. rdar://problem/60289819

[JSC] Use CacheableIdentifier in ByValInfo
https://bugs.webkit.org/show_bug.cgi?id=208978

Reviewed by Saam Barati.

CodeBlock::finalizeUnconditionally discards JITData. And this includes ByValInfo, which holds Identifier.
However, finalizeUnconditionally is only guaranteeing that the main thread is not working. It can be invoked
in the heap thread, and it is not not setting the AtomStringTable for this heap thread. If Identifier destroys
AtomStringImpl, which fails to unregister itself from the table.

In this patch,

  1. We explicitly set nullptr for the current AtomStringTable to catch the bug as soon as possible in GC end phase.
  2. We use CacheableIdentifier in ByValInfo to avoid destroying Identifier in CodeBlock::finalizeUnconditionally.
  • CMakeLists.txt:
  • JavaScriptCore.xcodeproj/project.pbxproj:
  • Sources.txt:
  • bytecode/ByValInfo.cpp: Added. (JSC::ByValInfo::visitAggregate):
  • bytecode/ByValInfo.h:
  • bytecode/CodeBlock.cpp: (JSC::CodeBlock::stronglyVisitStrongReferences):
  • bytecode/CodeBlock.h:
  • dfg/DFGByteCodeParser.cpp: (JSC::DFG::ByteCodeParser::handlePutByVal):
  • heap/Heap.cpp: (JSC::Heap::runEndPhase):
  • jit/JIT.h:
  • jit/JITOperations.cpp:
  • jit/JITPropertyAccess.cpp: (JSC::JIT::emitByValIdentifierCheck):
  • runtime/CacheableIdentifier.h:

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258344 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:56 PM Changeset in webkit [259222] by Alan Coon
  • 3 edits
    2 adds in branches/safari-610.1.7-branch

Cherry-pick r258282. rdar://problem/58874371

icloud.com Notes text in titles and headings is distorted
https://bugs.webkit.org/show_bug.cgi?id=208908
<rdar://problem/58874371>

Reviewed by Zalan Bujtas.

Source/WebCore:

icloud.com Notes determines if a font has finished loading by measuring it repeatedly.
Depending on the state of the page, we may slice the text differently in different
circumstances. These slices are all supposed to sum together equivalently, but
floating point precision may cause the results to be slightly off.

WidthIterator::applyFontTransforms() was summing a large list of numbers, and then
subtracting the same large list of numbers. A more robust design would be to sum
it twice, and then subtract the two sums.

Test: fast/text/shaping-width-precision.html

  • platform/graphics/WidthIterator.cpp: (WebCore::WidthIterator::applyFontTransforms):

LayoutTests:

  • fast/text/shaping-width-precision-expected.txt: Added.
  • fast/text/shaping-width-precision.html: Added.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@258282 268f45cc-cd09-0410-ab3c-d52691b4dbfc

1:07 PM Changeset in webkit [259221] by pvollan@apple.com
  • 3 edits in trunk/Source/WebKit

Unreviewed build fix after r259200.

  • WebProcess/WebSleepDisablerClient.cpp:

(WebKit::WebSleepDisablerClient::didCreateSleepDisabler):
(WebKit::WebSleepDisablerClient::didDestroySleepDisabler):

  • WebProcess/WebSleepDisablerClient.h:
1:07 PM Changeset in webkit [259220] by Andres Gonzalez
  • 8 edits in trunk/Source/WebCore

[WebAccessibilityObjectWrapper remoteAccessibilityParentObject should be cached to avoid hitting the main thread often.
https://bugs.webkit.org/show_bug.cgi?id=209576

Reviewed by Chris Fleizach.

[WebAccessibilityObjectWrapper remoteAccessibilityParentObject] is
called very often and thus is a performance hit in isolated tree mode
since it has to be dispatched to the main thread. This change caches
this value in AXIsolatedObject, so no need to dispatch to the main
thread any longer.
In addition, the PlatformWidget that was cached in a member variable,
is now cached in the attribute map as well as the remoteParentObject.

  • accessibility/AccessibilityObject.cpp:

(WebCore::AccessibilityObject::remoteParentObject const): Actual implementation of this method.

  • accessibility/AccessibilityObject.h:
  • accessibility/AccessibilityObjectInterface.h:
  • accessibility/isolatedtree/AXIsolatedObject.cpp:

(WebCore::AXIsolatedObject::initializeAttributeData):
(WebCore::AXIsolatedObject::platformWidget const): Deleted.

  • accessibility/isolatedtree/AXIsolatedObject.h:

(WebCore::AXIsolatedObject::propertyValue const):

  • accessibility/isolatedtree/mac/AXIsolatedObjectMac.mm:

(WebCore::AXIsolatedObject::remoteParentObject const):

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(-[WebAccessibilityObjectWrapper remoteAccessibilityParentObject]): No need to dispatch to main thread.
(-[WebAccessibilityObjectWrapper scrollViewParent]):

12:54 PM Changeset in webkit [259219] by pvollan@apple.com
  • 2 edits in trunk/Source/WebCore

[Cocoa] Sleep disabling should be performed in the UI process
https://bugs.webkit.org/show_bug.cgi?id=209676

Reviewed by Darin Adler.

Remove unnecessary include.

  • platform/SleepDisabler.h:
12:39 PM Changeset in webkit [259218] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[ macOS ] REGRESSION (r259139): webgl/2.0.0/conformance2/rendering/framebuffer-completeness-unaffected.html is failing
https://bugs.webkit.org/show_bug.cgi?id=209740

Patch by Kenneth Russell <kbr@chromium.org> on 2020-03-30
Reviewed by Dean Jackson.

Suppress framebuffer-completeness-unaffected.html on macOS until
root cause of differing behavior on differing graphics hardware is
identified.

  • platform/mac/TestExpectations:
12:35 PM Changeset in webkit [259217] by keith_miller@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Unreviewed, add FIXME.

  • runtime/IndexingType.h:
12:24 PM Changeset in webkit [259216] by Caio Lima
  • 3 edits
    1 add in trunk

[JSC] Public class field should accept "static" as field name
https://bugs.webkit.org/show_bug.cgi?id=209703

Reviewed by Ross Kirsling.

JSTests:

  • stress/class-fields-with-special-names.js: Added.

Source/JavaScriptCore:

It allows class fields being created using "static" as identifier
(https://tc39.es/ecma262/#prod-IdentifierName).

  • parser/Parser.cpp:

(JSC::Parser<LexerType>::parseClass):

12:23 PM Changeset in webkit [259215] by sihui_liu@apple.com
  • 4 edits in trunk/Source/WebCore

IndexedDB: destroy UniqueIDBDatabase when it's not used
https://bugs.webkit.org/show_bug.cgi?id=209532
<rdar://problem/60906908>

Reviewed by Geoffrey Garen.

When all connections of a UniqueIDBDatabase object are closed and there are no pending reuqests, the
object may not be used any more. We should delete it for better memory use.

  • Modules/indexeddb/server/IDBServer.cpp:

(WebCore::IDBServer::IDBServer::deleteDatabase):
(WebCore::IDBServer::IDBServer::establishTransaction):
(WebCore::IDBServer::IDBServer::databaseConnectionClosed):
(WebCore::IDBServer::IDBServer::openDBRequestCancelled):

  • Modules/indexeddb/server/UniqueIDBDatabase.cpp:

(WebCore::IDBServer::UniqueIDBDatabase::tryClose):

  • Modules/indexeddb/server/UniqueIDBDatabase.h:
11:47 AM Changeset in webkit [259214] by zhifei_fang@apple.com
  • 2 edits in trunk/Tools

[results.webkit.org: Timeline]: Left side of the timeline scale is usually bigger than the right

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

Reviewed by Jonathan Bedard.

  • resultsdbpy/resultsdbpy/view/static/library/js/components/TimelineComponents.js:
11:30 AM Changeset in webkit [259213] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

Update my name in contributors.json
https://bugs.webkit.org/show_bug.cgi?id=209751

Added myself to contributors.json. Also some changes to other
people's information are made after running the canonicalize script.

Patch by Frank Yang <guowei_yang@apple.com> on 2020-03-30
Reviewed by Myles C. Maxfield.

  • Scripts/webkitpy/common/config/contributors.json:
11:26 AM Changeset in webkit [259212] by aakash_jain@apple.com
  • 22 edits
    6 deletes in trunk/Tools

Delete code for security EWS from old EWS
https://bugs.webkit.org/show_bug.cgi?id=209683

Reverted r232979, r233061, r233190, r233219, r233276 and r233288.

Rubber-stamped by Jonathan Bedard.

  • QueueStatusServer/handlers/releasepatch.py: Reverted changes for security EWS in old EWS.
  • QueueStatusServer/main.py:
  • QueueStatusServer/config/authorization.py: Removed.
  • QueueStatusServer/handlers/fetchattachment.py: Removed.
  • QueueStatusServer/handlers/uploadattachment.py: Removed.
  • QueueStatusServer/model/attachmentdata.py: Removed.
  • QueueStatusServer/templates/uploadattachment.html: Removed.
  • Scripts/webkitpy/common/net/bugzilla/constants.py: Removed.
  • Scripts/webkitpy/common/net/bugzilla/attachment.py:
  • Scripts/webkitpy/common/net/bugzilla/attachment_unittest.py:
  • Scripts/webkitpy/common/net/bugzilla/bug.py:
  • Scripts/webkitpy/common/net/bugzilla/bugzilla.py:
  • Scripts/webkitpy/common/net/bugzilla/bugzilla_mock.py:
  • Scripts/webkitpy/common/net/bugzilla/bugzilla_unittest.py:
  • Scripts/webkitpy/common/net/statusserver.py:
  • Scripts/webkitpy/common/net/statusserver_mock.py:
  • Scripts/webkitpy/tool/bot/feeders.py:
  • Scripts/webkitpy/tool/bot/stylequeuetask.py:
  • Scripts/webkitpy/tool/commands/download.py:
  • Scripts/webkitpy/tool/commands/earlywarningsystem.py:
  • Scripts/webkitpy/tool/commands/earlywarningsystem_unittest.py:
  • Scripts/webkitpy/tool/commands/queries_unittest.py:
  • Scripts/webkitpy/tool/commands/queues.py:
  • Scripts/webkitpy/tool/commands/queues_unittest.py:
  • Scripts/webkitpy/tool/commands/upload_unittest.py:
  • Scripts/webkitpy/tool/main.py:
  • Scripts/webkitpy/tool/steps/obsoletepatches.py:
11:02 AM Changeset in webkit [259211] by Chris Dumez
  • 2 edits in trunk/Source/WebKit

WebKit should take a foreground assertion for offscreen loads when the app is foreground
https://bugs.webkit.org/show_bug.cgi?id=209748
<rdar://problem/59169812>

Reviewed by Geoffrey Garen.

  • UIProcess/API/APIPageConfiguration.h:
10:43 AM Changeset in webkit [259210] by Jack Lee
  • 4 edits
    2 adds in trunk

Division by zero in RenderBlockFlow::computeColumnCountAndWidth
https://bugs.webkit.org/show_bug.cgi?id=209485
<rdar://problem/60746109>

Reviewed by Zalan Bujtas.

Source/WebCore:

When computing content width and height, set it to 0 if the computed size
is negative.

Test: fast/multicol/negativeColumnGap.html

  • rendering/RenderBox.h:

(WebCore::RenderBox::contentWidth const):
(WebCore::RenderBox::contentHeight const):

LayoutTests:

Added a regression test for the crash. Also modify the expected output
of button.html because the size would now be different.

  • fast/multicol/negativeColumnGap-expected.txt: Added.
  • fast/multicol/negativeColumnGap.html: Added.
  • platform/mac/css3/flexbox/button-expected.txt:
10:35 AM Changeset in webkit [259209] by Chris Dumez
  • 6 edits in trunk/Source/WebKit

Regression(r246188) WebProcess is launched too eagerly when [WKWebView _restoreSessionState] is called
https://bugs.webkit.org/show_bug.cgi?id=207908
<rdar://problem/59619323>

Reviewed by Darin Adler.

Since r246188, the WebProcess is launched eagerly when [WKWebView _restoreSessionState] is called. This is bad
for performance because we are unable to leverage the process cache at this point (since we don't know which
domain will be loaded).

This patch thus reverts r246188 and fixes what r246188 was trying to address in a different way. If the process
was not launched yet when restoreSessionState() is called, the session state properly gets sent to the WebProcess
after launch, via the WebPageCreationParameters. What was missing at that point was that the session state was
restore by an API Request. To fix this, we now pass an extra itemStatesWereRestoredByAPIRequest flag in
WebPageCreationParameters.

  • Shared/WebPageCreationParameters.cpp:

(WebKit::WebPageCreationParameters::encode const):
(WebKit::WebPageCreationParameters::decode):

  • Shared/WebPageCreationParameters.h:
  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::restoreFromSessionState):

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

(WebKit::m_processDisplayName):

10:34 AM Changeset in webkit [259208] by youenn@apple.com
  • 2 edits in trunk/LayoutTests

Skip webrtc/datachannel/multiple-connections.html on debug bots
https://bugs.webkit.org/show_bug.cgi?id=209750

Unreviewed.

This is a slow test.

10:29 AM Changeset in webkit [259207] by Wenson Hsieh
  • 4 edits in trunk/Source/WebKit

[Cocoa] Minor code cleanup around WebDataListSuggestionsDropdown
https://bugs.webkit.org/show_bug.cgi?id=209747

Reviewed by Tim Horton.

Refactor WKDataListSuggestionsController and WKDataListSuggestionsControl, such that their _dropdowns are
WeakPtrs instead of raw pointers. Also, make -showSuggestionsDropdown: take a reference instead of a
pointer, since the argument is always this (and assumed to be non-null).

No change in behavior.

  • UIProcess/WebDataListSuggestionsDropdown.h:
  • UIProcess/ios/WebDataListSuggestionsDropdownIOS.mm:

(WebKit::WebDataListSuggestionsDropdownIOS::show):
(-[WKDataListSuggestionsControl showSuggestionsDropdown:activationType:]):
(-[WKDataListSuggestionsPicker showSuggestionsDropdown:activationType:]):
(-[WKDataListSuggestionsPopover showSuggestionsDropdown:activationType:]):

  • UIProcess/mac/WebDataListSuggestionsDropdownMac.mm:

(WebKit::WebDataListSuggestionsDropdownMac::show):
(-[WKDataListSuggestionsController showSuggestionsDropdown:]):

10:17 AM Changeset in webkit [259206] by Chris Dumez
  • 2 edits in trunk/Source/WebCore

NetworkStorageSession::unregisterCookieChangeListenersIfNecessary() should use new CFNetwork SPI when available
https://bugs.webkit.org/show_bug.cgi?id=209742
<rdar://problem/61040492>

Reviewed by Geoffrey Garen.

NetworkStorageSession::unregisterCookieChangeListenersIfNecessary() should use new CFNetwork SPI when available.
Using the old SPI on builds that no longer have it causes crashes.

  • platform/network/cocoa/NetworkStorageSessionCocoa.mm:

(WebCore::NetworkStorageSession::unregisterCookieChangeListenersIfNecessary):

10:15 AM Changeset in webkit [259205] by Devin Rousso
  • 5 edits
    2 adds in trunk

[Web Animations] Crash under KeyframeEffect::getKeyframes for a DeclarativeAnimation
https://bugs.webkit.org/show_bug.cgi?id=209682
<rdar://problem/60962458>

Reviewed by Antoine Quint.

Source/WebCore:

Test: webanimations/css-animation-effect-target-change-and-get-keyframes-crash.html

  • animation/KeyframeEffect.cpp:

(WebCore::KeyframeEffect::getKeyframes):

  • inspector/agents/InspectorAnimationAgent.cpp:

(WebCore::buildObjectForKeyframes):
With the flexibility of the Web Animations API, it's possible for a DeclarativeAnimation
to not have a target. As such, we should not expect it to exist, and should remove any
ASSERT or unchecked dereferences.

  • animation/WebAnimation.cpp:

(WebCore::WebAnimation::effectTimingDidChange):
Drive-by: ensure that InspectorInstrumentation is called last.

LayoutTests:

  • webanimations/css-animation-effect-target-change-and-get-keyframes-crash.html: Added.
  • webanimations/css-animation-effect-target-change-and-get-keyframes-crash-expected.html: Added.
10:11 AM Changeset in webkit [259204] by commit-queue@webkit.org
  • 4 edits in trunk

Add user agent quirk for Red Hat Bugzilla
https://bugs.webkit.org/show_bug.cgi?id=209484

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-03-30
Reviewed by Adrian Perez de Castro.

Source/WebCore:

Red Hat Bugzilla displays a warning page when performing searches with WebKitGTK's standard
user agent.

  • platform/UserAgentQuirks.cpp:

(WebCore::urlRequiresFirefoxBrowser):

Tools:

  • TestWebKitAPI/Tests/WebCore/UserAgentQuirks.cpp:

(TestWebKitAPI::TEST):

9:58 AM Changeset in webkit [259203] by Simon Fraser
  • 2 edits in trunk/Websites/webkit.org

http://webkit.org/css-status/ hangs
https://bugs.webkit.org/show_bug.cgi?id=209746

Reviewed by Antoine Quint.

A change to CSSProperties.json (probably text-orientation unprefixing) revealed an infinite loop
in mergeProperties() which kept appending values to prefixedPropertyObj.values.

Fix by cloning the array before enumerating it.

  • wp-content/themes/webkit/css-status.php:
9:58 AM Changeset in webkit [259202] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WTF

Fix "Dead nested assignment" static analyzer warning in monthFromDayInYear()
<https://webkit.org/b/209718>

Reviewed by Alex Christensen.

  • wtf/DateMath.h:

(WTF::monthFromDayInYear): Change the last check so it doesn't
assign a value to step, thus avoiding the warning.

8:53 AM Changeset in webkit [259201] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebKit

NetworkConnectionToWebProcess::registerFileBlobURL should validate its parameters
<https://webkit.org/b/209713>
<rdar://problem/60097168>

Reviewed by Youenn Fablet.

  • NetworkProcess/NetworkConnectionToWebProcess.cpp:

(WebKit::NetworkConnectionToWebProcess::registerFileBlobURL):

  • Add message check to validate url parameter.
7:48 AM Changeset in webkit [259200] by pvollan@apple.com
  • 25 edits
    8 adds in trunk

[Cocoa] Sleep disabling should be performed in the UI process
https://bugs.webkit.org/show_bug.cgi?id=209676

Reviewed by Darin Adler.

Source/WebCore:

Since sleep disabling is causing communication with the power management service, it should be performed in the UI process.
This patch fixes this by creating a sleep disabler client, which will notify the UI process when a sleep disabler is being
created and destroyed. In response to these messages, the UI process will perform the actual sleep disabling and enabling.
A new sleep disabler class is created which wraps the PAL sleep disabler, and notifies the sleep disabler client when set.
If the sleep disabler client is set, a PAL sleep disabler instance will not be created in the WebContent process, since this
will then happen in the UI process.

API test: WebKit.SleepDisabler

  • Headers.cmake:
  • Sources.txt:
  • WebCore.xcodeproj/project.pbxproj:
  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::updateSleepDisabling):

  • html/HTMLMediaElement.h:
  • platform/SleepDisabler.cpp: Added.

(WebCore::SleepDisabler::SleepDisabler):
(WebCore::SleepDisabler::~SleepDisabler):

  • platform/SleepDisabler.h: Added.

(WebCore::SleepDisabler::type const):

  • platform/SleepDisablerClient.cpp: Added.

(WebCore::sleepDisablerClient):

  • platform/SleepDisablerClient.h: Added.

(WebCore::SleepDisablerClient::~SleepDisablerClient):

  • platform/SleepDisablerIdentifier.h: Added.
  • testing/Internals.cpp:

(WebCore::Internals::createSleepDisabler):
(WebCore::Internals::destroySleepDisabler):

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

Source/WebKit:

Since sleep disabling is causing communication with the power management service, it should be performed in the UI process.
The UI process will be notified by the WebContent process about sleep disablers being created and destroyed, and will perform
the actual sleep disabling and enabling.

  • Scripts/webkit/messages.py:
  • Sources.txt:
  • UIProcess/API/Cocoa/WKWebViewPrivateForTesting.h:
  • UIProcess/API/Cocoa/WKWebViewTesting.mm:

(-[WKWebView _hasSleepDisabler]):

  • UIProcess/WebProcessProxy.cpp:

(WebKit::WebProcessProxy::didCreateSleepDisabler):
(WebKit::WebProcessProxy::didDestroySleepDisabler):
(WebKit::WebProcessProxy::hasSleepDisabler):

  • UIProcess/WebProcessProxy.h:
  • UIProcess/WebProcessProxy.messages.in:
  • WebKit.xcodeproj/project.pbxproj:
  • WebProcess/GPU/media/RemoteLegacyCDM.cpp:
  • WebProcess/GPU/media/ios/RemoteMediaSessionHelper.cpp:
  • WebProcess/GPU/media/ios/RemoteMediaSessionHelper.h:
  • WebProcess/WebPage/ViewGestureGeometryCollector.cpp:
  • WebProcess/WebSleepDisablerClient.cpp: Added.

(WebKit::WebSleepDisablerClient::didCreateSleepDisabler):
(WebKit::WebSleepDisablerClient::didDestroySleepDisabler):

  • WebProcess/WebSleepDisablerClient.h: Added.
  • WebProcess/cocoa/WebProcessCocoa.mm:

(WebKit::WebProcess::platformInitializeWebProcess):

Tools:

  • TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
  • TestWebKitAPI/Tests/WebKit/SleepDisabler.mm: Added.

(TEST):

7:15 AM Changeset in webkit [259199] by Diego Pino Garcia
  • 1 edit
    30 deletes in trunk/LayoutTests

[GTK] Gardening, remove redundant baselines
https://bugs.webkit.org/show_bug.cgi?id=209738

Unreviewed gardening.

The baselines below are not needed as they're equal to the
generic baseline.

  • platform/gtk/animations/lineheight-animation-expected.txt: Removed.
  • platform/gtk/animations/simultaneous-start-transform-expected.txt: Removed.
  • platform/gtk/animations/width-using-ems-expected.txt: Removed.
  • platform/gtk/css-dark-mode/prefers-color-scheme-expected.txt: Removed.
  • platform/gtk/fast/dom/Range/getBoundingClientRect-expected.txt: Removed.
  • platform/gtk/fast/events/window-events-bubble-expected.txt: Removed.
  • platform/gtk/fast/events/window-events-bubble2-expected.txt: Removed.
  • platform/gtk/fast/forms/number/number-spinbutton-change-and-input-events-expected.txt: Removed.
  • platform/gtk/fast/forms/number/number-spinbutton-click-in-iframe-expected.txt: Removed.
  • platform/gtk/fast/forms/number/number-spinbutton-gets-disabled-or-readonly-expected.txt: Removed.
  • platform/gtk/fast/images/icon-decoding-expected.txt: Removed.
  • platform/gtk/http/tests/websocket/tests/hybi/network-process-crash-error-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/alignment/grid-row-axis-alignment-positioned-items-015-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/css/css-grid/alignment/grid-row-axis-alignment-positioned-items-016-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/html/semantics/interactive-elements/the-dialog-element/dialog-showModal-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/mathml/presentation-markup/mrow/legacy-mrow-like-elements-001-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/mathml/presentation-markup/mrow/legacy-mstyle-attributes-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/mathml/presentation-markup/scripts/cramped-001-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/mathml/presentation-markup/tables/table-001-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/mathml/relations/html5-tree/tabindex-001-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/Create-valid-url-protocol-empty.any-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/Create-valid-url-protocol-empty.any.worker-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/closing-handshake/003-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/cookies/004-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/bufferedAmount/bufferedAmount-deleting-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/close/close-multiple-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/close/close-nested-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/close/close-return-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/events/017-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/events/018-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/events/019-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/interfaces/WebSocket/readyState/003-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/opening-handshake/001-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/opening-handshake/003-sets-origin.worker-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/opening-handshake/005-expected.txt: Removed.
  • platform/gtk/imported/w3c/web-platform-tests/websockets/security/001-expected.txt: Removed.
6:56 AM Changeset in webkit [259198] by Wenson Hsieh
  • 2 edits in trunk/Source/WebKit

[macOS] Datalist dropdown suggestions table can be scrolled too far
https://bugs.webkit.org/show_bug.cgi?id=209721

Reviewed by Tim Horton.

WKDataListSuggestionTableView's enclosing scroll view is set to an incorrect size while laying out the table
view, due to AppKit logic that attempts to adjust the size of the table view's enclosing scroll view after we've
already attempted to set the frame of the scroll view under the overridden call to -layout.

Fix this by refactoring the logic around the suggestion table view's enclosing scroll view; currently,
WKDataListSuggestionTableView overrides -enclosingScrollView to return its own NSScrollView, which it sizes
underneath an overridden call to -layout. This is a bit strange, since the table view is actually a subview of
the scroll view it owns; the fact that laying out the table view causes an ancestor view to change size (and
subsequently invalidate the table view's layout) seems to be what breaks AppKit's enclosing scroll view
adjustment logic.

Instead, we can have own both the table view and the table view's enclosing scroll view.

  • UIProcess/mac/WebDataListSuggestionsDropdownMac.mm:

(-[WKDataListSuggestionTableView initWithElementRect:]):
(-[WKDataListSuggestionsController initWithInformation:inView:]):

Move the scroll view initialization logic out of -[WKDataListSuggestionTableView initWithElementRect:] and into
this method. This also means that we can initialize the scroll view with the bounds of the window's content
view, instead of waiting until we lay out the table view underneath the scroll view.

(-[WKDataListSuggestionsController updateWithInformation:]):
(-[WKDataListSuggestionsController invalidate]):

Clear out and remove _scrollView as well when we tear down the controller.

(-[WKDataListSuggestionsController showSuggestionsDropdown:]):
(-[WKDataListSuggestionTableView layout]): Deleted.
(-[WKDataListSuggestionTableView enclosingScrollView]): Deleted.
(-[WKDataListSuggestionTableView removeFromSuperviewWithoutNeedingDisplay]): Deleted.

Now that the controller owns the scroll view, we don't need to override these anymore.

6:49 AM Changeset in webkit [259197] by pvollan@apple.com
  • 2 edits in trunk/Tools

[macOS] REGRESSION(r258949) API test failures
https://bugs.webkit.org/show_bug.cgi?id=209702

Reviewed by Darin Adler.

After r258949, the preference observer is started when the app is activated, but since the app running
API tests is not being activated, the preference observer needs to be manually instantiated in each test.

  • TestWebKitAPI/Tests/WebKit/PreferenceChanges.mm:

(-[WKTestPreferenceObserver preferenceDidChange:key:encodedValue:]):
(TEST):

6:13 AM Changeset in webkit [259196] by Diego Pino Garcia
  • 2 edits
    2 adds in trunk/LayoutTests

[GTK] Gardening, update TestExpectations
https://bugs.webkit.org/show_bug.cgi?id=209728

Unreviewed gardening.

  • platform/gtk/TestExpectations:
  • platform/gtk/imported/w3c/web-platform-tests/css/cssom-view/cssom-getBoundingClientRect-003-expected.txt:

Added after 259059.

5:37 AM Changeset in webkit [259195] by Antti Koivisto
  • 3 edits in trunk/LayoutTests

Unreviewed test gardening.

4:54 AM Changeset in webkit [259194] by Antti Koivisto
  • 50 edits
    446 adds
    337 deletes in trunk/LayoutTests

Update css/selectors WPT tests
https://bugs.webkit.org/show_bug.cgi?id=209726

Reviewed by Antoine Quint.

LayoutTests/imported/w3c:

  • resources/import-expectations.json:
  • resources/resource-files.json:
  • web-platform-tests/css/selectors/CHANGES: Removed.
  • web-platform-tests/css/selectors/META.yml: Added.
  • web-platform-tests/css/selectors/Makefile: Removed.
  • web-platform-tests/css/selectors/OWNERS: Removed.
  • web-platform-tests/css/selectors/README: Removed.
  • web-platform-tests/css/selectors/TODO: Removed.
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/cssom-expected.txt:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/cssom.html:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/resources/syntax-quirks.html:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/resources/syntax-xml.xhtml:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/resources/w3c-import.log:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/semantics-expected.txt:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/semantics.html:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/syntax-expected.txt:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/syntax.html:
  • web-platform-tests/css/selectors/attribute-selectors/attribute-case/w3c-import.log:
  • web-platform-tests/css/selectors/attribute-selectors/style-attribute-selector-expected.txt: Added.
  • web-platform-tests/css/selectors/attribute-selectors/style-attribute-selector.html: Added.
  • web-platform-tests/css/selectors/attribute-selectors/w3c-import.log: Added.
  • web-platform-tests/css/selectors/css3-modsel-1.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-10.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-100.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-100b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-101.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-101b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-102.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-102b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-103.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-103b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-104.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-104b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-105.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-105b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-106.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-106b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-107.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-107b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-108.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-108b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-109.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-109b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-11.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-110.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-110b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-111.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-111b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-112.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-112b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-113.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-113b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-114.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-114b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-115.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-115b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-116.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-116b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-117.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-117b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-118.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-119.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-12.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-120.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-121.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-122.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-123.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-123b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-124.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-124b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-125.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-125b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-126.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-126b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-127.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-127b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-128.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-128b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-129.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-129b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-13.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-130.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-130b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-131.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-131b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-132.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-132b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-133.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-133b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-134.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-134b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-135.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-135b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-136.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-136b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-137.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-137b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-138.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-138b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-139.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-139b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-14.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-140.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-140b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-141.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-141b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-142.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-142b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-143.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-143b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-144.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-145a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-145b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-146a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-146b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-147a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-147b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-148.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-149.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-149b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-14b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-14c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-14d.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-14e.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-15.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-150.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-151.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-152.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-153.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-154.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-155.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-155a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-155b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-155c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-155d.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-156.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-156b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-156c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-157.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-158.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-159.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-15b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-15c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-16.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-160.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-161.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-162.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-163.xml-disabled-contains-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-164.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-165.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-166.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-166a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-167.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-167a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-168.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-168a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-169.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-169a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-17.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-170.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-170a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-170b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-170c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-170d.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-171.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-172a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-172b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-173a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-173b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-174a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-174b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-175a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-175b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-175c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-176.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-177a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-177b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-178.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-179.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-179a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-18.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-180.xml-disabled-because-we-want-to-allow-for-expansion: Removed.
  • web-platform-tests/css/selectors/css3-modsel-180a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-181.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-182.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-183.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-184a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-184b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-184c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-184d.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-184e.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-184f.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-18a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-18b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-18c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-19.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-19a.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-19b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-2.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-20.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-21.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-21b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-21c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-22.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-23.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-24.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-25.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-27.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-27a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-27b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-28.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-28b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-28c.pl-draft: Removed.
  • web-platform-tests/css/selectors/css3-modsel-29.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-29b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-3.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-30.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-31.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-32.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-33.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-34.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-35.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-36.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-37.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-38.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-39.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-39a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-39b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-39c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-3a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-4.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-40.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-41.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-41a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-42.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-42a.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-43.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-43b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-44.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-44b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-44c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-44d.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-45.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-45b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-45c.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-46.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-46b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-47.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-48.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-49.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-5.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-50.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-51.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-52.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-53.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-54.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-55.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-56.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-57.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-57b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-58.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-59.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-6.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-60.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-61.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-62.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-63.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-64.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-65.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-66.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-66b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-67.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-68.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-69.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-7.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-70.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-72.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-72b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-73.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-73b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-74.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-74b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-75.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-75b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-76.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-76b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-77.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-77b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-78.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-78b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-79.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-7b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-7c.xml-disabled-due-to-limitations-in-the-build-system: Removed.
  • web-platform-tests/css/selectors/css3-modsel-7d.xml-disabled-due-to-limitations-in-the-build-system: Removed.
  • web-platform-tests/css/selectors/css3-modsel-8.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-80.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-81.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-81b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-82.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-82b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-83.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-84.xml-disabled-contains-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-84b.xml-disabled-contains-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-85.xml-disabled-contains-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-86.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-87.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-87b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-88.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-88b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-89.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-9.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-90.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-90b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-91.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-92.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-93.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-94.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-94b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-95.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-96.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-96b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-97.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-97b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-98.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-98b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-99.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-99b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d1.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d1b.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d2.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d3.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d4.xml: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d5.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d5a.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d5b.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d5c.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d5d.xml-removed: Removed.
  • web-platform-tests/css/selectors/css3-modsel-d5e.xml-removed: Removed.
  • web-platform-tests/css/selectors/floating-first-letter-05d0-expected.html: Added.
  • web-platform-tests/css/selectors/floating-first-letter-05d0.html: Added.
  • web-platform-tests/css/selectors/floating-first-letter-feff-expected.html: Added.
  • web-platform-tests/css/selectors/floating-first-letter-feff.html: Added.
  • web-platform-tests/css/selectors/focus-visible-005-expected.txt:
  • web-platform-tests/css/selectors/focus-visible-005.html:
  • web-platform-tests/css/selectors/focus-visible-007-expected.txt: Added.
  • web-platform-tests/css/selectors/focus-visible-007.html: Added.
  • web-platform-tests/css/selectors/focus-visible-009-expected.txt: Added.
  • web-platform-tests/css/selectors/focus-visible-009.html: Added.
  • web-platform-tests/css/selectors/focus-visible-010-expected.txt: Added.
  • web-platform-tests/css/selectors/focus-visible-010.html: Added.
  • web-platform-tests/css/selectors/focus-visible-011-expected.txt: Added.
  • web-platform-tests/css/selectors/focus-visible-011.html: Added.
  • web-platform-tests/css/selectors/historical-xmlid-expected.xht: Added.
  • web-platform-tests/css/selectors/historical-xmlid.xht: Added.
  • web-platform-tests/css/selectors/htaccess: Removed.
  • web-platform-tests/css/selectors/html-full.css: Removed.
  • web-platform-tests/css/selectors/html-shell.css: Removed.
  • web-platform-tests/css/selectors/i18n/META.yml: Added.
  • web-platform-tests/css/selectors/i18n/OWNERS: Removed.
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-004.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-005.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-006.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-007.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-008.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-009.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-010.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-011.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-012.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-014.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-015.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-016.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-024.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-025.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-026.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-027.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-028.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-029.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-030.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-031.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-032.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-034.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-035.html:
  • web-platform-tests/css/selectors/i18n/css3-selectors-lang-036.html:
  • web-platform-tests/css/selectors/i18n/w3c-import.log:
  • web-platform-tests/css/selectors/invalidation/attribute-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/attribute.html: Added.
  • web-platform-tests/css/selectors/invalidation/defined-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/defined.html: Added.
  • web-platform-tests/css/selectors/invalidation/enabled-disabled-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/enabled-disabled.html: Added.
  • web-platform-tests/css/selectors/invalidation/first-child-last-child-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/first-child-last-child.html: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-001-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-001.html: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-002-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-002.html: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-003-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-003.html: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-004-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/insert-sibling-004.html: Added.
  • web-platform-tests/css/selectors/invalidation/is-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/is.html: Added.
  • web-platform-tests/css/selectors/invalidation/matches-expected.txt: Removed.
  • web-platform-tests/css/selectors/invalidation/matches.html: Removed.
  • web-platform-tests/css/selectors/invalidation/quirks-mode-stylesheet-dynamic-add-001.html:
  • web-platform-tests/css/selectors/invalidation/sibling-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/sibling.html: Added.
  • web-platform-tests/css/selectors/invalidation/w3c-import.log:
  • web-platform-tests/css/selectors/invalidation/where-expected.txt: Added.
  • web-platform-tests/css/selectors/invalidation/where.html: Added.
  • web-platform-tests/css/selectors/is-nested-expected.txt: Added.
  • web-platform-tests/css/selectors/is-nested.html: Added.
  • web-platform-tests/css/selectors/is-specificity-expected.txt: Added.
  • web-platform-tests/css/selectors/is-specificity.html: Added.
  • web-platform-tests/css/selectors/matches-nested-expected.txt: Removed.
  • web-platform-tests/css/selectors/matches-nested.html: Removed.
  • web-platform-tests/css/selectors/matches-specificity-expected.txt: Removed.
  • web-platform-tests/css/selectors/matches-specificity.html: Removed.
  • web-platform-tests/css/selectors/not-links-expected.html: Added.
  • web-platform-tests/css/selectors/not-links.html: Added.
  • web-platform-tests/css/selectors/of-type-selectors-expected.xhtml:
  • web-platform-tests/css/selectors/of-type-selectors.xhtml:
  • web-platform-tests/css/selectors/old-tests/css3-modsel-1.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-10.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-100.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-100b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-101-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-101.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-101b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-101b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-102-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-102.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-102b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-103-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-103.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-103b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-103b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-104.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-104b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-105-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-105.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-105b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-105b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-106-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-106.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-106b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-106b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-107.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-107b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-108-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-108.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-108b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-108b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-109-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-109.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-109b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-109b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-11.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-110-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-110.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-110b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-110b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-111.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-111b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-112-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-112.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-112b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-112b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-113.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-113b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-114.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-114b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-115-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-115.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-115b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-115b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-116-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-116.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-116b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-116b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-117-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-117.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-117b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-117b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-118.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-119.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-120.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-121.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-122-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-122.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-123.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-123b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-124.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-124b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-125-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-125.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-125b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-125b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-126-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-126.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-126b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-126b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-127-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-127.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-127b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-127b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-128-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-128.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-128b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-128b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-129-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-129.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-129b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-129b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-13.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-130.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-130b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-131.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-131b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-132.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-132b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-133.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-133b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-134-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-134.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-134b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-134b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-135-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-135.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-135b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-135b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-136-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-136.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-136b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-136b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-137.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-137b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-138.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-138b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-139.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-139b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-14.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-140.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-140b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-141-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-141.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-141b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-141b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-142-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-142.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-142b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-142b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-143-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-143.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-143b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-143b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-144.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-145a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-145b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-146a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-146b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-147a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-147b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-148-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-148.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-149-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-149.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-149b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-149b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-14b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-14b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-14c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-14d.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-14e.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-15.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-150.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-151-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-151.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-152-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-152.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-153.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-154-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-154.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155c-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155d-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-155d.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-156-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-156.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-156b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-156b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-156c-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-156c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-157-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-157.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-158-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-158.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-15b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-15b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-160-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-160.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-166.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-166a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-167.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-167a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-168-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-168.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-168a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-168a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-169-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-169.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-169a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-169a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170c-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170d-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-170d.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-171.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-172a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-172a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-172b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-172b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-173a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-173a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-173b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-173b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-174a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-174b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-175a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-175a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-175b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-175b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-175c-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-175c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-176-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-176.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-177b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-177b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-178-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-178.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-179-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-179.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-179a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-180a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-181.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-182.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-183.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184a-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184c-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184d-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184d.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184e-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184e.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184f-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-184f.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-2.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-21b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-21c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-22.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-23.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-24.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-25.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-27.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-27a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-27b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-28.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-28b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-29.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-29b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-3.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-30.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-31.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-32.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-33.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-34.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-35.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-36.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-37.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-38.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-39.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-39a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-39b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-39c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-3a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-4.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-41.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-41a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-42.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-42a.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-43.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-43b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-44.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-44b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-44c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-44d.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-45.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-45b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-45c.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-46.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-46b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-47.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-48-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-48.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-49-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-49.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-5.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-50.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-51.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-52.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-53.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-54-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-54.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-55-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-55.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-56-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-56.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-57.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-57b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-59-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-59.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-6.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-60-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-60.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-66b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-67.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-68.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-69.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-7.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-70.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-72.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-72b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-73.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-73b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-74.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-74b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-75.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-75b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-76.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-76b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-77.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-77b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-78.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-78b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-79.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-7b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-7b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-8.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-80.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-81.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-81b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-82.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-82b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-83-expected.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-83.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-86.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-87-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-87.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-87b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-87b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-88.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-88b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-89.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-9.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-90-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-90.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-90b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-90b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-91.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-92.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-93.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-94.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-94b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-95.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-96.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-96b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-97.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-97b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-98.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-98b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-99-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-99.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-99b-expected.xht: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-99b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-d1.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-d1b.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-d2.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-d3.xml: Added.
  • web-platform-tests/css/selectors/old-tests/css3-modsel-d4.xml: Added.
  • web-platform-tests/css/selectors/old-tests/w3c-import.log: Added.
  • web-platform-tests/css/selectors/remove-hovered-element-expected.html: Added.
  • web-platform-tests/css/selectors/remove-hovered-element.html: Added.
  • web-platform-tests/css/selectors/resources/w3c-import.log:
  • web-platform-tests/css/selectors/root-siblings.htm: Added.
  • web-platform-tests/css/selectors/scope-selector-expected.txt: Added.
  • web-platform-tests/css/selectors/scope-selector.html: Added.
  • web-platform-tests/css/selectors/selector-placeholder-shown-emptify-placeholder-expected.txt: Added.
  • web-platform-tests/css/selectors/selector-placeholder-shown-emptify-placeholder.html: Added.
  • web-platform-tests/css/selectors/selectors-case-sensitive-001-expected.txt: Added.
  • web-platform-tests/css/selectors/selectors-case-sensitive-001.html: Added.
  • web-platform-tests/css/selectors/selectors-empty-001.xml:
  • web-platform-tests/css/selectors/sharing-in-svg-use-expected.html: Added.
  • web-platform-tests/css/selectors/sharing-in-svg-use.html: Added.
  • web-platform-tests/css/selectors/tng.css: Removed.
  • web-platform-tests/css/selectors/user-invalid.html:
  • web-platform-tests/css/selectors/w3c-import.log:
  • web-platform-tests/css/selectors/webkit-pseudo-element-expected.txt: Added.
  • web-platform-tests/css/selectors/webkit-pseudo-element.html: Added.
  • web-platform-tests/css/selectors/x-pseudo-element-expected.txt: Added.
  • web-platform-tests/css/selectors/x-pseudo-element.html: Added.
  • web-platform-tests/css/selectors/xhtml-full.css: Removed.
  • web-platform-tests/css/selectors/xhtml-shell.css: Removed.
  • web-platform-tests/css/selectors/xml-full.css: Removed.
  • web-platform-tests/css/selectors/xml-shell.css: Removed.

LayoutTests:

4:18 AM Changeset in webkit [259193] by graouts@webkit.org
  • 2 edits in trunk/Source/WebCore

Mark Pointer Events and Web Animations features as completed in https://webkit.org/status/
https://bugs.webkit.org/show_bug.cgi?id=209730

Reviewed by Antti Koivisto.

Pointer Events and Web Animations have been completed already, mark those as Supported in https://webkit.org/status/.
Additionally, we fix an alphabetical ordering issue.

  • features.json:
2:37 AM Changeset in webkit [259192] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebCore

Unreviewed. [GTK][WPE] Media controls: Remove references to -webkit-media-controls-time-remaining-display

  • Modules/mediacontrols/mediaControlsAdwaita.css:

(audio::-webkit-media-controls-current-time-display.hidden,):

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

[GTK][WPE] REGRESSION(r257775): Media controls current time label changes its size when it's updated
https://bugs.webkit.org/show_bug.cgi?id=209593

Reviewed by Xabier Rodriguez-Calvar.

This regressed in r257775 for me, because my system font doesn't use fixed width for digits. We should try to
use the tabular-nums font variant if available.

  • Modules/mediacontrols/mediaControlsAdwaita.css:

(audio::-webkit-media-controls-current-time-display,): Add font-variant-numeric: tabular-nums;

2:30 AM Changeset in webkit [259190] by zandobersek@gmail.com
  • 7 edits in trunk

[WPE] Can't create WebGL context after r259139
https://bugs.webkit.org/show_bug.cgi?id=209722

Reviewed by Carlos Garcia Campos.

.:

  • Source/cmake/OptionsWPE.cmake: Disable WebGL2 for WPE until

the ANGLE-backed implementation can be used for it.

Source/WebCore:

Adjust the WebXRWebGLRenderingContext tuple depending on the WebGL2
feature being enabled or not.

  • Modules/webxr/WebXRWebGLLayer.h:
  • Modules/webxr/WebXRWebGLLayer.idl:

LayoutTests:

  • platform/wpe/TestExpectations:

Remove catch-all expectations for WebGL tests.

2:23 AM Changeset in webkit [259189] by Diego Pino Garcia
  • 6 edits
    1 add in trunk/LayoutTests

[GTK] Gardening, update baselines
https://bugs.webkit.org/show_bug.cgi?id=209724

Unreviewed gardening.

  • platform/gtk/fast/forms/placeholder-position-expected.txt: Updated

after r258906.

  • platform/gtk/fast/ruby/bopomofo-mixed-expected.txt: Added after

r258990.

  • platform/gtk/fast/text/international/text-combine-image-test-expected.png:

Updated after r258990.

  • platform/gtk/fast/text/international/text-combine-image-test-expected.txt:

Updated after r258990.

  • platform/gtk/fast/writing-mode/vertical-align-table-baseline-expected.png:

Updated after r258990.

  • platform/gtk/fast/writing-mode/vertical-align-table-baseline-expected.txt:

Updated after r258990.

2:11 AM Changeset in webkit [259188] by Carlos Garcia Campos
  • 7 edits in trunk

[HarfBuzz] Not all CSS font features are applied
https://bugs.webkit.org/show_bug.cgi?id=209591

Reviewed by Adrian Perez de Castro.

Source/WebCore:

Implement font feature precedence algorithm for HarfBuzz, including features specified in font-face rule and
font-variant settings that we were ignoring.

7.2. Feature precedence
https://www.w3.org/TR/css-fonts-3/#feature-precedence

  • platform/graphics/freetype/FontCacheFreeType.cpp:

(WebCore::FontCache::createFontPlatformData): Add font features to be enanled to the font config pattern.

  • platform/graphics/freetype/FontCustomPlatformDataFreeType.cpp:

(WebCore::FontCustomPlatformData::fontPlatformData): Ditto.

  • platform/graphics/harfbuzz/ComplexTextControllerHarfBuzz.cpp:

(WebCore::setFeatureSettingsFromVariants): Helper to add font-variant settings.
(WebCore::fontFeatures): Implement font feature precedence algorithm.
(WebCore::findScriptForVerticalGlyphSubstitution): Use HB_TAG direftly.
(WebCore::ComplexTextController::collectComplexTextRunsForCharacters): Pass FontPlatformData to fontFeatures().

LayoutTests:

Remove expectations for tests that are now passing.

  • platform/gtk/TestExpectations:
  • platform/wpe/TestExpectations:
12:33 AM Changeset in webkit [259187] by graouts@webkit.org
  • 30 edits in trunk

[AutoSizing] Bring back the old auto-sizing code as a deprecated codepath for compatibility reasons
https://bugs.webkit.org/show_bug.cgi?id=209669
<rdar://problem/60111081>

Reviewed by Alan Bujtas and Darin Adler.

Source/WebCore:

We changed the auto-sizing code for webkit.org/b/196743 in r244098, but some clients need it and we bring it back
via two exclusive auto-sizing mode: fixed-width (the existing mode) and size-to-content (the resurrected mode).

  • page/FrameView.cpp:

(WebCore::FrameView::autoSizeIfEnabled):
(WebCore::FrameView::performFixedWidthAutoSize):
(WebCore::FrameView::performSizeToContentAutoSize):
(WebCore::FrameView::enableFixedWidthAutoSizeMode):
(WebCore::FrameView::enableSizeToContentAutoSizeMode):
(WebCore::FrameView::enableAutoSizeMode):

  • page/FrameView.h:
  • testing/Internals.cpp:

(WebCore::Internals::resetToConsistentState):
(WebCore::Internals::enableFixedWidthAutoSizeMode):
(WebCore::Internals::enableAutoSizeMode): Deleted.

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

Source/WebKit:

We changed the auto-sizing code for webkit.org/b/196743 in r244098, but some clients need it and we bring it back
via a new dedicated -[WKWebView _setSizeToContentAutoSizeMaximumSize:] SPI.

  • Shared/WebPageCreationParameters.cpp:

(WebKit::WebPageCreationParameters::encode const):
(WebKit::WebPageCreationParameters::decode):

  • Shared/WebPageCreationParameters.h:
  • UIProcess/API/Cocoa/WKViewPrivate.h:
  • UIProcess/API/Cocoa/WKWebViewPrivate.h:
  • UIProcess/API/mac/WKView.mm:

(-[WKView sizeToContentAutoSizeMaximumSize]):
(-[WKView setSizeToContentAutoSizeMaximumSize:]):

  • UIProcess/API/mac/WKWebViewMac.mm:

(-[WKWebView _sizeToContentAutoSizeMaximumSize]):
(-[WKWebView _setSizeToContentAutoSizeMaximumSize:]):

  • UIProcess/Cocoa/WebViewImpl.h:
  • UIProcess/Cocoa/WebViewImpl.mm:

(WebKit::WebViewImpl::setSizeToContentAutoSizeMaximumSize):
(WebKit::WebViewImpl::sizeToContentAutoSizeMaximumSize const):
(WebKit::WebViewImpl::setIntrinsicContentSize):

  • UIProcess/DrawingAreaProxy.h:

(WebKit::DrawingAreaProxy::sizeToContentAutoSizeMaximumSizeDidChange):

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

(WebKit::WebPageProxy::sizeToContentAutoSizeMaximumSize const):

  • UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.h:
  • UIProcess/mac/TiledCoreAnimationDrawingAreaProxy.mm:

(WebKit::TiledCoreAnimationDrawingAreaProxy::sizeToContentAutoSizeMaximumSizeDidChange):
(WebKit::TiledCoreAnimationDrawingAreaProxy::didUpdateGeometry):
(WebKit::TiledCoreAnimationDrawingAreaProxy::willSendUpdateGeometry):

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::transitionToCommittedForNewPage):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::m_processDisplayName):
(WebKit::WebPage::reinitializeWebPage):
(WebKit::WebPage::setMinimumSizeForAutoLayout):
(WebKit::WebPage::setSizeToContentAutoSizeMaximumSize):
(WebKit::WebPage::updateIntrinsicContentSizeIfNeeded):

  • WebProcess/WebPage/WebPage.h:

(WebKit::WebPage::sizeToContentAutoSizeMaximumSize const):

  • WebProcess/WebPage/WebPage.messages.in:
  • WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:

(WebKit::TiledCoreAnimationDrawingArea::updateGeometry):

LayoutTests:

The methods internals.enableAutoSizeMode() has changed to internals.enableFixedWidthAutoSizeMode().

  • css3/viewport-percentage-lengths/vh-auto-size-expected.html:
  • css3/viewport-percentage-lengths/vh-auto-size.html:
  • fast/dynamic/crash-subtree-layout-when-auto-size-enabled.html:
  • fast/dynamic/mail-autosize-viewport-unit.html:

Mar 29, 2020:

8:22 PM Changeset in webkit [259186] by Lauro Moura
  • 3 edits in trunk/LayoutTests

[GTK][WPE] Gardening some tests related to vertical text baselines

Unreviewed test gardening.

  • platform/gtk/TestExpectations:
  • platform/wpe/TestExpectations:
7:50 PM Changeset in webkit [259185] by Lauro Moura
  • 2 edits in trunk/LayoutTests

[WPE] Mark WebGL tests as failures while we can't create a context

Unreviewed test gardening.

  • platform/wpe/TestExpectations:
6:06 PM Changeset in webkit [259184] by Darin Adler
  • 65 edits
    1 add
    1 delete in trunk

Move TextIterator::rangeFromLocationAndLength off of live ranges
https://bugs.webkit.org/show_bug.cgi?id=209408

Source/WebCore:

Reviewed by Antti Koivisto.

  • Put CharacterRange into a header, CharacterRange.h.
  • Replaced CharacterOffset with direct uses of uint64_t. Because this can be a single offset into an entire document, use a 64-bit integer so we don't limit an entire document to 232 characters; in theory this makes it so we can support a document with tons of text nodes that add up to more than 232.
  • Because CharacterRange uses 64-bit integers we can now convert more easily to and from NSRange and CFRange on Cocoa platforms.
  • Headers.cmake: Added CharacterRange.h.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • accessibility/ios/WebAccessibilityObjectWrapperIOS.mm:

(-[WebAccessibilityObjectWrapper _convertToDOMRange:]):
Use CharacterRange, resolveCharacterLocation/Range.

  • accessibility/mac/WebAccessibilityObjectWrapperMac.mm:

(AXAttributeStringSetSpelling): Ditto.
(-[WebAccessibilityObjectWrapper _textMarkerForIndex:]): Ditto.

  • dom/DocumentMarkerController.cpp:

(WebCore::DocumentMarkerController::collectTextRanges): Take SimpleRange.
(WebCore::DocumentMarkerController::addMarker): Ditto.
(WebCore::DocumentMarkerController::addDictationResultMarker): Ditto.
(WebCore::DocumentMarkerController::addPlatformTextCheckingMarker): Ditto.

  • dom/DocumentMarkerController.h: Updated for above changes.
  • dom/Position.h: Export createLegacyEditingPosition so it can be used

outside of WebCore.

  • dom/SimpleRange.cpp:

(WebCore::fastIsCharacterData): Added. Could be moved to the Node class.
(WebCore::length): Added. Could be moved to the Node class.
(WebCore::makeRangeSelectingNodeContents): Added. Analogous to the
Range::selectNodeContents function.

  • dom/SimpleRange.h: Updated for the above.
  • editing/AlternativeTextController.cpp:

(WebCore::AlternativeTextController::applyAlternativeTextToRange):
Use CharacterRange, resolveCharacterLocation/Range.

  • editing/ApplyStyleCommand.cpp:

(WebCore::ApplyStyleCommand::applyBlockStyle): Ditto.

  • editing/CharacterRange.h: Added.
  • editing/CompositeEditCommand.cpp:

(WebCore::CompositeEditCommand::moveParagraphs):
Use CharacterRange, resolveCharacterLocation/Range.

  • editing/Editing.cpp:

(WebCore::visiblePositionForIndex): Ditto.

  • editing/Editor.cpp:

(WebCore::Editor::advanceToNextMisspelling): Ditto.
(WebCore::correctSpellcheckingPreservingTextCheckingParagraph): Ditto.
(WebCore::Editor::markAndReplaceFor): Ditto.
(WebCore::Editor::changeBackToReplacedString): Ditto.
(WebCore::Editor::scanRangeForTelephoneNumbers): Ditto.
(WebCore::Editor::rangeForTextCheckingResult const): Ditto.

  • editing/TextCheckingHelper.cpp:

(WebCore::findGrammaticalErrors): Ditto.
(WebCore::findMisspellings): Ditto.
(WebCore::TextCheckingParagraph::invalidateParagraphRangeValues): Ditto.
(WebCore::TextCheckingParagraph::rangeLength const): Ditto.
(WebCore::TextCheckingParagraph::subrange const): Ditto.
(WebCore::TextCheckingParagraph::offsetTo const): Ditto.
(WebCore::TextCheckingParagraph::text const): Ditto. Also use StringView.
(WebCore::TextCheckingParagraph::checkingStart const): Ditto.
(WebCore::TextCheckingParagraph::checkingEnd const): Ditto. Also compute
this by adding start and length, and don't cache it.
(WebCore::TextCheckingParagraph::checkingLength const): Ditto.
(WebCore::TextCheckingParagraph::automaticReplacementStart const): Ditto.
(WebCore::TextCheckingParagraph::automaticReplacementLength const): Ditto.
(WebCore::TextCheckingHelper::findFirstMisspelling): Ditto.
(WebCore::TextCheckingHelper::findFirstMisspellingOrBadGrammar): Ditto.
(WebCore::TextCheckingHelper::findFirstGrammarDetail const): Ditto.
(WebCore::TextCheckingHelper::findFirstBadGrammar const): Ditto.
(WebCore::TextCheckingHelper::isUngrammatical const): Ditto.
(WebCore::TextCheckingHelper::guessesForMisspelledOrUngrammaticalRange const): Ditto.
(WebCore::TextCheckingHelper::markAllMisspellings): Ditto.
(WebCore::TextCheckingHelper::markAllBadGrammar): Ditto.
(WebCore::checkTextOfParagraph): Ditto.

  • editing/TextCheckingHelper.h: Updated for the above. Also got rid of

m_checkingEnd since it's sufficient to cache the start and the length.
Should come back later and use CharacterRange instead of 2x CharacterCount.

  • editing/TextIterator.cpp:

(WebCore::characterCount): Use uint64_t.
(WebCore::TextIterator::subrange): Deleted.
(WebCore::TextIterator::rangeFromLocationAndLength): Deleted.
(WebCore::clampedAdd): Added. Helps implement resolveCharacterRange in a way
that can work with any character count without concern about overflow.
(WebCore::resolveCharacterRange): Added. Replaces both subrange and
rangeFromLocationAndLength, using an algorithm close to the one from
the latter function, including workarounds it had. Replaced the boolean
"forSelectionPreservation" with the TextIteratorBehavior options, which seems
to make good sense at all the call sites.
(WebCore::resolveCharacterLocation): Added. Like resolveCharacterRange, but
instead of resolving CharacterRange to SimpleRange, resolves a character location
to a BoundaryPoint. Made a separate function for this in case we later refactor
for efficiency, but for now this simply calls resolveCharacterRange with a zero
length range.

  • editing/TextIterator.h: Moved CharacterCount and CharagerRange into a

separate header. Replaced TextIterator::rangeFromLocationAndLength and
TextIterator::subrange with resolveCharacterLocation and resolveCharacterRange.

  • editing/cocoa/DataDetection.mm:

(WebCore::detectItemAtPositionWithRange): Use CharacterRange,
resolveCharacterLocation/Range.
(WebCore::DataDetection::detectContentInRange): Ditto.

  • editing/cocoa/DictionaryLookup.mm:

(WebCore::DictionaryLookup::rangeForSelection): Ditto.
(WebCore::DictionaryLookup::rangeAtHitTestResult): Ditto.

  • editing/ios/DictationCommandIOS.cpp:

(WebCore::DictationCommandIOS::doApply): Ditto.

  • editing/mac/DictionaryLookupLegacy.mm:

(WebCore::DictionaryLookup::rangeAtHitTestResult): Ditto.

  • page/EventHandler.cpp:

(WebCore::textDistance): Ditto.

  • page/Page.cpp:

(WebCore::replaceRanges): Ditto.
(WebCore::Page::replaceRangesWithText): Ditto.

  • platform/text/TextChecking.h: Ditto.
  • testing/Internals.cpp:

(WebCore::Internals::rangeFromLocationAndLength): Ditto.
(WebCore::Internals::subrange): Ditto.
(WebCore::Internals::handleAcceptedCandidate): Ditto.

  • testing/Internals.h: Made location and length unsigned rather than signed.
  • testing/Internals.idl: Ditto.

Source/WebKit:

Reviewed by Antti Koivisto.

  • Shared/EditingRange.cpp:

(WebKit::EditingRange::toRange): Use CharacterRange,
resolveCharacterLocation/Range.

  • Shared/EditingRange.h: Added a FIXME about replacing with CharacterRange.
  • Shared/WebCoreArgumentCoders.cpp:

(IPC::ArgumentCoder<CharacterRange>::encode): Added.
(IPC::ArgumentCoder<CharacterRange>::decode): Added.
(IPC::ArgumentCoder<GrammarDetail>::encode): Updated to use CharacterRange.
(IPC::ArgumentCoder<GrammarDetail>::decode): Ditto.
(IPC::ArgumentCoder<TextCheckingResult>::encode): Ditto.
(IPC::ArgumentCoder<TextCheckingResult>::decode): Ditto.

  • Shared/WebCoreArgumentCoders.h: Added CharacterRange.
  • UIProcess/Cocoa/WebViewImpl.mm:

(WebKit::textCheckingResultFromNSTextCheckingResult): Use CharacterRange,
resolveCharacterLocation/Range.

  • UIProcess/WebGrammarDetail.cpp:

(WebKit::WebGrammarDetail::WebGrammarDetail): Ditto.

  • UIProcess/WebGrammarDetail.h:

(WebKit::WebGrammarDetail::location const): Ditto.
(WebKit::WebGrammarDetail::length const): Ditto.

  • UIProcess/gtk/TextCheckerGtk.cpp:

(WebKit::TextChecker::checkTextOfParagraph): Ditto.

  • UIProcess/ios/TextCheckerIOS.mm:

(WebKit::TextChecker::checkTextOfParagraph): Ditto.

  • UIProcess/mac/TextCheckerMac.mm:

(WebKit::TextChecker::checkTextOfParagraph): Ditto.
(WebKit::TextChecker::updateSpellingUIWithGrammarString): Ditto.

  • WebProcess/WebPage/Cocoa/TextCheckingControllerProxy.mm:

(WebKit::TextCheckingControllerProxy::rangeAndOffsetRelativeToSelection): Ditto.
(WebKit::TextCheckingControllerProxy::replaceRelativeToSelection): Ditto.
(WebKit::TextCheckingControllerProxy::annotatedSubstringBetweenPositions): Ditto.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::deleteSurrounding): Ditto.

  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::getPlatformEditorState const): Small tweak.
(WebKit::WebPage::updateSelectionWithDelta): Ditto.
(WebKit::WebPage::requestDocumentEditingContext): Ditto.

Source/WebKitLegacy/mac:

Reviewed by Antti Koivisto.

  • WebCoreSupport/WebEditorClient.mm:

(WebEditorClient::checkTextOfParagraph): Use CharacterRange,
resolveCharacterLocation/Range.
(WebEditorClient::checkGrammarOfString): Ditto.
(core): Ditto.
(WebEditorClient::updateSpellingUIWithGrammarString): Ditto.
(WebEditorClient::handleAcceptedCandidateWithSoftSpaces): Ditto.

  • WebView/WebFrame.mm:

(-[WebFrame _convertToDOMRange:rangeIsRelativeTo:]): Ditto.

  • WebView/WebView.mm:

(textCheckingResultFromNSTextCheckingResult): Ditto.

Source/WebKitLegacy/win:

Reviewed by Antti Koivisto.

  • WebCoreSupport/WebEditorClient.cpp:

(WebEditorClient::checkGrammarOfString): Use CharacterRange,
resolveCharacterLocation/Range.
(WebEditorClient::updateSpellingUIWithGrammarString): Ditto.

  • WebView.cpp:

(WebView::firstRectForCharacterRangeForTesting): Ditto.

LayoutTests:

Fix Mac-specific firstrectforcharacterrange-styled.html test
https://bugs.webkit.org/show_bug.cgi?id=205314
<rdar://problem/57990717>

Reviewed by Antti Koivisto.

  • accessibility/mac/textmarker-for-index-out-of-bounds-crash-expected.txt:
  • accessibility/mac/textmarker-for-index-out-of-bounds-crash.html:

Updated to expect textMarkerForIndex to clamp rather than returning something invalid.

  • editing/mac/input/firstrectforcharacterrange-plain-expected.txt:
  • editing/mac/input/firstrectforcharacterrange-plain.html:

Updated test output to include what is being tested, not just the test result.
Updated test results to expect clamping rather than an empty rectangle, for values
that are out of bounds. Also got rid of dumping of eidting callbacks since there is
no reason to include them in this test.

  • editing/mac/input/firstrectforcharacterrange-styled-expected.txt:
  • editing/mac/input/firstrectforcharacterrange-styled.html:

Ditto.

  • platform/mac-wk1/TestExpectations: Since our oldest supported release is Mojave, deleted

all rules with Sierra or HighSierra conditionals since those conditions are always false,
and removed any conditionals that said Sierra+, HighSierra+, or Mojave+ because those
conditions are always true. One test, firstrectforcharacterrange-styled.html, had results
checked in that were correct for Mojave but incorrect for Catalina. For that test, the
results are now correct for Catalina, so updated expectations for that.

  • platform/mac-wk2/TestExpectations: Ditto. Also some tests that claimed ImageOnlyFailure

are flaky and sometimes passing, so marked them for either Pass or ImageOnlyFailure.

  • platform/mac/TestExpectations: Ditto. Also some tests marked Failure were flaky and

sometimes passing, so marked them for either Pass or Failure.

  • platform/mac/editing/mac/input/firstrectforcharacterrange-styled-expected.txt: Removed.

This is already a Mac-specific test; it doesn't make sense to have an additional
Mac-specific overridden result since the base result is already Mac-specific.

  • platform/mac/fast/text/attributed-substring-from-range-001-expected.txt:
  • platform/mac/fast/text/attributed-substring-from-range-001.html:

Updated this test to expect the empty string, not "undefined" for an out of range,
since we now clamp instead of failing in such cases.

  • platform/mac/fast/text/attributed-substring-from-range-expected.txt:
  • platform/mac/fast/text/attributed-substring-from-range.html:

Ditto.

5:48 PM Changeset in webkit [259183] by dbates@webkit.org
  • 2 edits in trunk/Source/WebKit

Attempt to fix the Mac Catalyst build after r258989
<https://bugs.webkit.org/show_bug.cgi?id=199960>

Remove code that has since been moved to WebPage::platformNeedsLayoutForEditorState().

  • WebProcess/WebPage/ios/WebPageIOS.mm:

(WebKit::WebPage::getPlatformEditorState const):

10:34 AM Changeset in webkit [259182] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Remove addHTTPOriginIfNeeded calls
https://bugs.webkit.org/show_bug.cgi?id=209127

Patch by Rob Buis <rbuis@igalia.com> on 2020-03-29
Reviewed by Darin Adler.

Remove unused code.

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::loadURL):

10:29 AM Changeset in webkit [259181] by Alan Bujtas
  • 3 edits in trunk/Source/WebCore

[LFC] Replace parent() calls with containingBlock() where applicable.
https://bugs.webkit.org/show_bug.cgi?id=209717

Reviewed by Antti Koivisto.

While they both return the same layout box (parent), it's more correct to call continingBlock().

  • layout/blockformatting/BlockMarginCollapse.cpp:

(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginBeforeCollapsesWithParentMarginAfter const):
(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginBeforeCollapsesWithParentMarginBefore const):
(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginAfterCollapsesWithParentMarginBefore const):
(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginAfterCollapsesWithParentMarginAfter const):

  • layout/layouttree/LayoutBox.cpp:

(WebCore::Layout::Box::isOverflowVisible const):

  • layout/tableformatting/TableGrid.cpp:

(WebCore::Layout::TableGrid::appendCell):

7:50 AM Changeset in webkit [259180] by Alan Bujtas
  • 10 edits in trunk/Source/WebCore

[LFC] Layout::Box::parent() should return const ContainerBox&
https://bugs.webkit.org/show_bug.cgi?id=209400
<rdar://problem/60742432>

Reviewed by Antti Koivisto.

Layout tree is immutable during layout, so every box should be able to return a valid parent (except the ICB, but
class InitialContainingBlock deletes parent() function anyway).

  • layout/FormattingContextGeometry.cpp:

(WebCore::Layout::FormattingContext::Geometry::staticVerticalPositionForOutOfFlowPositioned const):
(WebCore::Layout::FormattingContext::Geometry::staticHorizontalPositionForOutOfFlowPositioned const):

  • layout/blockformatting/BlockFormattingContextQuirks.cpp:

(WebCore::Layout::BlockFormattingContext::Quirks::stretchedInFlowHeight):

  • layout/blockformatting/BlockMarginCollapse.cpp:

(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginBeforeCollapsesWithParentMarginAfter const):
(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginBeforeCollapsesWithParentMarginBefore const):
(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginAfterCollapsesWithParentMarginBefore const):
(WebCore::Layout::BlockFormattingContext::MarginCollapse::marginAfterCollapsesWithParentMarginAfter const):

  • layout/inlineformatting/InlineFormattingContext.cpp:

(WebCore::Layout::nextInlineLevelBoxToLayout):
(WebCore::Layout::InlineFormattingContext::constraintsForLine):

  • layout/layouttree/LayoutBox.cpp:

(WebCore::Layout::Box::containingBlock const):
(WebCore::Layout::Box::formattingContextRoot const):
(WebCore::Layout::Box::initialContainingBlock const):
(WebCore::Layout::Box::isOverflowVisible const):

  • layout/layouttree/LayoutBox.h:

(WebCore::Layout::Box::parent const):

  • layout/layouttree/LayoutIterator.h:

(WebCore::Layout::LayoutBoxTraversal::nextAncestorSibling):
(WebCore::Layout::LayoutBoxTraversal::next):
(WebCore::Layout::Traversal::firstWithin):
(WebCore::Layout::Traversal::next):
(WebCore::Layout::LayoutIterator<T>::traverseNext):

  • layout/tableformatting/TableGrid.cpp:

(WebCore::Layout::TableGrid::appendCell):

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

Windows build fix: Web Inspector: support editing cookie key/values from inspector
https://bugs.webkit.org/show_bug.cgi?id=31157#c15
<rdar://problem/19281523>

  • platform/network/cf/NetworkStorageSessionCFNetWin.cpp:

(WebCore::NetworkStorageSession::setCookie):

  • Add placeholder to fix build after r259173.
2:08 AM Changeset in webkit [259178] by ddkilzer@apple.com
  • 1 edit in trunk/Source/WebKit/ChangeLog

Add missing ChangeLog entry for r259177.

2:06 AM Changeset in webkit [259177] by ddkilzer@apple.com
  • 1 edit in trunk/Source/WebKit/UIProcess/Cocoa/NavigationState.mm

Build fix for: [iOS] Delay process suspension for a while after loading an app link
https://bugs.webkit.org/show_bug.cgi?id=209686#c12
<rdar://problem/60888891>

  • UIProcess/Cocoa/NavigationState.mm:

(WebKit::tryInterceptNavigation):

  • Restrict call to WebPageProxy::willOpenAppLink() to PLATFORM(IOS_FAMILY) to fix the build.
1:52 AM Changeset in webkit [259176] by ddkilzer@apple.com
  • 3 edits in trunk/Source/WebKit

REGRESSION (r257867): [GPUP] Use-after-move in RemoteCDMInstance::createSession()
<https://webkit.org/b/209712>
<rdar://problem/61018795>

Reviewed by Darin Adler.

  • WebProcess/GPU/media/RemoteCDMInstance.cpp:

(WebKit::RemoteCDMInstance::createSession): Fix use-after-move
by using RemoteCDMInstanceSession::identifier().

  • WebProcess/GPU/media/RemoteCDMInstanceSession.h:

(RemoteCDMInstanceSession::identifier): Add getter.

Mar 28, 2020:

11:13 PM Changeset in webkit [259175] by ysuzuki@apple.com
  • 32 edits in trunk/Source/JavaScriptCore

[JSC] Use CacheableIdentifier for all ById case
https://bugs.webkit.org/show_bug.cgi?id=209698

Reviewed by Saam Barati.

StructureStubInfo & AccessCase holds CacheableIdentifier to keep cell identifiers alive.
We are assuming that operationGetById...'s identifier is always owned by CodeBlock, and
we call CacheableIdentifier::createFromIdentifierOwnedByCodeBlock for UniquedStringImpl*.

This is wrong since GetById IC can be generated with identifier which is not owned by CodeBlock.
Let's consider the following case,

  1. op_get_by_val gets GetById IC. CacheableIdentifier is kept by StructureStubInfo/AccessCase correctly.
  2. This CodeBlock gets DFG.
  3. DFG understand op_get_by_val and emit GetById DFG node since it only has one identifier.
  4. Then, DFG can generate GetById DFG code which generates GetById IC
  5. (4)'s GetById IC gets executed. But this IC considers that identifier is owned by CodeBlock since this is ById IC.
  6. New DFG CodeBlock starts compilation. And it gets feedback from (2)'s get_by_val's StructureStubInfo, so it emits GetById with non-cell CacheableIdentifier! So it does not retain the cell. It just registers desired identifier.
  7. While compiling (6) (after parsing bytecode), (2)'s CodeBlock's DFG code & IC gets jettisoned. And then, identifier used in (6) gets destroyed too.
  8. (6)'s CodeBlock finalizes its compilation, registering desired identifiers to the actual CodeBlock. And it found the identifier gets destroyed.

In this patch,

  1. CacheableIdentifier::createFromIdentifierOwnedByCodeBlock is called only when the creator knowns that this is owned by the CodeBlock. Typically, this is when the code generator generates IC.
  2. operationGetById... functions get CacheableIdentifier instead of UniquedStringImpl*. So it propagates whether the given CacheableIdentifier is created from CodeBlock's identifier or cells.
  3. AccessCase holds this propagated CacheableIdentifiers. If CacheableIdentifiers is created from a cell in some tier's IC, then it continues to be represented as a cell-origin CacheableIdentifiers regardless of whether the current IC is GetById / GetByVal. Then GC marks it correctly.
  4. This patch does the same thing to all the ICs.
  5. This patch extends StructureStubInfo / AccessCase to pave the way to use them in PutByVal / InByVal by introducing CacheableIdentifier for Put and In.
  • bytecode/AccessCase.cpp:

(JSC::AccessCase::fromStructureStubInfo):

  • bytecode/GetByStatus.cpp:

(JSC::GetByStatus::computeForStubInfoWithoutExitSiteFeedback):

  • bytecode/StructureStubInfo.cpp:

(JSC::StructureStubInfo::initGetByIdSelf):
(JSC::StructureStubInfo::initPutByIdReplace):
(JSC::StructureStubInfo::initInByIdSelf):
(JSC::StructureStubInfo::visitAggregate):
(JSC::StructureStubInfo::setCacheType):

  • bytecode/StructureStubInfo.h:

(JSC::StructureStubInfo::identifier):
(JSC::StructureStubInfo::considerCachingBy):
(JSC::StructureStubInfo::getByIdSelfIdentifier): Deleted.
(JSC::StructureStubInfo::considerCachingById): Deleted.
(JSC::StructureStubInfo::considerCachingByVal): Deleted.

  • dfg/DFGAbstractInterpreterInlines.h:

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

  • dfg/DFGArrayMode.cpp:

(JSC::DFG::canBecomeGetArrayLength):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::handleIntrinsicCall):
(JSC::DFG::ByteCodeParser::handleGetById):
(JSC::DFG::ByteCodeParser::emitPutById):
(JSC::DFG::ByteCodeParser::handlePutById):
(JSC::DFG::ByteCodeParser::parseGetById):
(JSC::DFG::ByteCodeParser::parseBlock):
(JSC::DFG::ByteCodeParser::handlePutByVal):

  • dfg/DFGConstantFoldingPhase.cpp:

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

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):
(JSC::DFG::FixupPhase::addStringReplacePrimordialChecks):

  • dfg/DFGGraph.cpp:

(JSC::DFG::Graph::dump):

  • dfg/DFGNode.h:

(JSC::DFG::Node::convertToInById):
(JSC::DFG::Node::hasCacheableIdentifier):
(JSC::DFG::Node::cacheableIdentifier):
(JSC::DFG::Node::hasIdentifier):
(JSC::DFG::Node::OpInfoWrapper::OpInfoWrapper):
(JSC::DFG::Node::OpInfoWrapper::operator=):

  • dfg/DFGOpInfo.h:

(JSC::DFG::OpInfo::OpInfo):

  • dfg/DFGOperations.cpp:
  • dfg/DFGOperations.h:
  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileGetById):
(JSC::DFG::SpeculativeJIT::compileGetByIdFlush):
(JSC::DFG::SpeculativeJIT::compileInById):
(JSC::DFG::SpeculativeJIT::compilePutByIdFlush):
(JSC::DFG::SpeculativeJIT::compilePutById):
(JSC::DFG::SpeculativeJIT::compilePutByIdDirect):
(JSC::DFG::SpeculativeJIT::compilePutByIdWithThis):
(JSC::DFG::SpeculativeJIT::cachedPutById):

  • dfg/DFGSpeculativeJIT.h:
  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::cachedGetById):
(JSC::DFG::SpeculativeJIT::cachedGetByIdWithThis):
(JSC::DFG::SpeculativeJIT::compile):
(JSC::DFG::SpeculativeJIT::compileDeleteById):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::cachedGetById):
(JSC::DFG::SpeculativeJIT::cachedGetByIdWithThis):
(JSC::DFG::SpeculativeJIT::compile):
(JSC::DFG::SpeculativeJIT::compileDeleteById):

  • ftl/FTLLowerDFGToB3.cpp:

(JSC::FTL::DFG::LowerDFGToB3::compileGetById):
(JSC::FTL::DFG::LowerDFGToB3::compileGetByIdWithThis):
(JSC::FTL::DFG::LowerDFGToB3::compilePutByIdWithThis):
(JSC::FTL::DFG::LowerDFGToB3::compilePutById):
(JSC::FTL::DFG::LowerDFGToB3::compileDelBy):
(JSC::FTL::DFG::LowerDFGToB3::compileDeleteById):
(JSC::FTL::DFG::LowerDFGToB3::compileInById):
(JSC::FTL::DFG::LowerDFGToB3::getById):
(JSC::FTL::DFG::LowerDFGToB3::getByIdWithThis):

  • jit/JIT.h:
  • jit/JITInlineCacheGenerator.cpp:

(JSC::JITGetByIdGenerator::JITGetByIdGenerator):
(JSC::JITGetByIdWithThisGenerator::JITGetByIdWithThisGenerator):
(JSC::JITPutByIdGenerator::JITPutByIdGenerator):
(JSC::JITPutByIdGenerator::slowPathFunction):
(JSC::JITDelByIdGenerator::JITDelByIdGenerator):
(JSC::JITInByIdGenerator::JITInByIdGenerator):

  • jit/JITInlineCacheGenerator.h:
  • jit/JITOperations.cpp:
  • jit/JITOperations.h:
  • jit/JITPropertyAccess.cpp:

(JSC::JIT::emitPutByValWithCachedId):
(JSC::JIT::emit_op_del_by_id):
(JSC::JIT::emitSlow_op_del_by_id):
(JSC::JIT::emit_op_try_get_by_id):
(JSC::JIT::emitSlow_op_try_get_by_id):
(JSC::JIT::emit_op_get_by_id_direct):
(JSC::JIT::emitSlow_op_get_by_id_direct):
(JSC::JIT::emit_op_get_by_id):
(JSC::JIT::emit_op_get_by_id_with_this):
(JSC::JIT::emitSlow_op_get_by_id):
(JSC::JIT::emitSlow_op_get_by_id_with_this):
(JSC::JIT::emit_op_put_by_id):
(JSC::JIT::emitSlow_op_put_by_id):
(JSC::JIT::emit_op_in_by_id):
(JSC::JIT::emitSlow_op_in_by_id):
(JSC::JIT::emitByValIdentifierCheck):
(JSC::JIT::privateCompilePutByValWithCachedId):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::emit_op_del_by_id):
(JSC::JIT::emitPutByValWithCachedId):
(JSC::JIT::emit_op_try_get_by_id):
(JSC::JIT::emitSlow_op_try_get_by_id):
(JSC::JIT::emit_op_get_by_id_direct):
(JSC::JIT::emitSlow_op_get_by_id_direct):
(JSC::JIT::emit_op_get_by_id):
(JSC::JIT::emitSlow_op_get_by_id):
(JSC::JIT::emit_op_get_by_id_with_this):
(JSC::JIT::emitSlow_op_get_by_id_with_this):
(JSC::JIT::emit_op_put_by_id):
(JSC::JIT::emitSlow_op_put_by_id):
(JSC::JIT::emit_op_in_by_id):
(JSC::JIT::emitSlow_op_in_by_id):

  • jit/Repatch.cpp:

(JSC::appropriateGenericPutByIdFunction):
(JSC::appropriateOptimizingPutByIdFunction):
(JSC::tryCachePutByID):
(JSC::repatchPutByID):
(JSC::tryCacheInByID):
(JSC::repatchInByID):
(JSC::resetPutByID):

  • jit/Repatch.h:
  • runtime/CacheableIdentifier.cpp:

(JSC::CacheableIdentifier::dump const):

  • runtime/CacheableIdentifier.h:

(JSC::CacheableIdentifier::createFromRawBits):
(JSC::CacheableIdentifier::rawBits const):
(JSC::CacheableIdentifier::CacheableIdentifier):

  • runtime/CacheableIdentifierInlines.h:

(JSC::CacheableIdentifier::createFromIdentifierOwnedByCodeBlock):
(JSC::CacheableIdentifier::createFromImmortalIdentifier):
(JSC::CacheableIdentifier::CacheableIdentifier):

9:43 PM Changeset in webkit [259174] by commit-queue@webkit.org
  • 6 edits in trunk/LayoutTests

Regression: fast/hidpi/image-srcset-svg-canvas-2x.html is failing consistently on iOS EWS
https://bugs.webkit.org/show_bug.cgi?id=207038

Patch by Said Abou-Hallawa <sabouhallawa@apple.com> on 2020-03-28
Reviewed by Darin Adler.

Disable the canvas scaling anti-aliasing by applying the CSS property
"image-rendering: pixelated;" to the <img> and the <canvas> elements.

Avoid the SVG drawing anti-aliasing entirely by replacing the <cricle>
element by a <rect> element.

  • fast/hidpi/resources/relativesrcset.svg:
  • fast/hidpi/resources/srcset.svg:
  • fast/hidpi/resources/srcset_100px.svg:
  • fast/hidpi/resources/svg_tests.css:

(.test img, .test canvas):

  • platform/mac/TestExpectations:
8:07 PM Changeset in webkit [259173] by Devin Rousso
  • 22 edits
    4 adds in trunk

Web Inspector: support editing cookie key/values from inspector
https://bugs.webkit.org/show_bug.cgi?id=31157
<rdar://problem/19281523>

Reviewed by Timothy Hatcher.

Source/JavaScriptCore:

  • inspector/protocol/Page.json:

Add a session parameter to Page.Cookie type and a new Page.setCookie command.
Remove the size parameter from Page.Cookie as this can be calculated in the frontend.

Source/WebCore:

Test: http/tests/inspector/page/setCookie.html

  • inspector/agents/InspectorPageAgent.h:
  • inspector/agents/InspectorPageAgent.cpp:

(WebCore::buildObjectForCookie):
(WebCore::parseCookieObject): Added.
(WebCore::InspectorPageAgent::setCookie): Added.

  • loader/CookieJar.h:
  • loader/CookieJar.cpp:

(WebCore::CookieJar::setRawCookie): Added.

Source/WebInspectorUI:

  • UserInterface/Models/Cookie.js:

(WI.Cookie):
(WI.Cookie.fromPayload):
(WI.Cookie.parseSetCookieResponseHeader):
(WI.Cookie.prototype.get session): Added.
(WI.Cookie.prototype.expirationDate):
(WI.Cookie.prototype.equals): Added.
(WI.Cookie.prototype.toProtocol): Added.
Add session value in addition to the existing expires value. Create helper methods for
comparing WI.Cookie objects and for using the WI.Cookie as a Page.Cookie type when
invoking protocol commands (right now just Page.setCookie).

  • UserInterface/Views/CookieStorageContentView.js:

(WI.CookieStorageContentView):
(WI.CookieStorageContentView.prototype.get navigationItems):
(WI.CookieStorageContentView.prototype.tableCellContextMenuClicked):
(WI.CookieStorageContentView.prototype.willDismissPopover): Added.
(WI.CookieStorageContentView.prototype.async _willDismissCookiePopover): Added.
(WI.CookieStorageContentView.prototype._handleSetCookieButtonClick): Added.
(WI.CookieStorageContentView.prototype._reloadCookies):
(WI.CookieStorageContentView.prototype._formatCookiePropertyForColumn):
Add a + navigation item that shows a popover for creating a new cookie. When contextmenu
clicking on a table row, add an "Edit" item that shows a popover for creating a new cookie
with the values from the existing cookie, which will "replace" (delete and set) the existing
cookie upon being dismissed.

  • UserInterface/Views/ResourceCookiesContentView.js:

(WI.ResourceCookiesContentView.prototype.tablePopulateCell):
If only use the expires value if session is not set.

  • UserInterface/Views/CookiePopover.js: Added.

(WI.CookiePopover):
(WI.CookiePopover.prototype.get serializedData):
(WI.CookiePopover.prototype.show.createRow):
(WI.CookiePopover.prototype.show.createInputRow):
(WI.CookiePopover.prototype.show):
(WI.CookiePopover.prototype._presentOverTargetElement):
(WI.CookiePopover.prototype._defaultExpires):
(WI.CookiePopover.prototype._parseExpires):
(WI.CookiePopover.prototype._handleInputKeyDown):

  • UserInterface/Views/CookiePopover.css: Added.

(.popover .cookie-popover-content):
(.popover .cookie-popover-content > table):
(.popover .cookie-popover-content > table > tr > th):
(.popover .cookie-popover-content > table > tr > td):
(.popover .cookie-popover-content > table > tr > td > input:matches([type="text"], [type="datetime-local"])):
(.popover .cookie-popover-content > table > tr > td > input:matches([type="text"], [type="datetime-local"]).invalid):
(@media (prefers-color-scheme: dark) .popover .cookie-popover-content > table > tr > th):
Show an <input> (or <select>) for each configuration option when creating a cookie.
Hide the <input> for expires if the <input type="checkbox"> for session is checked.
Indicate when the value in the <input> for expires is not a valid date.

  • UserInterface/Main.html:
  • Localizations/en.lproj/localizedStrings.js:

Source/WebKit:

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

(WebKit::WebCookieJar::setRawCookie):

  • NetworkProcess/NetworkConnectionToWebProcess.messages.in:
  • NetworkProcess/NetworkConnectionToWebProcess.h:
  • NetworkProcess/NetworkConnectionToWebProcess.cpp:

(WebKit::NetworkConnectionToWebProcess::setRawCookie): Added.

LayoutTests:

  • http/tests/inspector/page/setCookie.html: Added.
  • http/tests/inspector/page/setCookie-expected.txt: Added.
  • inspector/unit-tests/number-utilities.html:
  • inspector/unit-tests/number-utilities-expected.txt:

Drive-by: add tests for Number.prototype.maxDecimals.

8:02 PM Changeset in webkit [259172] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebKit

REGRESSION (r258201): Use-after-move in UserMediaCaptureManager::Source::didFail()
<https://webkit.org/b/209711>
<rdar://problem/61018569>

Reviewed by Darin Adler.

  • WebProcess/cocoa/UserMediaCaptureManager.cpp:

(WebKit::UserMediaCaptureManager::Source::didFail):

  • Use m_errorMessage to fix the use-after-move.
7:58 PM Changeset in webkit [259171] by commit-queue@webkit.org
  • 9 edits in trunk

REGRESSION(r257963) UI process crashes when setting navigation delegate inside navigation delegate callbacks
https://bugs.webkit.org/show_bug.cgi?id=209705
<rdar://problem/60814765>

Patch by Alex Christensen <achristensen@webkit.org> on 2020-03-28
Reviewed by Darin Adler.

Source/WebKit:

I introduced a pattern of making multiple delegate calls sequentially. This is bad because the delegate can change.
We need to go back to the WebPageProxy and get the navigation client again between calls.
I manually verified this fixes the crash in the radar.
Covered by modifying an existing API test to modify the navigation delegate in a callback.

  • UIProcess/API/APINavigationClient.h:

(API::NavigationClient::didStartProvisionalNavigation):
(API::NavigationClient::didStartProvisionalLoadForFrame):
(API::NavigationClient::didFailProvisionalNavigationWithError):
(API::NavigationClient::didFailProvisionalLoadWithErrorForFrame):
(API::NavigationClient::didCommitNavigation):
(API::NavigationClient::didCommitLoadForFrame):
(API::NavigationClient::didFinishNavigation):
(API::NavigationClient::didFinishLoadForFrame):
(API::NavigationClient::didFailNavigationWithError):
(API::NavigationClient::didFailLoadWithErrorForFrame):

  • UIProcess/API/C/WKPage.cpp:

(WKPageSetPageNavigationClient):

  • UIProcess/API/glib/WebKitNavigationClient.cpp:
  • UIProcess/Cocoa/NavigationState.h:
  • UIProcess/Cocoa/NavigationState.mm:

(WebKit::NavigationState::~NavigationState):
(WebKit::NavigationState::NavigationClient::didStartProvisionalNavigation):
(WebKit::NavigationState::NavigationClient::didStartProvisionalLoadForFrame):
(WebKit::NavigationState::NavigationClient::didFailProvisionalNavigationWithError):
(WebKit::NavigationState::NavigationClient::didFailProvisionalLoadWithErrorForFrame):
(WebKit::NavigationState::NavigationClient::didCommitNavigation):
(WebKit::NavigationState::NavigationClient::didCommitLoadForFrame):
(WebKit::NavigationState::NavigationClient::didFinishNavigation):
(WebKit::NavigationState::NavigationClient::didFinishLoadForFrame):
(WebKit::NavigationState::NavigationClient::didFailNavigationWithError):
(WebKit::NavigationState::NavigationClient::didFailLoadWithErrorForFrame):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::didStartProvisionalLoadForFrameShared):
(WebKit::WebPageProxy::didFailProvisionalLoadForFrameShared):
(WebKit::WebPageProxy::didCommitLoadForFrame):
(WebKit::WebPageProxy::didFinishLoadForFrame):
(WebKit::WebPageProxy::didFailLoadForFrame):

Tools:

  • TestWebKitAPI/Tests/WebKitCocoa/AsyncPolicyForNavigationResponse.mm:

(-[TestAsyncNavigationDelegate webView:didFailNavigation:withError:]):
(-[TestAsyncNavigationDelegate webView:didFailProvisionalNavigation:withError:]):

7:56 PM Changeset in webkit [259170] by Devin Rousso
  • 11 edits
    6 adds in trunk

Web Inspector: CSS: create visual editor for box-shadow
https://bugs.webkit.org/show_bug.cgi?id=208380

Reviewed by Timothy Hatcher.

Source/WebInspectorUI:

Recognize box-shadow CSS properties in the Styles sidebar, parse the comma-separated list
value for individual box shadows, and create a WI.InlineSwatch for each. When clicked,
show a WI.Popover with a WI.BoxShadowEditor, which contains a table of editors:

Offset X | <input type="text"> | [ 2D (X & Y) ]
Offset Y | <input type="text"> | [ Slider ]

Inset | <input type="checkbox"> |

Blur | <input type="text"> | <input type="range">

Spread | <input type="text"> | <input type="range">

[ ]
[ ]
[ full color picker ]
[ ]
[ ]

  • UserInterface/Models/BoxShadow.js: Added.

(WI.BoxShadow):
(WI.BoxShadow.fromString):
(WI.BoxShadow.parseNumberComponent):
(WI.BoxShadow.prototype.get offsetX):
(WI.BoxShadow.prototype.get offsetY):
(WI.BoxShadow.prototype.get blurRadius):
(WI.BoxShadow.prototype.get spreadRadius):
(WI.BoxShadow.prototype.get inset):
(WI.BoxShadow.prototype.get color):
(WI.BoxShadow.prototype.copy):
(WI.BoxShadow.prototype.toString):
(WI.BoxShadow.prototype.toString.stringifyNumberComponent):

  • UserInterface/Models/CSSCompletions.js:

Add a Set of allowed CSS length units.

  • UserInterface/Views/BoxShadowEditor.js: Added.

(WI.BoxShadowEditor):
(WI.BoxShadowEditor.createInputRow):
(WI.BoxShadowEditor.createSlider):
(WI.BoxShadowEditor.prototype.get element):
(WI.BoxShadowEditor.prototype.get boxShadow):
(WI.BoxShadowEditor.prototype.set boxShadow):
(WI.BoxShadowEditor.prototype.handleEvent):
(WI.BoxShadowEditor.prototype._updateBoxShadow):
(WI.BoxShadowEditor.prototype._updateBoxShadowOffsetFromSliderMouseEvent):
(WI.BoxShadowEditor.prototype._determineShiftForEvent):
(WI.BoxShadowEditor.prototype._handleOffsetSliderSVGKeyDown):
(WI.BoxShadowEditor.prototype._handleOffsetSliderSVGMouseDown):
(WI.BoxShadowEditor.prototype._handleWindowMouseMove):
(WI.BoxShadowEditor.prototype._handleWindowMouseUp):
(WI.BoxShadowEditor.prototype._handleOffsetXInputInput):
(WI.BoxShadowEditor.prototype._handleOffsetXInputKeyDown):
(WI.BoxShadowEditor.prototype._handleOffsetYInputInput):
(WI.BoxShadowEditor.prototype._handleOffsetYInputKeyDown):
(WI.BoxShadowEditor.prototype._handleBlurRadiusInputInput):
(WI.BoxShadowEditor.prototype._handleBlurRadiusInputKeyDown):
(WI.BoxShadowEditor.prototype._handleBlurRadiusSliderInput):
(WI.BoxShadowEditor.prototype._handleSpreadRadiusInputInput):
(WI.BoxShadowEditor.prototype._handleSpreadRadiusInputKeyDown):
(WI.BoxShadowEditor.prototype._handleSpreadRadiusSliderInput):
(WI.BoxShadowEditor.prototype._handleInsetCheckboxChange):
(WI.BoxShadowEditor.prototype._handleColorChanged):

  • UserInterface/Views/BoxShadowEditor.css: Added.

(.box-shadow-editor):
(.box-shadow-editor > table):
(.box-shadow-editor > table > tr > th):
(.box-shadow-editor > table > tr > td):
(.box-shadow-editor > table > tr > td > input[type="text"]):
(.box-shadow-editor > table > tr > td > input[type="range"]):
(.box-shadow-editor > table > tr > td > svg):
(.box-shadow-editor > table > tr > td > svg line.axis):
(.box-shadow-editor > table > tr > td > svg line:not(.axis)):
(.box-shadow-editor > table > tr > td > svg circle):
(@media (prefers-color-scheme: dark) .box-shadow-editor > table > tr > th):

  • UserInterface/Views/InlineSwatch.js:

(WI.InlineSwatch):
(WI.InlineSwatch.prototype._fallbackValue):
(WI.InlineSwatch.prototype._valueEditorValueDidChange):

  • UserInterface/Views/InlineSwatch.css:

(.inline-swatch):
(.inline-swatch:not(.box-shadow), .inline-swatch.box-shadow:matches(:hover, :active)): Added.
(.inline-swatch:matches(.bezier, .box-shadow, .spring, .variable)): Added.
(.inline-swatch:not(.read-only):matches(.bezier, .box-shadow, .spring, .variable):hover): Added.
(.inline-swatch:not(.read-only):matches(.bezier, .box-shadow, .spring, .variable):active): Added.
(.inline-swatch:matches(.bezier, .box-shadow, .spring, .variable) > span): Added.
(@media (prefers-color-scheme: dark) .inline-swatch.box-shadow > svg): Added.
(.inline-swatch:not(.read-only):matches(.bezier, .spring, .variable):hover): Deleted.
(.inline-swatch:not(.read-only):matches(.bezier, .spring, .variable):active): Deleted.
(.inline-swatch:matches(.bezier, .spring, .variable) > span): Deleted.

  • UserInterface/Views/SpreadsheetStyleProperty.js:

(WI.SpreadsheetStyleProperty.prototype._replaceSpecialTokens):
(WI.SpreadsheetStyleProperty.prototype._addGradientTokens):
(WI.SpreadsheetStyleProperty.prototype._addColorTokens):
(WI.SpreadsheetStyleProperty.prototype._addTimingFunctionTokens):
(WI.SpreadsheetStyleProperty.prototype._addBoxShadowTokens):
(WI.SpreadsheetStyleProperty.prototype._resolveVariables):

  • UserInterface/Views/Variables.css:

(:root):

  • UserInterface/Views/ColorPicker.css:

(.color-picker):
Move --color-picker-width to :root so that WI.BoxShadowEditor can use it.

  • UserInterface/Main.html:
  • UserInterface/Test.html:
  • Localizations/en.lproj/localizedStrings.js:
  • UserInterface/Images/BoxShadow.svg: Added.

LayoutTests:

  • inspector/model/boxShadow.html: Added.
  • inspector/model/boxShadow-expected.txt: Added.
7:54 PM Changeset in webkit [259169] by Devin Rousso
  • 3 edits in trunk/Source/WebInspectorUI

Web Inspector: REGRESSION(r257759): Network: graph in Timing pane of selected resource is missing bars
https://bugs.webkit.org/show_bug.cgi?id=209525

Reviewed by Timothy Hatcher.

WI.ResourceTimingBreakdownView uses the same CSS classes and DOM structure as the parent
WI.NetworkTableContentView, relying on the styles defined there for it's own styles.

  • UserInterface/Views/NetworkTableContentView.css:

(.network-table > .table li:not(.filler, .selected) .cell:not(.current-session)): Added.
(.network-table .error): Added.
(.network-table .waterfall .block): Added.
(body[dir=ltr] .network-table .waterfall .block): Added.
(body[dir=rtl] .network-table .waterfall .block): Added.
(.network-table .waterfall .block.request,): Added.
(.network-table .waterfall .block.mouse-tracking): Added.
(.network-table .waterfall .block.filler): Added.
(.network-table .waterfall .block.redirect): Added.
(.network-table .waterfall .block.queue): Added.
(.network-table .waterfall .block.dns): Added.
(.network-table .waterfall .block.connect): Added.
(.network-table .waterfall .block.secure): Added.
(.network-table .waterfall .block.request): Added.
(.network-table .waterfall .block.response): Added.
(.network-table > .table li:not(.selected) .cell:not(.current-session)): Deleted.
(.network-table > .table .error): Deleted.
(.network-table > .table .waterfall .block): Deleted.
(body[dir=ltr] .network-table > .table .waterfall .block): Deleted.
(body[dir=rtl] .network-table > .table .waterfall .block): Deleted.
(.network-table > .table .waterfall .block.request,): Deleted.
(.network-table > .table .waterfall .block.mouse-tracking): Deleted.
(.network-table > .table .waterfall .block.filler): Deleted.
(.network-table > .table .waterfall .block.redirect): Deleted.
(.network-table > .table .waterfall .block.queue): Deleted.
(.network-table > .table .waterfall .block.dns): Deleted.
(.network-table > .table .waterfall .block.connect): Deleted.
(.network-table > .table .waterfall .block.secure): Deleted.
(.network-table > .table .waterfall .block.request): Deleted.
(.network-table > .table .waterfall .block.response): Deleted.
Drive-by: the WI.Table filler row should not be dimmed.

  • UserInterface/Views/ResourceTimingBreakdownView.css:

(.resource-timing-breakdown .waterfall .block):

7:52 PM Changeset in webkit [259168] by Nikita Vasilyev
  • 2 edits in trunk/Source/WebInspectorUI

Web Inspector: Network: pressing RightArrow or LeftArrow unexpectedly changes panels
https://bugs.webkit.org/show_bug.cgi?id=209625
<rdar://problem/60940609>

Reviewed by Timothy Hatcher.

  • UserInterface/Views/NavigationBar.js:

(WI.NavigationBar.prototype._keyDown):

7:50 PM Changeset in webkit [259167] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebKit

Use-after-move in NetworkProcess::addServiceWorkerSession()
<https://webkit.org/b/209710>
<rdar://problem/61017857>

Reviewed by Darin Adler.

  • NetworkProcess/NetworkProcess.cpp:

(WebKit::NetworkProcess::addServiceWorkerSession):

  • Use addResult.iterator->value.databasePath instead of the serviceWorkerRegistrationDirectory parameter to fix the use-after-move.
7:05 PM Changeset in webkit [259166] by Chris Dumez
  • 2 edits in trunk/Source/WebKit

[iOS] Delay process suspension for a while after loading an app link
https://bugs.webkit.org/show_bug.cgi?id=209686
<rdar://problem/60888891>

Reviewed by Darin Adler.

Client apps that rely on WebKit to open app links cannot call the [WKWebView _willOpenAppLink] SPI
that was added in r259146. Instead, we need to call WebPageProxy::willOpenAppLink() in
tryInterceptNavigation() when WebKit opens the AppLink itself.

  • UIProcess/Cocoa/NavigationState.mm:

(WebKit::tryInterceptNavigation):

5:59 PM Changeset in webkit [259165] by Simon Fraser
  • 13 edits in trunk/Source

Add a ScrollLatching log channel and improve some logging functionality
https://bugs.webkit.org/show_bug.cgi?id=209706

Reviewed by Darin Adler, David Kilzer.

Source/WebCore:

Add a "ScrollLatching" log channel. Make ScrollLatchingState and Node loggable.
Make a convenience template class ValueOrNull<> which makes logging a pointer type convenient.

Also change Page::pushNewLatchingState() to take the new latching state.

  • dom/Node.cpp:

(WebCore::operator<<):

  • dom/Node.h:
  • page/EventHandler.cpp:

(WebCore::EventHandler::clearLatchedState):

  • page/Page.cpp:

(WebCore::Page::pushNewLatchingState):
(WebCore::Page::popLatchingState):
(WebCore::Page::removeLatchingStateForTarget):

  • page/Page.h:

(WebCore::Page::latchingStateStack const):

  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::clearOrScheduleClearingLatchedStateIfNeeded):
(WebCore::EventHandler::platformPrepareForWheelEvents):
(WebCore::frameViewForLatchingState):
(WebCore::EventHandler::platformCompleteWheelEvent):
(WebCore::EventHandler::platformCompletePlatformWidgetWheelEvent):

  • page/scrolling/ScrollLatchingState.cpp:

(WebCore::operator<<):

  • page/scrolling/ScrollLatchingState.h:

(WebCore::ScrollLatchingState::wheelEventElement const):
(WebCore::ScrollLatchingState::frame const):
(WebCore::ScrollLatchingState::previousWheelScrolledElement const):
(WebCore::ScrollLatchingState::scrollableContainer const):

  • page/scrolling/ScrollingTree.cpp:

(WebCore::ScrollingTree::setOrClearLatchedNode):
(WebCore::ScrollingTree::handleWheelEvent):

  • platform/Logging.h:

Source/WTF:

  • wtf/text/TextStream.h:

(WTF::ValueOrNull::ValueOrNull):
(WTF::operator<<):

3:13 PM Changeset in webkit [259164] by Fujii Hironori
  • 2 edits in trunk/Source/WebCore

[WinCairo] Unreviewed build fix for WinCairo Debug builds
https://bugs.webkit.org/show_bug.cgi?id=209098

It's broken since r259139 (Bug 209098).

..\..\Source\WebCore\platform\graphics\texmap\TextureMapperGC3DPlatformLayer.cpp(101): error C2065: 'm_state': undeclared identifier

  • platform/graphics/texmap/TextureMapperGC3DPlatformLayer.cpp:

(WebCore::TextureMapperGC3DPlatformLayer::paintToTextureMapper): Replaced 'm_state' with 'm_context.m_state'.

11:31 AM Changeset in webkit [259163] by Wenson Hsieh
  • 2 edits in trunk/Source/WebCore

Unreviewed, fix the watchOS build after r259151

The declaration of Pasteboard(const String&) in Pasteboard.h is present for all PLATFORM(IOS_FAMILY), but the
implementation is guarded by ENABLE(DRAG_SUPPORT). r259151 added a codepath that calls this constructor in
IOS_FAMILY code, causing a linker error. Fix this by moving the implementation out of the ENABLE(DRAG_SUPPORT)
guard, to match the declaration in the header.

  • platform/ios/PasteboardIOS.mm:
10:22 AM Changeset in webkit [259162] by Simon Fraser
  • 3 edits
    2 adds in trunk

Sideways jiggles when scrolling the shelves on beta.music.apple.com
https://bugs.webkit.org/show_bug.cgi?id=209696
<rdar://problem/55092050>

Reviewed by Anders Carlsson.
Source/WebCore:

If a scroll snapping animation was running, EventHandler::platformNotifyIfEndGesture() would
reset the latching state. This was added in r190423, but not longer seems necessary
according to manual testing, and the passing layout test.

platformNotifyIfEndGesture() would be called at the end of the fingers-down scroll but
before momentum, and resetting latching here would cause the momentum events to go to
a new target, triggering incorrect scrolls.

Test: tiled-drawing/scrolling/scroll-snap/scroll-snap-phase-change-relatching.html

  • page/mac/EventHandlerMac.mm:

(WebCore::EventHandler::platformNotifyIfEndGesture):

LayoutTests:

Test that sends scroll and momentum events to a vertically-scrolling overflow with snap-points,
which checked that the document didn't scroll.

  • tiled-drawing/scrolling/scroll-snap/scroll-snap-phase-change-relatching-expected.txt: Added.
  • tiled-drawing/scrolling/scroll-snap/scroll-snap-phase-change-relatching.html: Added.
10:22 AM Changeset in webkit [259161] by Simon Fraser
  • 1 edit in trunk/Source/WebCore/ChangeLog

Define ENABLE_WHEEL_EVENT_LATCHING and use it to wrap wheel event latching code
https://bugs.webkit.org/show_bug.cgi?id=209693

Reviewed by Zalan Bujtas.

Source/WebCore:

Replace some #if PLATFORM(MAC) with #if ENABLE(WHEEL_EVENT_LATCHING).

ENABLE_WHEEL_EVENT_LATCHING is currently only enabled on macOS, but it's possible
that it should be defined everywhere that ENABLE_KINETIC_SCROLLING is defined.
This requires testing on WPE, GTK etc.

  • page/EventHandler.cpp:

(WebCore::handleWheelEventInAppropriateEnclosingBox):
(WebCore::EventHandler::handleWheelEvent):
(WebCore::EventHandler::clearLatchedState):
(WebCore::EventHandler::defaultWheelEventHandler):

  • page/Page.cpp:
  • page/Page.h:

Source/WTF:

Define ENABLE_WHEEL_EVENT_LATCHING for macOS.

  • wtf/PlatformEnable.h:
10:21 AM Changeset in webkit [259160] by Alan Bujtas
  • 2 edits in trunk/Source/WebCore

[RenderTreeBuilder] Destroy the child first in RenderTreeBuilder::destroyAndCleanUpAnonymousWrappers
https://bugs.webkit.org/show_bug.cgi?id=209695

Reviewed by Antti Koivisto.

The render tree tear down direction is usually leaf first (there are some non-trivial cases where we end up going container first).
Being able to access the ancestor chain helps with some final cleanup activities (e.g repaints).
This patch makes the renderer-inside-an-anonymous-wrapper case similar to the normal case as we destroy the leaf renderer first.
However the anonymous ancestor chain tear down is still container first (see r228606).

  • rendering/updating/RenderTreeBuilder.cpp:

(WebCore::RenderTreeBuilder::destroyAndCleanUpAnonymousWrappers):
(WebCore::isAnonymousAndSafeToDelete): Deleted.
(WebCore::findDestroyRootIncludingAnonymous): Deleted.

9:45 AM Changeset in webkit [259159] by commit-queue@webkit.org
  • 20 edits in trunk

Deprecate injected bundle page group SPI
https://bugs.webkit.org/show_bug.cgi?id=209687

Patch by Alex Christensen <achristensen@webkit.org> on 2020-03-28
Reviewed by Timothy Hatcher.

Source/WebKit:

This old code is problematic, and the use of it is being removed in rdar://problem/60987265

  • Shared/WebPageGroupData.cpp:

(WebKit::WebPageGroupData::encode const):
(WebKit::WebPageGroupData::decode):

  • Shared/WebPageGroupData.h:
  • UIProcess/WebPageGroup.cpp:

(WebKit::WebPageGroup::WebPageGroup):

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

(WKBundleAddUserScript):
(WKBundleAddUserStyleSheet):
(WKBundleRemoveUserScript):
(WKBundleRemoveUserStyleSheet):
(WKBundleRemoveUserScripts):
(WKBundleRemoveUserStyleSheets):
(WKBundleRemoveAllUserContent):

  • WebProcess/InjectedBundle/API/c/WKBundlePrivate.h:
  • WebProcess/InjectedBundle/InjectedBundle.cpp:

(WebKit::InjectedBundle::addUserScript): Deleted.
(WebKit::InjectedBundle::addUserStyleSheet): Deleted.
(WebKit::InjectedBundle::removeUserScript): Deleted.
(WebKit::InjectedBundle::removeUserStyleSheet): Deleted.
(WebKit::InjectedBundle::removeUserScripts): Deleted.
(WebKit::InjectedBundle::removeUserStyleSheets): Deleted.
(WebKit::InjectedBundle::removeAllUserContent): Deleted.

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

(WebKit::WebPageGroupProxy::WebPageGroupProxy):
(WebKit::WebPageGroupProxy::userContentController): Deleted.

  • WebProcess/WebPage/WebPageGroupProxy.h:

Tools:

  • TestWebKitAPI/Tests/WebKit/DOMWindowExtensionBasic_Bundle.cpp:

(TestWebKitAPI::DOMWindowExtensionBasic::didCreatePage):
(TestWebKitAPI::DOMWindowExtensionBasic::initialize): Deleted.

  • TestWebKitAPI/Tests/WebKit/DOMWindowExtensionNoCache_Bundle.cpp:

(TestWebKitAPI::DOMWindowExtensionNoCache::didCreatePage):
(TestWebKitAPI::DOMWindowExtensionNoCache::initialize): Deleted.

  • TestWebKitAPI/Tests/WebKit/DocumentStartUserScriptAlertCrash_Bundle.cpp:

(TestWebKitAPI::DocumentStartUserScriptAlertCrashTest::didCreatePage):
(TestWebKitAPI::DocumentStartUserScriptAlertCrashTest::initialize): Deleted.

  • TestWebKitAPI/Tests/WebKit/InjectedBundleDisableOverrideBuiltinsBehavior_Bundle.cpp:

(TestWebKitAPI::InjectedBundleNoDisableOverrideBuiltinsBehaviorTest::initialize): Deleted.
(TestWebKitAPI::InjectedBundleDisableOverrideBuiltinsBehaviorTest::initialize): Deleted.

  • TestWebKitAPI/Tests/WebKit/InjectedBundleMakeAllShadowRootsOpen_Bundle.cpp:

(TestWebKitAPI::InjectedBundleMakeAllShadowRootOpenTest::didCreatePage):
(TestWebKitAPI::InjectedBundleMakeAllShadowRootOpenTest::initialize): Deleted.

8:35 AM Changeset in webkit [259158] by Antti Koivisto
  • 8 edits
    2 adds in trunk

Nullptr crash in InlineTextBox::emphasisMarkExistsAndIsAbove
https://bugs.webkit.org/show_bug.cgi?id=207034

Reviewed by Zalan Bujtas.

Source/WebCore:

Reduced test case by Zalan.

Test: editing/selection/selection-update-during-anonymous-inline-teardown.html

  • editing/FrameSelection.cpp:

(WebCore::FrameSelection::setNeedsSelectionUpdateForRenderTreeChange):

Don't clear the selection immediately, do it in updateAppearanceAfterLayoutOrStyleChange after render tree update/layout is done instead.
This is safe as selection uses WeakPtrs to reference renderers.

Renamed to emphasize the use case.

(WebCore::FrameSelection::updateAppearanceAfterLayoutOrStyleChange):
(WebCore::FrameSelection::setNeedsSelectionUpdate): Deleted.

  • editing/FrameSelection.h:
  • rendering/RenderBlockFlow.cpp:

(WebCore::RenderBlockFlow::willBeDestroyed):

  • rendering/RenderInline.cpp:

(WebCore::RenderInline::willBeDestroyed):

  • rendering/RenderTextControlSingleLine.cpp:

(WebCore::RenderTextControlSingleLine::layout):

  • rendering/updating/RenderTreeBuilder.cpp:

(WebCore::RenderTreeBuilder::detachFromRenderElement):

LayoutTests:

  • editing/selection/selection-update-during-anonymous-inline-teardown-expected.txt: Added.
  • editing/selection/selection-update-during-anonymous-inline-teardown.html: Added.
8:19 AM Changeset in webkit [259157] by Caio Lima
  • 2 edits in trunk/JSTests

stress/test-out-of-memory.js test gaderning
https://bugs.webkit.org/show_bug.cgi?id=209701

Unreviewed test gardening.

  • stress/test-out-of-memory.js:
6:07 AM Changeset in webkit [259156] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Unreviewed, reverting r259034.
https://bugs.webkit.org/show_bug.cgi?id=209700

Break StressGC bot (Requested by yusukesuzuki on #webkit).

Reverted changeset:

"IndexedDB: destroy UniqueIDBDatabase when it's not used"
https://bugs.webkit.org/show_bug.cgi?id=209532
https://trac.webkit.org/changeset/259034

3:50 AM Changeset in webkit [259155] by ChangSeok Oh
  • 3 edits in trunk/Tools

[GTK] No libsystemd-devel for DNF
https://bugs.webkit.org/show_bug.cgi?id=209697

Reviewed by Philippe Normand.

Replace libsystemd-devel to systemd-devel for DNF.

  • gtk/install-dependencies:
  • wpe/install-dependencies:

Mar 27, 2020:

9:21 PM Changeset in webkit [259154] by Simon Fraser
  • 6 edits in trunk/Source

Define ENABLE_WHEEL_EVENT_LATCHING and use it to wrap wheel event latching code
https://bugs.webkit.org/show_bug.cgi?id=209693

Reviewed by Zalan Bujtas.

Source/WebCore:

Replace some #if PLATFORM(MAC) with #if ENABLE(WHEEL_EVENT_LATCHING).

ENABLE_WHEEL_EVENT_LATCHING is currently only enabled on macOS, but it's possible
that it should be defined everywhere that ENABLE_KINETIC_SCROLLING is defined.
This requires testing on WPE, GTK etc.

  • page/EventHandler.cpp:

(WebCore::handleWheelEventInAppropriateEnclosingBox):
(WebCore::EventHandler::handleWheelEvent):
(WebCore::EventHandler::clearLatchedState):
(WebCore::EventHandler::defaultWheelEventHandler):

  • page/Page.cpp:
  • page/Page.h:

Source/WTF:

Define ENABLE_WHEEL_EVENT_LATCHING for macOS.

  • wtf/PlatformEnable.h:
9:17 PM Changeset in webkit [259153] by Jack Lee
  • 3 edits
    2 adds in trunk

Nullptr crash in CompositeEditCommand::moveParagraphs when inserting OL into uneditable parent.
https://bugs.webkit.org/show_bug.cgi?id=209641
<rdar://problem/60915598>

Reviewed by Ryosuke Niwa.

Source/WebCore:

Inserting BR in unlistifyParagraph() or OL/UL in listifyParagraph() would fail
because their insertion position is uneditable. In this case BR/OL/UL becomes
parentless and the code crashes later when their parent is dereferenced in
moveParagraphs().
In unlistifyParagraph(), only insertNodeBefore() and insertNodeAfter() are used
and both check parent of listNode for editability, so in order to avoid assertion
in the above functions, we check the editability of listNode before insertion.
In listifyParagraph() it is hard to predict where the final insertion position would be,
so we check the editability of the insertion position after it is finalized.

Test: editing/inserting/insert-ol-uneditable-parent.html

  • editing/InsertListCommand.cpp:

(WebCore::InsertListCommand::unlistifyParagraph):
(WebCore::InsertListCommand::listifyParagraph):

LayoutTests:

Added a regression test for the crash.

  • editing/inserting/insert-ol-uneditable-parent-expected.txt: Added.
  • editing/inserting/insert-ol-uneditable-parent.html: Added.
9:00 PM Changeset in webkit [259152] by commit-queue@webkit.org
  • 3 edits
    4 adds in trunk

Source/WebCore:
Fix null pointer crash in RenderBox::styleDidChange
https://bugs.webkit.org/show_bug.cgi?id=208311

Patch by Eugene But <eugenebut@chromium.org> on 2020-03-27
Reviewed by Ryosuke Niwa.

RenderBox::styleDidChange crashes when changing style for HTMLBodyElement element.
Crash happens on dereferencing null document().documentElement()->renderer() pointer:

if (....
!documentElementRenderer->style().hasExplicitlySetWritingMode())) {

That HTMLBodyElement was added as the second child of document, which is not allowed per spec:

If parent is a document, and any of the statements below, switched on node,
are true, then throw a "HierarchyRequestError" DOMException:

.......
element

parent has an element child that is not child or a doctype is following child.

......

https://dom.spec.whatwg.org/#concept-node-replace

This patch prevents adding HTMLBodyElement as the second child by running more strict checks
inside WebCore::Document::canAcceptChild(). Previously canAcceptChild() would allow all
Replace operations if new child had the same type as old child, even if old child has changed the parent.

If old child has changed the parent (parent is not document), it means that child was removed from document
and it is possible that mutation event handler has already added a new child to document. This is normal
situation, but it means that canAcceptChild() can not short circuit only on comparing the types of old and
new child, and has to run all checks listed in https://dom.spec.whatwg.org/#concept-node-replace

Tests: fast/dom/add-document-child-during-document-child-replacement.html

fast/dom/add-document-child-and-reparent-old-child-during-document-child-replacement.html

  • Source/WebCore/dom/Document.cpp:

(WebCore::Document::canAcceptChild):

LayoutTests:
Test for RenderBox::styleDidChange crash fix
https://bugs.webkit.org/show_bug.cgi?id=208311

Patch by Eugene But <eugenebut@chromium.org> on 2020-03-27
Reviewed by Ryosuke Niwa

add-document-child-during-document-child-replacement.html test adds svg child to a document
from mutation event observer while existing document child is being replaced.
After adding svg child, the document should reject the replacement of existing child, per spec:

If parent is a document, and any of the statements below, switched on node,
are true, then throw a "HierarchyRequestError" DOMException:

.......
element

parent has an element child that is not child or a doctype is following child.

......

https://dom.spec.whatwg.org/#concept-node-replace

add-document-child-and-reparent-old-child-during-document-child-replacement.html reparents the old child
to create slightly different state where old child still has a parent but that parent is not document.

  • add-document-child-during-document-child-replacement.html:
  • add-document-child-and-reparent-old-child-during-document-child-replacement.html:
8:05 PM Changeset in webkit [259151] by Wenson Hsieh
  • 18 edits in trunk/Source

Web content processes should not be able to arbitrarily request pasteboard data from the UI process
https://bugs.webkit.org/show_bug.cgi?id=209657
<rdar://problem/59611585>

Reviewed by Geoff Garen.

Source/WebCore:

Match macOS behavior in the iOS implementation of Pasteboard::createForCopyAndPaste by using the name of the
general pasteboard by default, when initializing a Pasteboard for copying and pasting. In WebKit2, this allows
us to grant permission to the web process when reading from the general pasteboard.

  • platform/ios/PasteboardIOS.mm:

(WebCore::Pasteboard::createForCopyAndPaste):

Source/WebCore/PAL:

Soft-link the string constant UIPasteboardNameGeneral. See WebKit/ChangeLog for more details.

  • pal/ios/UIKitSoftLink.h:
  • pal/ios/UIKitSoftLink.mm:

Source/WebKit:

This patch adds a mechanism to prevent the UI process from sending pasteboard data to the web process in
response to WebPasteboardProxy IPC messages, unless the user (or the WebKit client, on behalf of the user) has
explicitly made the contents of the pasteboard available to a page in that web process. We determine the latter
by maintaining information about the changeCounts of each pasteboard we allow each web process to read. This
mapping is updated when either the user interacts with trusted UI (context menus, DOM paste menu) for pasting,
or an API client calls into -[WKWebView paste:], as is the case when pasting via the callout bar on iOS or
pasting via keyboard shortcuts (i.e. cmd + V) on macOS and iOS.

See per-change comments below for more details. Under normal circumstances, there should be no change in
behavior; refer to the radar for more context.

  • UIProcess/Cocoa/WebPageProxyCocoa.mm:

(WebKit::WebPageProxy::grantAccessToCurrentPasteboardData):

Add a helper method to grant access to the data currently on the pasteboard with the given name; for now, this
grants access to all related pages that reside in the same web process, but this may be refactored in a future
change to make the mapping granular to each WebPageProxy rather than WebProcessProxy.

(Note: it is _critical_ that this method is never invoked as a result of IPC from the web process.)

  • UIProcess/Cocoa/WebPasteboardProxyCocoa.mm:

(WebKit::WebPasteboardProxy::grantAccessToCurrentData):

Helper method to grant access to the current contents on the named pasteboard. Calling this method updates
m_pasteboardNameToChangeCountAndProcessesMap, such that the given web process is able to read from the
pasteboard with the given name, as long as the changeCount is still the same. To implement this behavior,
we either (1) add the process to an existing WeakHashSet of process proxies in the case where the
changeCount is the same as it was when we added the existing WeakHashSet, or in all other cases, (2) add a
replace the current (changeCount, processes) pair with the new change count and a weak set containing only the
given WebProcessProxy.

(WebKit::WebPasteboardProxy::revokeAccessToAllData):

Helper method to revoke all pasteboard access for the given WebProcessProxy. Called when resetting state, e.g.
after web process termination.

(WebKit::WebPasteboardProxy::canAccessPasteboardData const):

Private helper method to check whether an IPC message can access pasteboard data, based on the IPC::Connection
used to receive the message. This helper method returns true if either the WebKit client has used SPI
(both DOMPasteAllowed and JavaScriptCanAccessClipboard) to grant unmitigated access to the clipboard from the
web process, or access has been previously granted due to user interaction in the UI process or API calls made
directly by the WebKit client.

(WebKit::WebPasteboardProxy::didModifyContentsOfPasteboard):

Private helper method to update the pasteboard changeCount that has been granted to a given web process, in the
case where that web process was also responsible for writing data to the pasteboard and the pasteboard
changeCount prior to modifying the pasteboard was still valid. In other words, we should always allow a web
process to read contents it has just written. This allows us to maintain the use case where a WKWebView client
copies and pastes using back-to-back API calls:

`
[webView copy:nil];
[webView paste:nil];
`

(WebKit::WebPasteboardProxy::getPasteboardPathnamesForType):

Add a FIXME to add the canAccessPasteboardData check here as well. We can't do this yet because the web
process currently relies on being able to read the full list of pasteboard path names when dragging over the
page, but this will be fixed in a followup patch in the near future (see https://webkit.org/b/209671).

(WebKit::WebPasteboardProxy::getPasteboardStringForType):
(WebKit::WebPasteboardProxy::getPasteboardStringsForType):
(WebKit::WebPasteboardProxy::getPasteboardBufferForType):
(WebKit::WebPasteboardProxy::getPasteboardColor):
(WebKit::WebPasteboardProxy::getPasteboardURL):

In all the call sites where we ask for pasteboard data (with the exception of getPasteboardPathnamesForType, for
the time being), check whether we're allowed to read pasteboard data by consulting canAccessPasteboardData. If
not, return early with no data.

(WebKit::WebPasteboardProxy::addPasteboardTypes):
(WebKit::WebPasteboardProxy::setPasteboardTypes):
(WebKit::WebPasteboardProxy::setPasteboardURL):
(WebKit::WebPasteboardProxy::setPasteboardColor):
(WebKit::WebPasteboardProxy::setPasteboardStringForType):

In all the call sites where we knowingly mutate the pasteboard (and bump the changeCount as a result),
additionally update the changeCount to which we've granted access on behalf of the web process that is modifying
the pasteboard.

(WebKit::WebPasteboardProxy::urlStringSuitableForLoading):
(WebKit::WebPasteboardProxy::setPasteboardBufferForType):
(WebKit::WebPasteboardProxy::writeCustomData):
(WebKit::WebPasteboardProxy::readStringFromPasteboard):
(WebKit::WebPasteboardProxy::readURLFromPasteboard):
(WebKit::WebPasteboardProxy::readBufferFromPasteboard):
(WebKit::WebPasteboardProxy::writeURLToPasteboard):
(WebKit::WebPasteboardProxy::writeWebContentToPasteboard):
(WebKit::WebPasteboardProxy::writeImageToPasteboard):
(WebKit::WebPasteboardProxy::writeStringToPasteboard):

(See comments above).

  • UIProcess/Cocoa/WebViewImpl.mm:

(WebKit::WebViewImpl::performDragOperation):

When performing a drop on macOS, grant temporary access to the drag pasteboard.

(WebKit::WebViewImpl::requestDOMPasteAccess):
(WebKit::WebViewImpl::handleDOMPasteRequestWithResult):

If the user has granted DOM paste access, additionally grant access to the general pasteboard.

  • UIProcess/WebPageProxy.cpp:

(WebKit::isPasteCommandName):
(WebKit::WebPageProxy::executeEditCommand):

When executing an edit command on behalf of a WebKit client, check to see if it is a paste command (one of
the four that are defined in EditorCommand.cpp). If so, we grant access to the current contents of the general
pasteboard.

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPasteboardProxy.cpp:

(WebKit::WebPasteboardProxy::webProcessProxyForConnection const):

Add a helper method to map a given IPC::Connection to a WebProcessProxy. While we have a list of WebProcessProxy
objects, we know a priori that at most one of them will have the given connection, so returning a single
WebProcessProxy* here is sufficient (rather than a list of WebProcessProxy*s).

(WebKit::WebPasteboardProxy::allPasteboardItemInfo):
(WebKit::WebPasteboardProxy::informationForItemAtIndex):
(WebKit::WebPasteboardProxy::getPasteboardItemsCount):
(WebKit::WebPasteboardProxy::readURLFromPasteboard):
(WebKit::WebPasteboardProxy::readBufferFromPasteboard):
(WebKit::WebPasteboardProxy::readStringFromPasteboard):
(WebKit::WebPasteboardProxy::urlStringSuitableForLoading):

Update interface stubs for non-Cocoa platforms.

  • UIProcess/WebPasteboardProxy.h:
  • UIProcess/WebPasteboardProxy.messages.in:

Decorate more IPC endpoints with WantsConnection, so that we can reason about the IPC::Connections used to
receive pasteboard messages.

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _handleDOMPasteRequestWithResult:]):

If the user has granted DOM paste access, additionally grant access to the general pasteboard.

(-[WKContentView dropInteraction:performDrop:]):

When performing a drop on iOS, grant temporary access to the drag pasteboard.

  • UIProcess/ios/WebPageProxyIOS.mm:

(WebKit::WebPageProxy::willPerformPasteCommand):

  • UIProcess/libwpe/WebPasteboardProxyLibWPE.cpp:

(WebKit::WebPasteboardProxy::readStringFromPasteboard):

  • UIProcess/mac/WebPageProxyMac.mm:

(WebKit::WebPageProxy::platformDidSelectItemFromActiveContextMenu):

Grant pasteboard access when using the context menu to paste on macOS.

(WebKit::WebPageProxy::willPerformPasteCommand):

Grant pasteboard access when triggering the "Paste" edit command using WebKit SPI.

7:47 PM Changeset in webkit [259150] by Ross Kirsling
  • 5 edits in trunk/Source/JavaScriptCore

[JSC] Make Operator an enum class to avoid Op* identifiers
https://bugs.webkit.org/show_bug.cgi?id=209637

Reviewed by Darin Adler.

Currently, (e.g.) OpLShift is a value of enum Operator while OpLshift is an opcode.
Capitalization aside, it's confusing to be using Op* for disparate purposes like this.
Let's modernize the enum so that this confusion can go away as a side effect.

  • bytecompiler/NodesCodegen.cpp:

(JSC::emitIncOrDec):
(JSC::PostfixNode::emitBytecode):
(JSC::PrefixNode::emitBytecode):
(JSC::LogicalOpNode::emitBytecode):
(JSC::LogicalOpNode::emitBytecodeInConditionContext):
(JSC::emitReadModifyAssignment):
(JSC::ReadModifyDotNode::emitBytecode):
(JSC::ReadModifyBracketNode::emitBytecode):

  • parser/ASTBuilder.h:

(JSC::ASTBuilder::makeBinaryNode):
(JSC::ASTBuilder::makeAssignNode):

  • parser/Nodes.h:
  • parser/Parser.cpp:

(JSC::Parser<LexerType>::parseAssignmentExpression):
(JSC::Parser<LexerType>::parseUnaryExpression):

5:56 PM Changeset in webkit [259149] by mark.lam@apple.com
  • 2 edits in trunk/JSTests

Skip stress/test-out-of-memory.js on memory limited devices.
https://bugs.webkit.org/show_bug.cgi?id=209690
<rdar://problem/60659198>

Reviewed by Keith Miller.

  • stress/test-out-of-memory.js:
5:45 PM Changeset in webkit [259148] by Alan Bujtas
  • 6 edits in trunk/Source/WebCore

REGRESSION (r256577): Previous page continues to display after navigating to media document
https://bugs.webkit.org/show_bug.cgi?id=209630
<rdar://problem/60609318>

Reviewed by Simon Fraser.

Add a way for non-HTML documents to signal visually non-empty state (for example when media document constructs the controls for the media content.)

  • html/FTPDirectoryDocument.cpp:

(WebCore::FTPDirectoryDocumentParser::appendEntry):

  • html/MediaDocument.cpp:

(WebCore::MediaDocumentParser::createDocumentStructure):

  • html/PluginDocument.cpp:

(WebCore::PluginDocumentParser::createDocumentStructure):

  • page/FrameView.cpp:

(WebCore::FrameView::resetLayoutMilestones):
(WebCore::FrameView::checkAndDispatchDidReachVisuallyNonEmptyState):

  • page/FrameView.h:
4:51 PM Changeset in webkit [259147] by Simon Fraser
  • 7 edits in trunk/Source/WebCore

Change SVGRenderingContext::renderSubtreeToImageBuffer() to SVGRenderingContext::renderSubtreeToContext()
https://bugs.webkit.org/show_bug.cgi?id=209679

Reviewed by Said Abou-Hallawa.

renderSubtreeToImageBuffer() just gets the context from the buffer, so change the name and signature
and just pass a GraphicsContext.

  • rendering/svg/RenderSVGResourceClipper.cpp:

(WebCore::RenderSVGResourceClipper::drawContentIntoMaskImage):

  • rendering/svg/RenderSVGResourceMasker.cpp:

(WebCore::RenderSVGResourceMasker::drawContentIntoMaskImage):

  • rendering/svg/RenderSVGResourcePattern.cpp:

(WebCore::RenderSVGResourcePattern::createTileImage const):

  • rendering/svg/SVGRenderingContext.cpp:

(WebCore::SVGRenderingContext::renderSubtreeToContext):
(WebCore::SVGRenderingContext::renderSubtreeToImageBuffer): Deleted.

  • rendering/svg/SVGRenderingContext.h:
  • svg/graphics/filters/SVGFEImage.cpp:

(WebCore::FEImage::platformApplySoftware):

4:44 PM Changeset in webkit [259146] by Chris Dumez
  • 6 edits in trunk/Source/WebKit

[iOS] Delay process suspension for a while after loading an app link
https://bugs.webkit.org/show_bug.cgi?id=209686
<rdar://problem/60888891>

Reviewed by Darin Adler.

Delay process suspension for a while after loading an app link. This will allow the page's script to pass
information more reliably to the native app handling the navigation.

This patch adds a [WKWebView _willOpenAppLink] SPI that the client needs to call before opening the
app link.

  • UIProcess/API/Cocoa/WKWebViewPrivate.h:
  • UIProcess/API/ios/WKWebViewIOS.mm:

(-[WKWebView _willOpenAppLink]):

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::close):

  • UIProcess/WebPageProxy.h:
  • UIProcess/ios/WebPageProxyIOS.mm:

(WebKit::WebPageProxy::willOpenAppLink):

4:25 PM Changeset in webkit [259145] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mac wk2 ] MediaPlayerPrivateInterface crash in WebKit::VideoFullscreenManager
https://bugs.webkit.org/show_bug.cgi?id=209688

Unreviewed test gardening.

  • platform/mac-wk2/TestExpectations:
4:13 PM Changeset in webkit [259144] by Russell Epstein
  • 1 copy in tags/Safari-609.2.1.2.10

Tag Safari-609.2.1.2.10.

3:26 PM Changeset in webkit [259143] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mac Debug ] imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/ready-states/autoplay.html is flaky crashing.
https://bugs.webkit.org/show_bug.cgi?id=209684

Unreviewed test gardening.

  • platform/mac/TestExpectations:
3:00 PM Changeset in webkit [259142] by Alan Coon
  • 1 copy in tags/Safari-609.2.2

Tag Safari-609.2.2.

2:32 PM Changeset in webkit [259141] by Devin Rousso
  • 5 edits in trunk

Web Inspector: should also escape the method when Copy as cURL
https://bugs.webkit.org/show_bug.cgi?id=209665
<rdar://problem/58432154>

Reviewed by Joseph Pecoraro.

Source/WebInspectorUI:

  • UserInterface/Models/Resource.js:

(WI.Resource.prototype.generateCURLCommand):
(WI.Resource.prototype.generateCURLCommand.escapeStringPosix):
The method could be maliciously crafted, so we should also escape it (if needed).

LayoutTests:

  • http/tests/inspector/network/copy-as-curl.html:
2:25 PM Changeset in webkit [259140] by ysuzuki@apple.com
  • 4 edits in trunk/Source/WebCore

Use EnsureStillAliveScope to keep JSValues alive
https://bugs.webkit.org/show_bug.cgi?id=209577

Reviewed by Geoffrey Garen.

Some of WebCore code is using JSC::Strong<> to ensure JSC value alive while doing some operations.
But JSC::EnsureStillAliveScope is sufficient for this use case. This patch replaces these Strong<> use
with JSC::EnsureStillAliveScope.

  • bindings/js/JSEventListener.h:

(WebCore::JSEventListener::ensureJSFunction const):

  • bindings/js/JSWindowProxy.cpp:

(WebCore::JSWindowProxy::setWindow):

  • bindings/js/WorkerScriptController.cpp:

(WebCore::WorkerScriptController::initScript):

2:08 PM Changeset in webkit [259139] by commit-queue@webkit.org
  • 52 edits
    2 copies
    1 add
    3 deletes in trunk

Use ANGLE_robust_client_memory to replace framebuffer/texture validation
https://bugs.webkit.org/show_bug.cgi?id=209098

Patch by Kenneth Russell <kbr@chromium.org> on 2020-03-27
Reviewed by Dean Jackson.

Source/ThirdParty/ANGLE:

Incorporated fix from anglebug.com/4504 to make
fast/canvas/webgl/uninitialized-test.html pass.

Incorporated fix from anglebug.com/4518 to make:

webgl/2.0.0/conformance2/renderbuffers/invalidate-framebuffer.html
webgl/2.0.0/conformance2/rendering/blitframebuffer-test.html
webgl/2.0.0/conformance2/rendering/rgb-format-support.html
webgl/2.0.0/conformance2/state/gl-object-get-calls.html
webgl/2.0.0/conformance2/textures/misc/tex-new-formats.html

pass.

  • src/libANGLE/Texture.cpp:

(gl::Texture::copySubImage):
(gl::Texture::ensureSubImageInitialized):

  • src/libANGLE/renderer/gl/renderergl_utils.cpp:

(rx::nativegl_gl::InitializeFeatures):

Source/WebCore:

Original patch by James Darpinian.

Delegate most framebuffer, compressed texture, renderbuffer, draw call,
clear, and ReadPixels validation to the ANGLE_robust_client_memory
extension. Delegate much, but not all, texture validation as well.
Remove tracking of textures' levels and immutability state, framebuffer
size and format, and unrenderable texture units from WebCore; these are
now handled by ANGLE. Hook up WebGL 2.0 draw/read framebuffer support
and BlitFramebuffer.

Disable WebGL 2.0 for non-ANGLE backends. It is infeasible to maintain
correctness of GraphicsContextGLOpenGL and GraphicsContextGLOpenGLES
under relaxed OpenGL ES 3.0 constraints.

Covered by existing WebGL layout tests. Several more webgl/2.0.0 tests
pass completely with this change.

  • html/canvas/WebGL2RenderingContext.cpp:

(WebCore::WebGL2RenderingContext::blitFramebuffer):
(WebCore::WebGL2RenderingContext::getInternalformatParameter):
(WebCore::WebGL2RenderingContext::readBuffer):
(WebCore::WebGL2RenderingContext::renderbufferStorageMultisample):
(WebCore::WebGL2RenderingContext::texStorage2D):
(WebCore::WebGL2RenderingContext::clear):
(WebCore::WebGL2RenderingContext::renderbufferStorage):
(WebCore::WebGL2RenderingContext::baseInternalFormatFromInternalFormat):

  • html/canvas/WebGL2RenderingContext.h:
  • html/canvas/WebGLFramebuffer.cpp:
  • html/canvas/WebGLFramebuffer.h:
  • html/canvas/WebGLRenderingContext.cpp:

(WebCore::WebGLRenderingContext::clear):

  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::create):
(WebCore::WebGLRenderingContextBase::initializeNewContext):
(WebCore::WebGLRenderingContextBase::clearIfComposited):
(WebCore::WebGLRenderingContextBase::reshape):
(WebCore::WebGLRenderingContextBase::bindFramebuffer):
(WebCore::WebGLRenderingContextBase::bindTexture):
(WebCore::WebGLRenderingContextBase::checkFramebufferStatus):
(WebCore::WebGLRenderingContextBase::compressedTexImage2D):
(WebCore::WebGLRenderingContextBase::compressedTexSubImage2D):
(WebCore::WebGLRenderingContextBase::copyTexSubImage2D):
(WebCore::WebGLRenderingContextBase::deleteTexture):
(WebCore::WebGLRenderingContextBase::validateVertexAttributes):
(WebCore::WebGLRenderingContextBase::drawArrays):
(WebCore::WebGLRenderingContextBase::drawElements):
(WebCore::WebGLRenderingContextBase::generateMipmap):
(WebCore::WebGLRenderingContextBase::readPixels):
(WebCore::WebGLRenderingContextBase::texImageSource2D):
(WebCore::WebGLRenderingContextBase::texImage2DBase):
(WebCore::WebGLRenderingContextBase::texImage2DImpl):
(WebCore::WebGLRenderingContextBase::validateTexFunc):
(WebCore::WebGLRenderingContextBase::texImage2D):
(WebCore::WebGLRenderingContextBase::texSubImage2DImpl):
(WebCore::WebGLRenderingContextBase::texSubImage2D):
(WebCore::WebGLRenderingContextBase::validateTexFuncFormatAndType):
(WebCore::WebGLRenderingContextBase::texSubImage2DBase):
(WebCore::WebGLRenderingContextBase::copyTexImage2D):
(WebCore::WebGLRenderingContextBase::texParameter):
(WebCore::WebGLRenderingContextBase::getBoundReadFramebufferColorFormat):
(WebCore::WebGLRenderingContextBase::getBoundReadFramebufferWidth):
(WebCore::WebGLRenderingContextBase::getBoundReadFramebufferHeight):
(WebCore::WebGLRenderingContextBase::validateTextureBinding):
(WebCore::WebGLRenderingContextBase::validateTexFuncLevel):
(WebCore::WebGLRenderingContextBase::restoreCurrentFramebuffer):
(WebCore::WebGLRenderingContextBase::restoreCurrentTexture2D):
(WebCore::WebGLRenderingContextBase::drawArraysInstanced):
(WebCore::WebGLRenderingContextBase::drawElementsInstanced):
(WebCore::WebGLRenderingContextBase::getBoundFramebufferColorFormat): Deleted.
(WebCore::WebGLRenderingContextBase::getBoundFramebufferWidth): Deleted.
(WebCore::WebGLRenderingContextBase::getBoundFramebufferHeight): Deleted.

  • html/canvas/WebGLRenderingContextBase.h:
  • html/canvas/WebGLTexture.cpp:

(WebCore::WebGLTexture::WebGLTexture):
(WebCore::WebGLTexture::setTarget):
(WebCore::WebGLTexture::deleteObjectImpl):
(WebCore::WebGLTexture::computeLevelCount):
(WebCore::WebGLTexture::canGenerateMipmaps):

  • html/canvas/WebGLTexture.h:
  • platform/graphics/ExtensionsGL.h:
  • platform/graphics/angle/ExtensionsGLANGLE.cpp:

(WebCore::ExtensionsGLANGLE::getBooleanvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getBufferParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getFloatvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getFramebufferAttachmentParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getIntegervRobustANGLE):
(WebCore::ExtensionsGLANGLE::getProgramivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getRenderbufferParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getShaderivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getTexParameterfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getTexParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getUniformfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getUniformivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getVertexAttribfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getVertexAttribivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getVertexAttribPointervRobustANGLE):
(WebCore::ExtensionsGLANGLE::readPixelsRobustANGLE):
(WebCore::ExtensionsGLANGLE::texImage2DRobustANGLE):
(WebCore::ExtensionsGLANGLE::texParameterfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::texParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::texSubImage2DRobustANGLE):
(WebCore::ExtensionsGLANGLE::compressedTexImage2DRobustANGLE):
(WebCore::ExtensionsGLANGLE::compressedTexSubImage2DRobustANGLE):
(WebCore::ExtensionsGLANGLE::compressedTexImage3DRobustANGLE):
(WebCore::ExtensionsGLANGLE::compressedTexSubImage3DRobustANGLE):
(WebCore::ExtensionsGLANGLE::texImage3DRobustANGLE):
(WebCore::ExtensionsGLANGLE::texSubImage3DRobustANGLE):
(WebCore::ExtensionsGLANGLE::getQueryivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getQueryObjectuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getBufferPointervRobustANGLE):
(WebCore::ExtensionsGLANGLE::getIntegeri_vRobustANGLE):
(WebCore::ExtensionsGLANGLE::getInternalformativRobustANGLE):
(WebCore::ExtensionsGLANGLE::getVertexAttribIivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getVertexAttribIuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getUniformuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getActiveUniformBlockivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getInteger64vRobustANGLE):
(WebCore::ExtensionsGLANGLE::getInteger64i_vRobustANGLE):
(WebCore::ExtensionsGLANGLE::getBufferParameteri64vRobustANGLE):
(WebCore::ExtensionsGLANGLE::samplerParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::samplerParameterfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getSamplerParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getSamplerParameterfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getFramebufferParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getProgramInterfaceivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getBooleani_vRobustANGLE):
(WebCore::ExtensionsGLANGLE::getMultisamplefvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getTexLevelParameterivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getTexLevelParameterfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getPointervRobustANGLERobustANGLE):
(WebCore::wipeAlphaChannelFromPixels):
(WebCore::ExtensionsGLANGLE::readnPixelsRobustANGLE):
(WebCore::ExtensionsGLANGLE::getnUniformfvRobustANGLE):
(WebCore::ExtensionsGLANGLE::getnUniformivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getnUniformuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::texParameterIivRobustANGLE):
(WebCore::ExtensionsGLANGLE::texParameterIuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getTexParameterIivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getTexParameterIuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::samplerParameterIivRobustANGLE):
(WebCore::ExtensionsGLANGLE::samplerParameterIuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getSamplerParameterIivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getSamplerParameterIuivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getQueryObjectivRobustANGLE):
(WebCore::ExtensionsGLANGLE::getQueryObjecti64vRobustANGLE):
(WebCore::ExtensionsGLANGLE::getQueryObjectui64vRobustANGLE):

  • platform/graphics/angle/ExtensionsGLANGLE.h:
  • platform/graphics/angle/GraphicsContextGLANGLE.cpp:

(WebCore::GraphicsContextGLOpenGL::reshapeFBOs):
(WebCore::GraphicsContextGLOpenGL::readPixels):
(WebCore::GraphicsContextGLOpenGL::readRenderingResults):
(WebCore::GraphicsContextGLOpenGL::reshape):
(WebCore::GraphicsContextGLOpenGL::bindFramebuffer):
(WebCore::GraphicsContextGLOpenGL::copyTexImage2D):
(WebCore::GraphicsContextGLOpenGL::copyTexSubImage2D):
(WebCore::GraphicsContextGLOpenGL::deleteFramebuffer):
(WebCore::GraphicsContextGLOpenGL::blitFramebuffer):
(WebCore::GraphicsContextGLOpenGL::readBuffer):

  • platform/graphics/cocoa/GraphicsContextGLOpenGLCocoa.mm:

(WebCore::GraphicsContextGLOpenGL::GraphicsContextGLOpenGL):

  • platform/graphics/opengl/ExtensionsGLOpenGLCommon.cpp:

(WebCore::ExtensionsGLOpenGLCommon::getTranslatedShaderSourceANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getBooleanvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getBufferParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getFloatvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getFramebufferAttachmentParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getIntegervRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getProgramivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getRenderbufferParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getShaderivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getTexParameterfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getTexParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getUniformfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getUniformivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getVertexAttribfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getVertexAttribivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getVertexAttribPointervRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::readPixelsRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texImage2DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texParameterfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texSubImage2DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::compressedTexImage2DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::compressedTexSubImage2DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::compressedTexImage3DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::compressedTexSubImage3DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texImage3DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texSubImage3DRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getQueryivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getQueryObjectuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getBufferPointervRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getIntegeri_vRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getInternalformativRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getVertexAttribIivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getVertexAttribIuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getUniformuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getActiveUniformBlockivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getInteger64vRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getInteger64i_vRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getBufferParameteri64vRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::samplerParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::samplerParameterfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getSamplerParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getSamplerParameterfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getFramebufferParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getProgramInterfaceivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getBooleani_vRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getMultisamplefvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getTexLevelParameterivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getTexLevelParameterfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getPointervRobustANGLERobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::readnPixelsRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getnUniformfvRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getnUniformivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getnUniformuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texParameterIivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::texParameterIuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getTexParameterIivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getTexParameterIuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::samplerParameterIivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::samplerParameterIuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getSamplerParameterIivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getSamplerParameterIuivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getQueryObjectivRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getQueryObjecti64vRobustANGLE):
(WebCore::ExtensionsGLOpenGLCommon::getQueryObjectui64vRobustANGLE):

  • platform/graphics/opengl/ExtensionsGLOpenGLCommon.h:
  • platform/graphics/opengl/GraphicsContextGLOpenGL.h:
  • platform/graphics/opengl/GraphicsContextGLOpenGLBase.cpp:

(WebCore::GraphicsContextGLOpenGL::reshapeFBOs):
(WebCore::GraphicsContextGLOpenGL::readPixels):

  • platform/graphics/opengl/GraphicsContextGLOpenGLCommon.cpp:

(WebCore::GraphicsContextGLOpenGL::prepareTexture):
(WebCore::GraphicsContextGLOpenGL::readRenderingResults):
(WebCore::GraphicsContextGLOpenGL::reshape):
(WebCore::GraphicsContextGLOpenGL::bindFramebuffer):
(WebCore::GraphicsContextGLOpenGL::copyTexImage2D):
(WebCore::GraphicsContextGLOpenGL::copyTexSubImage2D):
(WebCore::GraphicsContextGLOpenGL::deleteFramebuffer):

  • platform/graphics/opengl/GraphicsContextGLOpenGLES.cpp:

(WebCore::GraphicsContextGLOpenGL::readPixels):
(WebCore::GraphicsContextGLOpenGL::reshapeFBOs):
(WebCore::GraphicsContextGLOpenGL::GraphicsContextGLOpenGL):

  • platform/graphics/texmap/GraphicsContextGLTextureMapper.cpp:

(WebCore::GraphicsContextGLOpenGL::GraphicsContextGLOpenGL):

LayoutTests:

Several more webgl/2.0.0 tests pass completely with these changes.
Rebaseline all WebGL-related layout tests. Nearly all diffs are forward
progressions. All will eventually be passed as more of WebGL 2.0 is
implemented.

Removed fast/canvas/webgl/webgl-specific.html test, which was
duplicated in webgl/1.0.3 and webgl/2.0.0 and which was testing
behavior from an old version of the WebGL specification.

Revised uninitialized-test.html to test current WebGL
specification; copyTexSubImage2D now leaves out-of-range
pixels untouched, rather than zeroing them.

  • fast/canvas/webgl/uninitialized-test.html:
  • fast/canvas/webgl/webgl-specific-expected.txt: Removed.
  • fast/canvas/webgl/webgl-specific.html: Removed.
  • fast/canvas/webgl/webgl2-texStorage-expected.txt:
  • platform/gtk/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt: Copied from LayoutTests/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt.
  • platform/ios/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt: Removed.
  • platform/mac/TestExpectations:
  • platform/wpe/TestExpectations:
  • platform/wpe/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt: Copied from LayoutTests/webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt.
  • webgl/1.0.3/conformance/extensions/webgl-compressed-texture-size-limit-expected.txt:
  • webgl/2.0.0/conformance/textures/misc/copy-tex-image-and-sub-image-2d-expected.txt:
  • webgl/2.0.0/conformance/textures/misc/tex-sub-image-2d-bad-args-expected.txt:
  • webgl/2.0.0/conformance2/reading/read-pixels-from-fbo-test-expected.txt:
  • webgl/2.0.0/conformance2/renderbuffers/framebuffer-object-attachment-expected.txt:
  • webgl/2.0.0/conformance2/renderbuffers/readbuffer-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-filter-outofbounds-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-filter-srgb-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-multisampled-readbuffer-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-outside-readbuffer-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-size-overflow-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-srgb-and-linear-drawbuffers-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-stencil-only-expected.txt:
  • webgl/2.0.0/conformance2/rendering/blitframebuffer-test-expected.txt:
  • webgl/2.0.0/conformance2/rendering/clear-func-buffer-type-match-expected.txt:
  • webgl/2.0.0/conformance2/rendering/instanced-arrays-expected.txt:
  • webgl/2.0.0/conformance2/state/gl-object-get-calls-expected.txt:
  • webgl/2.0.0/conformance2/textures/misc/copy-texture-image-expected.txt:
  • webgl/2.0.0/conformance2/textures/misc/tex-new-formats-expected.txt:
  • webgl/2.0.0/conformance2/textures/misc/tex-storage-2d-expected.txt:
  • webgl/2.0.0/conformance2/textures/misc/texture-npot-expected.txt:
2:07 PM Changeset in webkit [259138] by Chris Dumez
  • 4 edits in trunk/Source/WebCore

HTMLTrackElement should be pending while it is waiting for LoadableTextTrack request
https://bugs.webkit.org/show_bug.cgi?id=208798
<rdar://problem/60325421>

Reviewed by Geoffrey Garen.

Have HTMLTrackElement and subclass ActiveDOMObject::hasPendingActivity() to keeps its
wrapper alive if its in LOADING state and the page's script has relevant load events
event listeners registered.

No new tests, covered by media/track/track-disabled-addcue.html.

  • html/HTMLTrackElement.cpp:

(WebCore::HTMLTrackElement::HTMLTrackElement):
(WebCore::HTMLTrackElement::create):
(WebCore::HTMLTrackElement::didCompleteLoad):
(WebCore::HTMLTrackElement::readyState const):
(WebCore::HTMLTrackElement::activeDOMObjectName const):
(WebCore::HTMLTrackElement::eventListenersDidChange):
(WebCore::HTMLTrackElement::hasPendingActivity const):
(WebCore::HTMLTrackElement::readyState): Deleted.

  • html/HTMLTrackElement.h:
  • html/HTMLTrackElement.idl:
1:57 PM Changeset in webkit [259137] by Simon Fraser
  • 7 edits
    4 adds in trunk

Hovering over countries at https://covidinc.io/ shows bizarre rendering artifacts
https://bugs.webkit.org/show_bug.cgi?id=209635
<rdar://problem/60935010>

Reviewed by Said Abou-Hallawa.
Source/WebCore:

RenderSVGResourceClipper::applyClippingToContext() cached an ImageBuffer per RenderObject
when using a image buffer mask. However, the function created and rendered into this image buffer
using repaintRect, which can change between invocations. Painting with different repaintRects
is very common when rendering into page tiles.

The buffer can only be re-used if the inputs used to create the buffer (objectBoundingBox, absoluteTransform)
are the same, so store those and compare them when determining when to use the cached buffer, and
don't use repaintRect when setting up the buffer.

This revealed another problem where renderers with visual overflow could be truncated by
the clipping, tested by imported/mozilla/svg/svg-integration/clipPath-html-03.xhtml, which occurred
because RenderLayer::setupClipPath() used the 'svgReferenceBox' for the clipping bounds, which
is the content box of the renderer excluding overflow. Fix this by using the bounds of the layer,
which includes the bounds of descendants.

Tests: svg/clip-path/clip-path-on-overflowing.html

svg/clip-path/resource-clipper-multiple-repaints.html

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::setupClipPath):

  • rendering/svg/RenderSVGResourceClipper.cpp:

(WebCore::RenderSVGResourceClipper::removeAllClientsFromCache):
(WebCore::RenderSVGResourceClipper::applyClippingToContext):
(WebCore::RenderSVGResourceClipper::drawContentIntoMaskImage):
(WebCore::RenderSVGResourceClipper::addRendererToClipper):
(WebCore::RenderSVGResourceClipper::resourceBoundingBox):

  • rendering/svg/RenderSVGResourceClipper.h:

LayoutTests:

Ref test that exercises the code path by painting into a tiled compositing
layer.

  • svg/clip-path/clip-path-on-overflowing-expected.html: Added.
  • svg/clip-path/clip-path-on-overflowing.html: Added.
  • svg/clip-path/mask-nested-clip-path-010-expected.svg:
  • svg/clip-path/mask-nested-clip-path-010.svg: Copied from imported/mozilla/svg/svg-integration/clipPath-html-03.xhtml,

and modified to have a non-zero offset for better testing of the clipping bounds computation.

  • svg/clip-path/resource-clipper-multiple-repaints-expected.html: Added.
  • svg/clip-path/resource-clipper-multiple-repaints.html: Added.
1:53 PM Changeset in webkit [259136] by ddkilzer@apple.com
  • 2 edits in trunk/Source/WebKit

NetworkConnectionToWebProcess::registerBlobURLOptionallyFileBacked should validate its parameters
<https://webkit.org/b/209614>
<rdar://problem/60096304>

Reviewed by Alex Christensen.

  • NetworkProcess/NetworkConnectionToWebProcess.cpp:

(NETWORK_PROCESS_MESSAGE_CHECK):

  • Define/undef macro for killing WebContent process when an invalid IPC message is received.

(WebKit::NetworkConnectionToWebProcess::registerBlobURLOptionallyFileBacked):

  • Use NETWORK_PROCESS_MESSAGE_CHECK to validate its parameters.
1:33 PM Changeset in webkit [259135] by Chris Dumez
  • 3 edits in trunk/Source/WebCore

[StressGC] ASSERTION FAILED: m_wrapper under WebCore::MediaRecorder::dispatchError
https://bugs.webkit.org/show_bug.cgi?id=209674
<rdar://problem/60541201>

Reviewed by Darin Adler.

Keep the MediaRecorder wrapper alive while its state is not inactive (i.e. it is recording
or paused), as it may still dispatch events.

Also drop MediaRecorder::scheduleDeferredTask() and use the utility functions in
ActiveDOMObject instead to achieve the same thing.

No new tests, already covered by http/wpt/mediarecorder/MediaRecorder-onremovetrack.html.

  • Modules/mediarecorder/MediaRecorder.cpp:

(WebCore::MediaRecorder::suspend):
(WebCore::MediaRecorder::stopRecording):
(WebCore::MediaRecorder::didAddOrRemoveTrack):
(WebCore::MediaRecorder::hasPendingActivity const):
(WebCore::MediaRecorder::scheduleDeferredTask): Deleted.

  • Modules/mediarecorder/MediaRecorder.h:
12:48 PM Changeset in webkit [259134] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WTF

REGRESSION(r258857): Broke aarch64 JSCOnly CI
https://bugs.webkit.org/show_bug.cgi?id=209670

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-03-27
Reviewed by Carlos Alberto Lopez Perez.

Change aarch64 to use 4 KB rather than 64 KB as the ceiling on page size.

This change is definitely incorrect, because it will break our internal aarch64 CI that uses
64 KB pages. But maybe it will fix the public aarch64 CI bot that is using 4 KB pages?
Further investigation is required, because 64 KB should have been a safe value for all
platforms, but first step is to commit this and see what happens.

  • wtf/PageBlock.h:
12:43 PM Changeset in webkit [259133] by timothy_horton@apple.com
  • 2 edits in trunk/Source/WebKit

Unable to build WebKit with iOS 13.4 SDK
https://bugs.webkit.org/show_bug.cgi?id=209317

Reviewed by Dean Jackson.

  • Platform/spi/ios/UIKitSPI.h:

One more attempt. IPHONE_OS_VERSION_MAX_ALLOWED is inaccurate.

12:12 PM Changeset in webkit [259132] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mac wk2 ] ASSERTION FAILED: m_messageEventCount @ WebCore::ServiceWorkerThread::finishedFiringMessageEvent()
https://bugs.webkit.org/show_bug.cgi?id=209672

Unreviewed test gardening.

  • platform/mac-wk2/TestExpectations:
11:39 AM Changeset in webkit [259131] by Tadeu Zagallo
  • 21 edits in trunk/Source/JavaScriptCore

Fix instances of new.target that should be syntax errors
https://bugs.webkit.org/show_bug.cgi?id=208040
<rdar://problem/59653142>

Reviewed by Michael Saboff.

We were not throwing the appropriate syntax errors for the following usages of new.target:

  • Class field initializers outside ordinary functions: we were missing a check that the closestOrdinaryFunctionScope was not the global scope.
  • Within an eval inside an arrow function: we were only checking that the EvalContextType should be FunctionEvalContext, but that does not tell us whether it's an arrow function or an ordinary function. To fix that we must thread that information from the executables to the parser.
  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::finishCreation):

  • bytecode/UnlinkedFunctionExecutable.cpp:

(JSC::UnlinkedFunctionExecutable::link):

  • bytecode/UnlinkedFunctionExecutable.h:
  • debugger/DebuggerCallFrame.cpp:

(JSC::DebuggerCallFrame::evaluateWithScopeExtension):

  • interpreter/Interpreter.cpp:

(JSC::eval):

  • parser/Parser.cpp:

(JSC::Parser<LexerType>::Parser):
(JSC::Parser<LexerType>::parseMemberExpression):

  • parser/Parser.h:

(JSC::parse):

  • runtime/CodeCache.cpp:

(JSC::generateUnlinkedCodeBlockImpl):

  • runtime/DirectEvalExecutable.cpp:

(JSC::DirectEvalExecutable::create):
(JSC::DirectEvalExecutable::DirectEvalExecutable):

  • runtime/DirectEvalExecutable.h:
  • runtime/EvalExecutable.cpp:

(JSC::EvalExecutable::EvalExecutable):

  • runtime/EvalExecutable.h:
  • runtime/FunctionExecutable.cpp:

(JSC::FunctionExecutable::FunctionExecutable):

  • runtime/FunctionExecutable.h:
  • runtime/GlobalExecutable.h:

(JSC::GlobalExecutable::GlobalExecutable):

  • runtime/IndirectEvalExecutable.cpp:

(JSC::IndirectEvalExecutable::IndirectEvalExecutable):

  • runtime/ModuleProgramExecutable.cpp:

(JSC::ModuleProgramExecutable::ModuleProgramExecutable):

  • runtime/ProgramExecutable.cpp:

(JSC::ProgramExecutable::ProgramExecutable):

  • runtime/ScriptExecutable.cpp:

(JSC::ScriptExecutable::ScriptExecutable):

  • runtime/ScriptExecutable.h:

(JSC::ScriptExecutable::isInsideOrdinaryFunction const):

11:30 AM Changeset in webkit [259130] by Chris Dumez
  • 7 edits in trunk/Source/WebCore

[StressGC] ASSERTION FAILED: m_wrapper under WebCore::WebGLRenderingContextBase::dispatchContextLostEvent
https://bugs.webkit.org/show_bug.cgi?id=209660
<rdar://problem/60541733>

Reviewed by Darin Adler.

Make HTMLCanvasElement an ActiveDOMObject since WebGLRenderingContextBase needs to dispatch events
asynchronously on its canvas element. Update WebGLRenderingContextBase to use the HTML event loop
to dispatch those events asynchronously instead of using suspendible timers.

No new tests, already covered by webgl/max-active-contexts-webglcontextlost-prevent-default.html.

  • dom/TaskSource.h:
  • html/HTMLCanvasElement.cpp:

(WebCore::HTMLCanvasElement::HTMLCanvasElement):
(WebCore::HTMLCanvasElement::create):
(WebCore::HTMLCanvasElement::activeDOMObjectName const):

  • html/HTMLCanvasElement.h:
  • html/HTMLCanvasElement.idl:
  • html/canvas/WebGLRenderingContextBase.cpp:

(WebCore::WebGLRenderingContextBase::WebGLRenderingContextBase):
(WebCore::WebGLRenderingContextBase::loseContextImpl):
(WebCore::WebGLRenderingContextBase::scheduleTaskToDispatchContextLostEvent):
(WebCore::WebGLRenderingContextBase::dispatchContextChangedNotification):
(WebCore::WebGLRenderingContextBase::dispatchContextLostEvent): Deleted.
(WebCore::WebGLRenderingContextBase::dispatchContextChangedEvent): Deleted.

  • html/canvas/WebGLRenderingContextBase.h:
11:21 AM Changeset in webkit [259129] by Jason_Lawrence
  • 2 edits in trunk/LayoutTests

[ Mac wk2 Release ] media/modern-media-controls/seek-backward-support/seek-backward-support.html is flaky crashing.
https://bugs.webkit.org/show_bug.cgi?id=209668

Unreviewed test gardening.

  • platform/mac-wk2/TestExpectations:
11:07 AM Changeset in webkit [259128] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

Use Optional<> for a lazily-computed bounds rectangle
https://bugs.webkit.org/show_bug.cgi?id=209659

Reviewed by Zalan Bujtas.

Replace LayoutRect& rootRelativeBounds, bool& rootRelativeBoundsComputed with Optional<LayoutRect>.

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::setupClipPath):
(WebCore::RenderLayer::setupFilters):
(WebCore::RenderLayer::paintLayerContents):

  • rendering/RenderLayer.h:
11:05 AM Changeset in webkit [259127] by keith_miller@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Add missing scope release to DataView's buffer getter
https://bugs.webkit.org/show_bug.cgi?id=209663

Reviewed by Yusuke Suzuki.

  • runtime/JSDataViewPrototype.cpp:

(JSC::dataViewProtoGetterBuffer):

10:58 AM Changeset in webkit [259126] by dbates@webkit.org
  • 2 edits in trunk/Source/WebKit

Use -_hasFocusedElement in -_didUpdateInputMode
https://bugs.webkit.org/show_bug.cgi?id=209662

Reviewed by Wenson Hsieh.

Remove duplication by using -_hasFocusedElement.

  • UIProcess/ios/WKContentViewInteraction.mm:

(-[WKContentView _didUpdateInputMode:]):

10:54 AM Changeset in webkit [259125] by commit-queue@webkit.org
  • 2 edits in trunk/JSTests

Skip new memory test stress/typed-array-oom-in... in memory limited devices
https://bugs.webkit.org/show_bug.cgi?id=209661

Patch by Paulo Matos <Paulo Matos> on 2020-03-27
Reviewed by Keith Miller.

  • stress/typed-array-oom-in-buffer-accessor.js:
10:00 AM Changeset in webkit [259124] by Wenson Hsieh
  • 17 edits in trunk/Source

DragData::containsURL() should avoid reading URL strings from the pasteboard
https://bugs.webkit.org/show_bug.cgi?id=209642
Work towards <rdar://problem/59611585>

Reviewed by Tim Horton.

Source/WebCore:

Refactor the implementation of DragData::containsURL(), such that in WebKit2, the web process never needs to
reason about the value of any string data in the pasteboard. We move most of the Cocoa-specific logic in
DragData::containsURL into PlatformPasteboard, and add new PasteboardStrategy methods in support of this. See
below for more details. There should be no change in behavior; however, this has the minor benefit of reducing
the number of sync IPC to 1 (2 in the case of macOS) in both containsURL and asURL.

  • platform/PasteboardStrategy.h:

Add new strategy methods containsURLStringSuitableForLoading and urlStringSuitableForLoading, which are used in
DragData::containsURL and DragData::asURL, respectively.

  • platform/PlatformPasteboard.h:
  • platform/cocoa/DragDataCocoa.mm:

(WebCore::DragData::containsURL const):

In Cocoa platforms, the argument to containsURL was effectively unused. Leave only the type behind, now that we
don't need to plumb it through to asURL() anymore.

(WebCore::DragData::asURL const):

In both asURL and containsURL, use the new PasteboardStrategy helpers to get information about loadable URLs in
the drag pasteboard. A bit of macOS-specific code remains here since it relies on DragData::fileNames() --
information which is not present in the platform pasteboard.

  • platform/cocoa/PlatformPasteboardCocoa.mm:

(WebCore::PlatformPasteboard::urlStringSuitableForLoading):

Move the Cocoa-specific implementation of DragData::asURL into PlatformPasteboardCocoa, since the implementation
is mostly the same (with some minor additions for macOS). The only minor changes here (and below, in
containsURLStringSuitableForLoading) is the use of URL::protocolIsInHTTPFamily() instead of checking that
-[NSURL scheme] is equal to either @"http" or @"https".

  • platform/ios/PlatformPasteboardIOS.mm:

(WebCore::PlatformPasteboard::containsURLStringSuitableForLoading):

Move the platform-dependent implementations of DragData::containsURL to PlatformPasteboardIOS and
PlatformPasteboardMac. These implementations were already quite different, so this split into -IOS and -Mac
files is cleaner than using #if and #else in the same method implementation.

  • platform/mac/PlatformPasteboardMac.mm:

(WebCore::PlatformPasteboard::containsURLStringSuitableForLoading):

Source/WebKit:

See WebCore/ChangeLog for more details.

  • UIProcess/Cocoa/WebPasteboardProxyCocoa.mm:

(WebKit::WebPasteboardProxy::containsURLStringSuitableForLoading):
(WebKit::WebPasteboardProxy::urlStringSuitableForLoading):

  • UIProcess/WebPasteboardProxy.cpp:

(WebKit::WebPasteboardProxy::containsURLStringSuitableForLoading):
(WebKit::WebPasteboardProxy::urlStringSuitableForLoading):

  • UIProcess/WebPasteboardProxy.h:
  • UIProcess/WebPasteboardProxy.messages.in:

Add IPC plumbing for the new pasteboard strategy methods: containsURLStringSuitableForLoading and
urlStringSuitableForLoading.

  • WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:

(WebKit::WebPlatformStrategies::containsURLStringSuitableForLoading):
(WebKit::WebPlatformStrategies::urlStringSuitableForLoading):

  • WebProcess/WebCoreSupport/WebPlatformStrategies.h:

Source/WebKitLegacy/mac:

See WebCore/ChangeLog for more details.

  • WebCoreSupport/WebPlatformStrategies.h:
  • WebCoreSupport/WebPlatformStrategies.mm:

(WebPlatformStrategies::containsURLStringSuitableForLoading):
(WebPlatformStrategies::urlStringSuitableForLoading):

9:54 AM Changeset in webkit [259123] by Alan Coon
  • 8 edits in branches/safari-610.1.7-branch/Source

Versioning.

9:53 AM Changeset in webkit [259122] by Chris Dumez
  • 12 edits in trunk/Source/WebCore

[StressGC] ASSERTION FAILED: m_wrapper under WebCore::MainThreadGenericEventQueue::dispatchOneEvent
https://bugs.webkit.org/show_bug.cgi?id=209655
<rdar://problem/60541442>

Reviewed by Geoffrey Garen.

TrackListBase should subclass ActiveDOMObject and keep its wrapper alive when there are pending
events to be dispatched. TrackListBase has a queue to dispatch events asynchronously.

No new tests, covered by media/track/track-remove-track.html.

  • html/track/AudioTrackList.cpp:

(WebCore::AudioTrackList::activeDOMObjectName const):

  • html/track/AudioTrackList.h:
  • html/track/AudioTrackList.idl:
  • html/track/TextTrackList.cpp:

(WebCore::TextTrackList::activeDOMObjectName const):

  • html/track/TextTrackList.h:
  • html/track/TextTrackList.idl:
  • html/track/TrackListBase.cpp:

(WebCore::TrackListBase::TrackListBase):
(WebCore::TrackListBase::hasPendingActivity const):

  • html/track/TrackListBase.h:
  • html/track/VideoTrackList.cpp:

(WebCore::VideoTrackList::activeDOMObjectName const):

  • html/track/VideoTrackList.h:
  • html/track/VideoTrackList.idl:
9:45 AM Changeset in webkit [259121] by Simon Fraser
  • 34 edits in trunk/LayoutTests

Clean up fast/scrolling/latching tests
https://bugs.webkit.org/show_bug.cgi?id=209629

Reviewed by Zalan Bujtas.

These tests had a bunch of issues:

  • mixture of waitUntilDone/jsTestIsAsync
  • not all used eventSender.monitorWheelEvents
  • script in the body for no reason
  • commented out code, unused variables
  • confusing comments
  • contradictory test content
  • fast/scrolling/latching/iframe_in_iframe-expected.txt:
  • fast/scrolling/latching/iframe_in_iframe.html:
  • fast/scrolling/latching/resources/inner_content.html:
  • fast/scrolling/latching/resources/scroll_nested_iframe_test_inner.html:
  • fast/scrolling/latching/scroll-div-latched-div-expected.txt:
  • fast/scrolling/latching/scroll-div-latched-div.html:
  • fast/scrolling/latching/scroll-div-latched-mainframe-expected.txt:
  • fast/scrolling/latching/scroll-div-latched-mainframe.html:
  • fast/scrolling/latching/scroll-div-no-latching-expected.txt:
  • fast/scrolling/latching/scroll-div-no-latching.html:
  • fast/scrolling/latching/scroll-div-with-nested-nonscrollable-iframe-expected.txt:
  • fast/scrolling/latching/scroll-div-with-nested-nonscrollable-iframe.html:
  • fast/scrolling/latching/scroll-iframe-fragment-expected.txt:
  • fast/scrolling/latching/scroll-iframe-fragment.html:
  • fast/scrolling/latching/scroll-iframe-in-overflow-expected.txt:
  • fast/scrolling/latching/scroll-iframe-in-overflow.html:
  • fast/scrolling/latching/scroll-iframe-latched-iframe-expected.txt:
  • fast/scrolling/latching/scroll-iframe-latched-iframe.html:
  • fast/scrolling/latching/scroll-iframe-latched-mainframe-expected.txt:
  • fast/scrolling/latching/scroll-iframe-latched-mainframe.html:
  • fast/scrolling/latching/scroll-iframe-webkit1-latching-bug-expected.txt:
  • fast/scrolling/latching/scroll-iframe-webkit1-latching-bug.html:
  • fast/scrolling/latching/scroll-latched-nested-div-expected.txt:
  • fast/scrolling/latching/scroll-latched-nested-div.html:
  • fast/scrolling/latching/scroll-nested-iframe-expected.txt:
  • fast/scrolling/latching/scroll-nested-iframe.html:
  • fast/scrolling/latching/scroll-select-bottom-test-expected.txt:
  • fast/scrolling/latching/scroll-select-bottom-test.html:
  • fast/scrolling/latching/scroll-select-latched-mainframe-expected.txt:
  • fast/scrolling/latching/scroll-select-latched-mainframe.html:
  • fast/scrolling/latching/scroll-select-latched-select-expected.txt:
  • fast/scrolling/latching/scroll-select-latched-select.html:
  • platform/mac-wk2/TestExpectations:
9:41 AM Changeset in webkit [259120] by Kate Cheney
  • 2 edits in trunk/LayoutTests

[ macOS wk2 ] http/tests/resourceLoadStatistics/user-interaction-only-reported-once-within-short-period-of-time-database.html is flaky failing on safari-609-branch
<rdar://problem/60940165>

Unreviewed test gardening. Updating expectations for ITP test which
should be skipped due to a short timestampResolution.

  • platform/mac-wk2/TestExpectations:
9:37 AM Changeset in webkit [259119] by Russell Epstein
  • 2 edits in branches/safari-609.2.1.2-branch/Source/WebCore

Cherry-pick r257640. rdar://problem/60919944

updateCSSTransitionsForElementAndProperty should clone RenderStyles
https://bugs.webkit.org/show_bug.cgi?id=208356
rdar://59869560

Reviewed by Antti Koivisto.

Make ownership of the local variable clear by cloning the RenderStyles
used in updateCSSTransitionsForElementAndProperty rather than referencing
different versions.

  • animation/AnimationTimeline.cpp: (WebCore::AnimationTimeline::updateCSSTransitionsForElementAndProperty):

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@257640 268f45cc-cd09-0410-ab3c-d52691b4dbfc

9:37 AM Changeset in webkit [259118] by Russell Epstein
  • 15 edits in branches/safari-609.2.1.2-branch

Cherry-pick r256627. rdar://problem/60919944

[Web Animations] Style changes due to Web Animations should not trigger CSS Transitions
https://bugs.webkit.org/show_bug.cgi?id=207760
<rdar://problem/59458111>

Reviewed by Simon Fraser.

LayoutTests/imported/w3c:

Mark Web Platform Tests progressions.

  • web-platform-tests/web-animations/interfaces/Animatable/animate-expected.txt:
  • web-platform-tests/web-animations/interfaces/Animation/style-change-events-expected.txt:
  • web-platform-tests/web-animations/interfaces/DocumentTimeline/style-change-events-expected.txt:
  • web-platform-tests/web-animations/interfaces/KeyframeEffect/style-change-events-expected.txt:

Source/WebCore:

While we would consider the unanimated style of CSS Animations specifically when considering what the "start" style values (before-change style in spec terminology)
should be when considering whether to start a CSS Transition during style resolution, we would not consider other types of animations, specifically JS-created Web
Animations. However, Web Platform Tests specifically test whether changes made using the Web Animations API may trigger transitions, and until now they would because
the RenderStyle used to determine the before-change style was the style from the previous resolution, which would include animated values.

To fix this, we make it so that KeyframeEffect objects now keep a copy of the unanimated style used when blending animated values for the very first time. That style
is cleared each time keyframes change, which is rare, but may happen through the Web Animations API. Then in AnimationTimeline::updateCSSTransitionsForElementAndProperty(),
we look for a KeyframeEffect currently affecting the property for which we're considering starting a CSS Transition, and use its unanimated style.

If that unanimated style has not been set yet, this is because the KeyframeEffect has not had a chance to apply itself with a non-null progress. In this case, the before-change
and after-change styles should be the same in order to prevent a transition from being triggered as the unanimated style for this keyframe effect will most likely be this
after-change style, or any future style change that may happen before the keyframe effect starts blending animated values.

Finally, tracking the unanimated style at the KeyframeEffect level means we no longer to track it specifically for CSSAnimation.

  • animation/AnimationTimeline.cpp: (WebCore::keyframeEffectForElementAndProperty): (WebCore::AnimationTimeline::updateCSSTransitionsForElementAndProperty):
  • animation/AnimationTimeline.h:
  • animation/CSSAnimation.cpp: (WebCore::CSSAnimation::create): (WebCore::CSSAnimation::CSSAnimation):
  • animation/CSSAnimation.h:
  • animation/KeyframeEffect.cpp: (WebCore::KeyframeEffect::animatesProperty const): Because the backing KeyframeList object may not have been created by the first time we query a KeyframeEffect during CSS Transitions resolution, we provide a method that will check the values provided by the Web Animations API to determine whether it targets a given CSS property. (WebCore::KeyframeEffect::clearBlendingKeyframes): (WebCore::KeyframeEffect::computeDeclarativeAnimationBlendingKeyframes): (WebCore::KeyframeEffect::computeCSSAnimationBlendingKeyframes): (WebCore::KeyframeEffect::apply):
  • animation/KeyframeEffect.h: (WebCore::KeyframeEffect::unanimatedStyle const):
  • style/StyleTreeResolver.cpp: (WebCore::Style::TreeResolver::createAnimatedElementUpdate):

LayoutTests:

Mark that a couple of tests are no longer flaky.

git-svn-id: https://svn.webkit.org/repository/webkit/trunk@256627 268f45cc-cd09-0410-ab3c-d52691b4dbfc

9:37 AM Changeset in webkit [259117] by Russell Epstein
  • 1 edit in branches/safari-609.2.1.2-branch/Source/WebCore/ChangeLog

Revert "Cherry-pick r257640. rdar://problem/60260332"

This reverts commit r258426.

9:17 AM WebKitGTK/2.28.x edited by Michael Catanzaro
(diff)
9:12 AM Changeset in webkit [259116] by commit-queue@webkit.org
  • 7 edits in trunk/Source/WebCore

Move applyUserAgentIfNeeded calls to a more central place
https://bugs.webkit.org/show_bug.cgi?id=209587

Patch by Rob Buis <rbuis@igalia.com> on 2020-03-27
Reviewed by Darin Adler.

Make main resource loads stop calling applyUserAgentIfNeeded
and instead do it in the CachedResourceLoader.

  • loader/FrameLoader.cpp:

(WebCore::FrameLoader::addExtraFieldsToRequest):

  • loader/appcache/ApplicationCacheGroup.cpp:

(WebCore::ApplicationCacheGroup::createRequest):

  • loader/cache/CachedResourceLoader.cpp:

(WebCore::CachedResourceLoader::updateHTTPRequestHeaders):
(WebCore::CachedResourceLoader::requestResource):

  • loader/cache/CachedResourceLoader.h:
  • loader/cache/CachedResourceRequest.cpp:

(WebCore::CachedResourceRequest::updateReferrerAndOriginHeaders):
(WebCore::CachedResourceRequest::updateUserAgentHeader):
(WebCore::CachedResourceRequest::updateReferrerOriginAndUserAgentHeaders): Deleted.

  • loader/cache/CachedResourceRequest.h:
9:11 AM Changeset in webkit [259115] by youenn@apple.com
  • 19 edits
    1 add in trunk/Source

Filter DOMCache records in network process to reduce the number of records being sent to WebProcess
https://bugs.webkit.org/show_bug.cgi?id=209469
<rdar://problem/55207565>

Reviewed by Alex Christensen.

Source/WebCore:

Instead of retrieving all records and filtering them in WebProcess, WebProcess is now
sending filtering options to NetworkProcess.
In case of keys, ask network process to not send back any response.

Covered by existing tests.

  • Headers.cmake:
  • Modules/cache/CacheStorageConnection.h:
  • Modules/cache/DOMCache.cpp:

(WebCore::DOMCache::doMatch):
(WebCore::DOMCache::matchAll):
(WebCore::DOMCache::keys):
(WebCore::DOMCache::queryCache):
(WebCore::DOMCache::retrieveRecords): Deleted.
(WebCore::DOMCache::queryCacheWithTargetStorage): Deleted.

  • Modules/cache/DOMCache.h:
  • Modules/cache/WorkerCacheStorageConnection.cpp:

(WebCore::WorkerCacheStorageConnection::retrieveRecords):

  • Modules/cache/WorkerCacheStorageConnection.h:
  • WebCore.xcodeproj/project.pbxproj:
  • page/CacheStorageProvider.h:

Source/WebKit:

Receive new retrieve record options and make use of them to filter the records sent back to the WebProcess.
This includes filtering the records for a given requests.
This includes removing responses in case the request is made to gather all requests for Cache.keys().

  • NetworkProcess/cache/CacheStorageEngine.cpp:

(WebKit::CacheStorage::Engine::retrieveRecords):

  • NetworkProcess/cache/CacheStorageEngine.h:
  • NetworkProcess/cache/CacheStorageEngineCache.cpp:

(WebKit::CacheStorage::Cache::retrieveRecords):

  • NetworkProcess/cache/CacheStorageEngineCache.h:
  • NetworkProcess/cache/CacheStorageEngineConnection.cpp:

(WebKit::CacheStorageEngineConnection::retrieveRecords):

  • NetworkProcess/cache/CacheStorageEngineConnection.h:
  • NetworkProcess/cache/CacheStorageEngineConnection.messages.in:
  • WebProcess/Cache/WebCacheStorageConnection.cpp:

(WebKit::WebCacheStorageConnection::retrieveRecords):

  • WebProcess/Cache/WebCacheStorageConnection.h:
7:51 AM Changeset in webkit [259114] by commit-queue@webkit.org
  • 2 edits
    1 delete in trunk/JSTests

Pass hardness for test numberingSystemsForLocale-cached-... through test header
https://bugs.webkit.org/show_bug.cgi?id=209476

Patch by Paulo Matos <Paulo Matos> on 2020-03-27
Reviewed by Yusuke Suzuki.

Improvement over change r258190. Instead of creating a new test file
duplicating contents where a hardness parameter is different, pass this
through the test header using the -e flag to jsc.

  • stress/numberingSystemsForLocale-cached-strings-should-be-immortal-and-safe-for-concurrent-access.js:
  • stress/numberingSystemsForLocale-cached-strings-should-be-immortal-and-safe-for-concurrent-access_memory-limited.js: Removed.
6:20 AM WebKitGTK/2.28.x edited by magomez@igalia.com
(diff)
6:14 AM Changeset in webkit [259113] by magomez@igalia.com
  • 3 edits in trunk/Source/WebCore

[WPE] Unnecessary gl synchronization when using an OpenMAX video decoder and GLES2
https://bugs.webkit.org/show_bug.cgi?id=209647

Reviewed by Adrian Perez de Castro.

Don't perform the call to gst_gl_sync_meta_wait_cpu() when using an OpenMAX decoder,
as we don't need synchronization in that case and the internal call to glFinish()
casues an important fps drop.

  • platform/graphics/gstreamer/GStreamerCommon.h:
  • platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:

(WebCore::GstVideoFrameHolder::waitForCPUSync):
(WebCore::MediaPlayerPrivateGStreamer::createGSTPlayBin):

5:54 AM Changeset in webkit [259112] by Chris Lord
  • 22 edits in trunk/Source

Source/WebCore:
[GTK][WPE] Enable kinetic scrolling with async rendering
https://bugs.webkit.org/show_bug.cgi?id=209230

Reviewed by Žan Doberšek.

Refactor ScrollAnimationKinetic so that it no longer depends on
ScrollableArea, uses RunLoop::Timer and is responsible for tracking
the history of scroll events. This allows it to be used in
ScrollingTree*ScrollingNodeNicosia to provide kinetic scrolling when
async scrolling is enabled, on GTK and WPE.

No new tests, this just enables existing functionality in more situations.

  • page/scrolling/ScrollingTreeScrollingNode.cpp:

(WebCore::ScrollingTreeScrollingNode::scrollTo):

  • page/scrolling/ScrollingTreeScrollingNode.h:
  • page/scrolling/nicosia/ScrollingTreeFrameScrollingNodeNicosia.cpp:

(WebCore::ScrollingTreeFrameScrollingNodeNicosia::ScrollingTreeFrameScrollingNodeNicosia):
(WebCore::ScrollingTreeFrameScrollingNodeNicosia::handleWheelEvent):
(WebCore::ScrollingTreeFrameScrollingNodeNicosia::stopScrollAnimations):

  • page/scrolling/nicosia/ScrollingTreeFrameScrollingNodeNicosia.h:
  • page/scrolling/nicosia/ScrollingTreeOverflowScrollingNodeNicosia.cpp:

(WebCore::ScrollingTreeOverflowScrollingNodeNicosia::ScrollingTreeOverflowScrollingNodeNicosia):
(WebCore::ScrollingTreeOverflowScrollingNodeNicosia::handleWheelEvent):
(WebCore::ScrollingTreeOverflowScrollingNodeNicosia::stopScrollAnimations):

  • page/scrolling/nicosia/ScrollingTreeOverflowScrollingNodeNicosia.h:
  • platform/ScrollAnimationKinetic.cpp:

(WebCore::ScrollAnimationKinetic::ScrollAnimationKinetic):
(WebCore::ScrollAnimationKinetic::appendToScrollHistory):
(WebCore::ScrollAnimationKinetic::clearScrollHistory):
(WebCore::ScrollAnimationKinetic::computeVelocity):
(WebCore::ScrollAnimationKinetic::start):

  • platform/ScrollAnimationKinetic.h:
  • platform/generic/ScrollAnimatorGeneric.cpp:

(WebCore::ScrollAnimatorGeneric::ScrollAnimatorGeneric):
(WebCore::ScrollAnimatorGeneric::scrollToOffsetWithoutAnimation):
(WebCore::ScrollAnimatorGeneric::handleWheelEvent):
(WebCore::ScrollAnimatorGeneric::willEndLiveResize):
(WebCore::ScrollAnimatorGeneric::didAddVerticalScrollbar):
(WebCore::ScrollAnimatorGeneric::didAddHorizontalScrollbar):

  • platform/generic/ScrollAnimatorGeneric.h:

Source/WebKit:
[GTK][WPE] Enable kinetic scrolling with async scrolling
https://bugs.webkit.org/show_bug.cgi?id=209230

Reviewed by Žan Doberšek.

Modify WPE mousewheel event delivery so that it includes the necessary
phases needed to infer press/release times and allow for kinetic
scrolling.

  • Shared/NativeWebWheelEvent.h:
  • Shared/WebEvent.h:
  • Shared/WebWheelEvent.cpp:

(WebKit::WebWheelEvent::encode const):
(WebKit::WebWheelEvent::decode):

  • Shared/libwpe/NativeWebWheelEventLibWPE.cpp:

(WebKit::NativeWebWheelEvent::NativeWebWheelEvent):

  • Shared/libwpe/WebEventFactory.cpp:

(WebKit::WebEventFactory::createWebWheelEvent):

  • Shared/libwpe/WebEventFactory.h:
  • UIProcess/API/wpe/PageClientImpl.cpp:

(WebKit::PageClientImpl::doneWithTouchEvent):

  • UIProcess/API/wpe/ScrollGestureController.cpp:

(WebKit::ScrollGestureController::handleEvent):

  • UIProcess/API/wpe/ScrollGestureController.h:

(WebKit::ScrollGestureController::phase):

  • UIProcess/API/wpe/WPEView.cpp:

(WKWPE::m_backend):

3:36 AM Changeset in webkit [259111] by youenn@apple.com
  • 361 edits
    8 adds
    20 deletes in trunk/Source/ThirdParty/libwebrtc

Bump boringssl version to M82
https://bugs.webkit.org/show_bug.cgi?id=209538

Reviewed by Eric Carlson.

  • CMakeLists.txt:
  • Source/third_party/boringssl: Updated.
  • WebKit/0001-Tweaking-boringssl-include-of-internal.h.patch: Removed.
  • libwebrtc.xcodeproj/project.pbxproj:
2:53 AM Changeset in webkit [259110] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Update Chrome and Firefox versions in user agent quirks
https://bugs.webkit.org/show_bug.cgi?id=209631

Patch by Michael Catanzaro <Michael Catanzaro> on 2020-03-27
Reviewed by Carlos Garcia Campos.

  • platform/UserAgentQuirks.cpp:

(WebCore::UserAgentQuirks::stringForQuirk):

2:53 AM Changeset in webkit [259109] by Philippe Normand
  • 2 edits in trunk/Tools

[Flatpak SDK] Allow passing gst-build Meson options
https://bugs.webkit.org/show_bug.cgi?id=209608

Reviewed by Žan Doberšek.

Add support for the GST_BUILD_ARGS env var storing gst-build Meson options.

  • flatpak/flatpakutils.py:

(WebkitFlatpak.setup_gstbuild):

2:52 AM Changeset in webkit [259108] by Philippe Normand
  • 2 edits in trunk/Tools

[Flatpak SDK] Warn when gst-build support was requested but GST_BUILD_PATH is not set
https://bugs.webkit.org/show_bug.cgi?id=209599

Reviewed by Žan Doberšek.

  • flatpak/flatpakutils.py:

(WebkitFlatpak.setup_gstbuild):
(WebkitFlatpak.setup_dev_env):

Note: See TracTimeline for information about the timeline view.