author | Cosmin Sabou <csabou@mozilla.com> |
Fri, 19 Oct 2018 00:57:18 +0300 | |
changeset 497749 | 9ae0b64741cbf08fcd0ee6b031befd93fa10d184 |
parent 497747 | 35b493a84e94f453975520a95b85145344d2fe70 (current diff) |
parent 497748 | c0c288dc283e315982949e5d6565520f5872ab12 (diff) |
child 497750 | 89663382dd1e73388c69f7764b44baa9e20a33c2 |
push id | 10002 |
push user | archaeopteryx@coole-files.de |
push date | Fri, 19 Oct 2018 23:09:29 +0000 |
treeherder | mozilla-beta@01378c910610 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | merge |
milestone | 64.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/browser/base/content/popup-notifications.inc +++ b/browser/base/content/popup-notifications.inc @@ -58,17 +58,17 @@ <textbox id="password-notification-password" type="password" show-content=""/> <checkbox id="password-notification-visibilityToggle" hidden="true"/> </popupnotificationcontent> </popupnotification> <popupnotification id="addon-progress-notification" hidden="true"> <popupnotificationcontent orient="vertical"> - <progressmeter id="addon-progress-notification-progressmeter"/> + <html:progress id="addon-progress-notification-progressmeter" max="100"/> <label id="addon-progress-notification-progresstext" crop="end"/> </popupnotificationcontent> </popupnotification> <popupnotification id="addon-install-confirmation-notification" hidden="true"> <popupnotificationcontent id="addon-install-confirmation-content" orient="vertical"/> </popupnotification>
--- a/browser/base/content/urlbarBindings.xml +++ b/browser/base/content/urlbarBindings.xml @@ -2756,19 +2756,18 @@ file, You can obtain one at http://mozil ]]></body> </method> <method name="setProgress"> <parameter name="aProgress"/> <parameter name="aMaxProgress"/> <body><![CDATA[ if (aMaxProgress == -1) { - this.progressmeter.setAttribute("mode", "undetermined"); + this.progressmeter.removeAttribute("value"); } else { - this.progressmeter.setAttribute("mode", "determined"); this.progressmeter.setAttribute("value", (aProgress * 100) / aMaxProgress); } let now = Date.now(); if (!this.notification.lastUpdate) { this.notification.lastUpdate = now; this.notification.lastProgress = aProgress; @@ -2828,17 +2827,17 @@ file, You can obtain one at http://mozil if (maxProgress >= 0) maxProgress += aInstall.maxProgress; if (aInstall.state < AddonManager.STATE_DOWNLOADED) downloadingCount++; }); if (downloadingCount == 0) { this.destroy(); - this.progressmeter.setAttribute("mode", "undetermined"); + this.progressmeter.removeAttribute("value"); let status = gNavigatorBundle.getString("addonDownloadVerifying"); this.progresstext.setAttribute("value", status); this.progresstext.setAttribute("tooltiptext", status); } else { this.setProgress(progress, maxProgress); } ]]></body> </method>
--- a/browser/components/customizableui/content/panelUI.inc.xul +++ b/browser/components/customizableui/content/panelUI.inc.xul @@ -628,16 +628,20 @@ </vbox> <button id="PanelUI-panic-view-button" label="&panicButton.view.forgetButton;"/> </vbox> </panelview> <panelview id="appMenu-moreView" title="&moreMenu.label;" class="PanelUI-subView"> <vbox class="panel-subview-body"> + <toolbarbutton id="appMenu-taskmanager-button" + class="subviewbutton subviewbutton-iconic" + label="&taskManagerCmd.label;" + oncommand="switchToTabHavingURI('about:performance', true)"/> <toolbarbutton id="appMenu-characterencoding-button" class="subviewbutton subviewbutton-nav" label="&charsetMenu2.label;" closemenu="none" oncommand="PanelUI.showSubView('PanelUI-characterEncodingView', this)"/> <toolbarbutton id="appMenu-workoffline-button" class="subviewbutton" label="&goOfflineCmd.label;"
--- a/browser/components/downloads/DownloadsViewUI.jsm +++ b/browser/components/downloads/DownloadsViewUI.jsm @@ -9,27 +9,28 @@ "use strict"; var EXPORTED_SYMBOLS = [ "DownloadsViewUI", ]; ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm"); -ChromeUtils.import("resource://gre/modules/AppConstants.jsm"); XPCOMUtils.defineLazyModuleGetters(this, { BrowserWindowTracker: "resource:///modules/BrowserWindowTracker.jsm", Downloads: "resource://gre/modules/Downloads.jsm", DownloadUtils: "resource://gre/modules/DownloadUtils.jsm", DownloadsCommon: "resource:///modules/DownloadsCommon.jsm", FileUtils: "resource://gre/modules/FileUtils.jsm", OS: "resource://gre/modules/osfile.jsm", }); +const HTML_NS = "http://www.w3.org/1999/xhtml"; + var gDownloadElementButtons = { cancel: { commandName: "downloadsCmd_cancel", l10nId: "download-cancel", descriptionL10nId: "download-cancel-description", iconClass: "downloadIconCancel", }, retry: { @@ -172,17 +173,16 @@ this.DownloadsViewUI.DownloadElementShel downloadListItemFragment = MozXULElement.parseXULToFragment(` <hbox class="downloadMainArea" flex="1" align="center"> <stack> <image class="downloadTypeIcon" validate="always"/> <image class="downloadBlockedBadge" /> </stack> <vbox class="downloadContainer" flex="1" pack="center"> <description class="downloadTarget" crop="center"/> - <progressmeter class="downloadProgress" min="0" max="100"/> <description class="downloadDetails downloadDetailsNormal" crop="end"/> <description class="downloadDetails downloadDetailsHover" crop="end"/> <description class="downloadDetails downloadDetailsButtonHover" crop="end"/> </vbox> </hbox> @@ -196,24 +196,30 @@ this.DownloadsViewUI.DownloadElementShel this.element.setAttribute("orient", "horizontal"); this.element.setAttribute("onclick", "DownloadsView.onDownloadClick(event);"); this.element.appendChild(document.importNode(downloadListItemFragment, true)); for (let [propertyName, selector] of [ ["_downloadTypeIcon", ".downloadTypeIcon"], ["_downloadTarget", ".downloadTarget"], - ["_downloadProgress", ".downloadProgress"], ["_downloadDetailsNormal", ".downloadDetailsNormal"], ["_downloadDetailsHover", ".downloadDetailsHover"], ["_downloadDetailsButtonHover", ".downloadDetailsButtonHover"], ["_downloadButton", ".downloadButton"], ]) { this[propertyName] = this.element.querySelector(selector); } + + // HTML elements can be created directly without using parseXULToFragment. + let progress = this._downloadProgress = + document.createElementNS(HTML_NS, "progress"); + progress.className = "downloadProgress"; + progress.setAttribute("max", "100"); + this._downloadTarget.insertAdjacentElement("afterend", progress); }, /** * Returns a string from the downloads stringbundleset, which contains legacy * strings that are loaded from DTD files instead of properties files. This * won't be necessary once localization is converted to Fluent (bug 1452637). */ string(l10nId) { @@ -265,38 +271,22 @@ this.DownloadsViewUI.DownloadElementShel * @param mode * Either "normal" or "undetermined". * @param value * Percentage of the progress bar to display, from 0 to 100. * @param paused * True to display the progress bar style for paused downloads. */ showProgress(mode, value, paused) { - // The "undetermined" mode of the progressmeter is implemented with a - // different element structure, and with support from platform code as well. - // On Linux only, this mode isn't compatible with the custom styling that we - // apply separately with the "progress-undetermined" attribute. - this._downloadProgress.setAttribute("mode", - AppConstants.platform == "linux" ? "normal" : mode); if (mode == "undetermined") { - this._downloadProgress.setAttribute("progress-undetermined", "true"); + this._downloadProgress.removeAttribute("value"); } else { - this._downloadProgress.removeAttribute("progress-undetermined"); + this._downloadProgress.setAttribute("value", value); } - this._downloadProgress.setAttribute("value", value); - if (paused) { - this._downloadProgress.setAttribute("paused", "true"); - } else { - this._downloadProgress.removeAttribute("paused"); - } - - // Dispatch the ValueChange event for accessibility. - let event = this.element.ownerDocument.createEvent("Events"); - event.initEvent("ValueChange", true, true); - this._downloadProgress.dispatchEvent(event); + this._downloadProgress.toggleAttribute("paused", !!paused); }, /** * Updates the full status line. * * @param status * Status line of the Downloads Panel or the Downloads View. * @param hoverStatus
--- a/browser/components/downloads/content/downloadsPanel.inc.xul +++ b/browser/components/downloads/content/downloadsPanel.inc.xul @@ -123,21 +123,19 @@ orient="horizontal" onkeydown="DownloadsSummary.onKeyDown(event);" onclick="DownloadsSummary.onClick(event);"> <image class="downloadTypeIcon" /> <vbox pack="center" flex="1" class="downloadContainer"> <description id="downloadsSummaryDescription"/> - <progressmeter id="downloadsSummaryProgress" + <html:progress id="downloadsSummaryProgress" class="downloadProgress" - min="0" - max="100" - mode="normal" /> + max="100"/> <description id="downloadsSummaryDetails" crop="end"/> </vbox> </hbox> <hbox id="downloadsFooterButtons"> <button id="downloadsHistory" class="downloadsPanelFooterButton" label="&downloadsHistory.label;"
new file mode 100644 --- /dev/null +++ b/browser/extensions/webcompat/aboutConfigPrefs.js @@ -0,0 +1,46 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +"use strict"; + +/* global ExtensionAPI, ExtensionCommon */ + +ChromeUtils.import("resource://gre/modules/Services.jsm"); + +this.aboutConfigPrefs = class extends ExtensionAPI { + getAPI(context) { + const EventManager = ExtensionCommon.EventManager; + const extensionIDBase = context.extension.id.split("@")[0]; + const extensionPrefNameBase = `extensions.${extensionIDBase}.`; + + return { + aboutConfigPrefs: { + onPrefChange: new EventManager({ + context, + name: "aboutConfigPrefs.onUAOverridesPrefChange", + register: (fire, name) => { + const prefName = `${extensionPrefNameBase}${name}`; + const callback = () => { + fire.async(name).catch(() => {}); // ignore Message Manager disconnects + }; + Services.prefs.addObserver(prefName, callback); + return () => { + Services.prefs.removeObserver(prefName, callback); + }; + }, + }).api(), + async getPref(name) { + try { + return Services.prefs.getBoolPref(`${extensionPrefNameBase}${name}`); + } catch (_) { + return undefined; + } + }, + async setPref(name, value) { + Services.prefs.setBoolPref(`${extensionPrefNameBase}${name}`, value); + }, + }, + }; + } +};
new file mode 100644 --- /dev/null +++ b/browser/extensions/webcompat/aboutConfigPrefs.json @@ -0,0 +1,53 @@ +[ + { + "namespace": "aboutConfigPrefs", + "description": "experimental API extension to allow access to about:config preferences", + "events": [ + { + "name": "onPrefChange", + "type": "function", + "parameters": [{ + "name": "name", + "type": "string", + "description": "The preference which changed" + }], + "extraParameters": [{ + "name": "name", + "type": "string", + "description": "The preference to monitor" + }] + } + ], + "functions": [ + { + "name": "getPref", + "type": "function", + "description": "Get a preference's value", + "parameters": [{ + "name": "name", + "type": "string", + "description": "The preference name" + }], + "async": true + }, + { + "name": "setPref", + "type": "function", + "description": "Set a preference's value", + "parameters": [ + { + "name": "name", + "type": "string", + "description": "The preference name" + }, + { + "name": "value", + "type": "boolean", + "description": "The new value" + } + ], + "async": true + } + ] + } +]
deleted file mode 100644 --- a/browser/extensions/webcompat/bootstrap.js +++ /dev/null @@ -1,116 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -ChromeUtils.import("resource://gre/modules/Services.jsm"); - -const PREF_BRANCH = "extensions.webcompat."; -const PREF_DEFAULTS = { - perform_injections: true, - perform_ua_overrides: true, -}; - -const INJECTIONS_ENABLE_PREF_NAME = "extensions.webcompat.perform_injections"; - -const BROWSER_STARTUP_FINISHED_TOPIC = "browser-delayed-startup-finished"; - -const UA_OVERRIDES_INIT_TOPIC = "useragentoverrides-initialized"; -const UA_ENABLE_PREF_NAME = "extensions.webcompat.perform_ua_overrides"; - -ChromeUtils.defineModuleGetter(this, "UAOverrider", "chrome://webcompat/content/lib/ua_overrider.jsm"); -ChromeUtils.defineModuleGetter(this, "UAOverrides", "chrome://webcompat/content/data/ua_overrides.jsm"); - -let overrider; -let webextensionPort; - -function InjectionsEnablePrefObserver() { - let isEnabled = Services.prefs.getBoolPref(INJECTIONS_ENABLE_PREF_NAME); - webextensionPort.postMessage({ - type: "injection-pref-changed", - prefState: isEnabled, - }); -} - -function UAEnablePrefObserver() { - let isEnabled = Services.prefs.getBoolPref(UA_ENABLE_PREF_NAME); - overrider.setShouldOverride(isEnabled); -} - -function setDefaultPrefs() { - const branch = Services.prefs.getDefaultBranch(PREF_BRANCH); - for (const [key, val] of Object.entries(PREF_DEFAULTS)) { - // If someone beat us to setting a default, don't overwrite it. - if (branch.getPrefType(key) !== branch.PREF_INVALID) { - continue; - } - - switch (typeof val) { - case "boolean": - branch.setBoolPref(key, val); - break; - case "number": - branch.setIntPref(key, val); - break; - case "string": - branch.setCharPref(key, val); - break; - } - } -} - -this.install = function() {}; -this.uninstall = function() {}; - -this.startup = function({webExtension}) { - setDefaultPrefs(); - - // Intentionally reset the preference on every browser restart to avoid site - // breakage by accidentally toggled preferences or by leaving it off after - // debugging a site. - Services.prefs.clearUserPref(INJECTIONS_ENABLE_PREF_NAME); - Services.prefs.addObserver(INJECTIONS_ENABLE_PREF_NAME, InjectionsEnablePrefObserver); - - Services.prefs.clearUserPref(UA_ENABLE_PREF_NAME); - Services.prefs.addObserver(UA_ENABLE_PREF_NAME, UAEnablePrefObserver); - - // Listen to the useragentoverrides-initialized notification we get and - // initialize our overrider there. This is done to avoid slowing down the - // apparent startup process, since we avoid loading anything before the first - // window is visible to the user. See bug 1371442 for details. - let uaStartupObserver = { - observe(aSubject, aTopic, aData) { - if (aTopic !== UA_OVERRIDES_INIT_TOPIC) { - return; - } - - Services.obs.removeObserver(this, UA_OVERRIDES_INIT_TOPIC); - overrider = new UAOverrider(UAOverrides); - overrider.init(); - }, - }; - Services.obs.addObserver(uaStartupObserver, UA_OVERRIDES_INIT_TOPIC); - - // Observe browser-delayed-startup-finished and only initialize our embedded - // WebExtension after that. Otherwise, we'd try to initialize as soon as the - // browser starts up, which adds a heavy startup penalty. - let appStartupObserver = { - observe(aSubject, aTopic, aData) { - webExtension.startup().then((api) => { - api.browser.runtime.onConnect.addListener((port) => { - webextensionPort = port; - }); - - return Promise.resolve(); - }).catch((ex) => { - console.error(ex); - }); - Services.obs.removeObserver(this, BROWSER_STARTUP_FINISHED_TOPIC); - }, - }; - Services.obs.addObserver(appStartupObserver, BROWSER_STARTUP_FINISHED_TOPIC); -}; - -this.shutdown = function() { - Services.prefs.removeObserver(INJECTIONS_ENABLE_PREF_NAME, InjectionsEnablePrefObserver); - Services.prefs.removeObserver(UA_ENABLE_PREF_NAME, UAEnablePrefObserver); -};
deleted file mode 100644 --- a/browser/extensions/webcompat/content/data/ua_overrides.jsm +++ /dev/null @@ -1,65 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -/** - * For detailed information on our policies, and a documention on this format - * and its possibilites, please check the Mozilla-Wiki at - * - * https://wiki.mozilla.org/Compatibility/Go_Faster_Addon/Override_Policies_and_Workflows#User_Agent_overrides - */ -const UAOverrides = [ - - /* - * This is a dummy override that applies a Chrome UA to a dummy site that - * blocks all browsers but Chrome. - * - * This was only put in place to allow QA to test this system addon on an - * actual site, since we were not able to find a proper override in time. - */ - { - baseDomain: "schub.io", - applications: ["firefox", "fennec"], - uriMatcher: (uri) => uri.includes("webcompat-addon-testcases.schub.io"), - uaTransformer: (originalUA) => { - let prefix = originalUA.substr(0, originalUA.indexOf(")") + 1); - return `${prefix} AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36`; - }, - }, - - /* - * Bug 1480710 - m.imgur.com - Build UA override - * WebCompat issue #13154 - https://webcompat.com/issues/13154 - * - * imgur returns a 404 for requests to CSS and JS file if requested with a Fennec - * User Agent. By removing the Fennec identifies and adding Chrome Mobile's, we - * receive the correct CSS and JS files. - */ - { - baseDomain: "imgur.com", - applications: ["fennec"], - uriMatcher: (uri) => uri.includes("m.imgur.com"), - uaTransformer: (originalUA) => { - let prefix = originalUA.substr(0, originalUA.indexOf(")") + 1); - return prefix + " AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.85 Mobile Safari/537.36"; - }, - }, - - /* - * Bug 755590 - sites.google.com - top bar doesn't show up in Firefox for Android - * - * Google Sites does show a different top bar template based on the User Agent. - * For Fennec, this results in a broken top bar. Appending Chrome and Mobile Safari - * identifiers to the UA results in a correct rendering. - */ - { - baseDomain: "google.com", - applications: ["fennec"], - uriMatcher: (uri) => uri.includes("sites.google.com"), - uaTransformer: (originalUA) => { - return originalUA + " Chrome/68.0.3440.85 Mobile Safari/537.366"; - }, - }, -]; - -var EXPORTED_SYMBOLS = ["UAOverrides"]; /* exported UAOverrides */
deleted file mode 100644 --- a/browser/extensions/webcompat/content/lib/ua_overrider.jsm +++ /dev/null @@ -1,126 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -ChromeUtils.defineModuleGetter(this, "Services", "resource://gre/modules/Services.jsm"); -ChromeUtils.defineModuleGetter(this, "UserAgentOverrides", "resource://gre/modules/UserAgentOverrides.jsm"); - -class UAOverrider { - constructor(overrides) { - this._overrides = {}; - this._shouldOverride = true; - - this.initOverrides(overrides); - } - - initOverrides(overrides) { - // on xpcshell tests, there is no implementation for nsIXULAppInfo, so this - // might fail there. To have all of our test cases running at all times, - // assume they are on Desktop for now. - let currentApplication = "firefox"; - try { - currentApplication = Services.appinfo.name.toLowerCase(); - } catch (ex) { - console.warn("Getting appinfo.name failed, assuming we run on Desktop.", ex); - } - - for (let override of overrides) { - // Firefox for Desktop is the default application for all overrides. - if (!override.applications) { - override.applications = ["firefox"]; - } - - // If the current application is not targeted by the override in question, - // we can skip adding the override to our checks entirely. - if (!override.applications.includes(currentApplication)) { - continue; - } - - if (!this._overrides[override.baseDomain]) { - this._overrides[override.baseDomain] = []; - } - - if (!override.uriMatcher) { - override.uriMatcher = () => true; - } - - this._overrides[override.baseDomain].push(override); - } - } - - /** - * Used for disabling overrides when the pref has been flipped to false. - * - * Since we no longer use our own event handlers, we check this bool in our - * override callback and simply return early if we are not supposed to do - * anything. - */ - setShouldOverride(newState) { - this._shouldOverride = newState; - } - - init() { - UserAgentOverrides.addComplexOverride(this.overrideCallback.bind(this)); - } - - overrideCallback(channel, defaultUA) { - if (!this._shouldOverride) { - return false; - } - - let uaOverride = this.lookupUAOverride(channel.URI, defaultUA); - if (uaOverride) { - console.log("The user agent has been overridden for compatibility reasons."); - return uaOverride; - } - - return false; - } - - /** - * Try to use the eTLDService to get the base domain (will return example.com - * for http://foo.bar.example.com/foo/bar). - * - * However, the eTLDService is a bit picky and throws whenever we pass a - * blank host name or an IP into it, see bug 1337785. Since we do not plan on - * override UAs for such cases, we simply catch everything and return false. - */ - getBaseDomainFromURI(uri) { - try { - return Services.eTLD.getBaseDomain(uri); - } catch (_) { - return false; - } - } - - /** - * This function returns a User Agent based on the URI passed into. All - * override rules are defined in data/ua_overrides.jsm and the required format - * is explained there. - * - * Since it is expected and designed to have more than one override per base - * domain, we have to loop over this._overrides[baseDomain], which contains - * all available overrides. - * - * If the uriMatcher function returns true, the uaTransformer function gets - * called and its result will be used as the Use Agent for the current - * request. - * - * If there are more than one possible overrides, that is if two or more - * uriMatchers would return true, the first one gets applied. - */ - lookupUAOverride(uri, defaultUA) { - let baseDomain = this.getBaseDomainFromURI(uri); - if (baseDomain && this._overrides[baseDomain]) { - for (let uaOverride of this._overrides[baseDomain]) { - if (uaOverride.uriMatcher(uri.specIgnoringRef)) { - return uaOverride.uaTransformer(defaultUA); - } - } - } - - return false; - } -} - -var EXPORTED_SYMBOLS = ["UAOverrider"]; /* exported UAOverrider */
new file mode 100644 --- /dev/null +++ b/browser/extensions/webcompat/injections.js @@ -0,0 +1,102 @@ +/** + * For detailed information on our policies, and a documention on this format + * and its possibilites, please check the Mozilla-Wiki at + * + * https://wiki.mozilla.org/Compatibility/Go_Faster_Addon/Override_Policies_and_Workflows#User_Agent_overrides + */ +const contentScripts = { + universal: [ + { + matches: ["*://webcompat-addon-testcases.schub.io/*"], + css: [{file: "injections/css/bug0000000-dummy-css-injection.css"}], + js: [{file: "injections/js/bug0000000-dummy-js-injection.js"}], + runAt: "document_start", + }, + ], + desktop: [ + { + matches: ["https://ib.absa.co.za/*"], + js: [{file: "injections/js/bug1452707-window.controllers-shim-ib.absa.co.za.js"}], + runAt: "document_start", + }, + { + matches: ["http://histography.io/*"], + js: [{file: "injections/js/bug1457335-histography.io-ua-change.js"}], + runAt: "document_start", + }, + { + matches: ["*://*.bankofamerica.com/*"], + js: [{file: "injections/js/bug1472075-bankofamerica.com-ua-change.js"}], + runAt: "document_start", + }, + { + matches: ["http://202.166.205.141/bbvrs/*"], + js: [{file: "injections/js/bug1472081-election.gov.np-window.sidebar-shim.js"}], + runAt: "document_start", + allFrames: true, + }, + { + matches: ["*://portalminasnet.com/*"], + js: [{file: "injections/js/bug1482066-portalminasnet.com-window.sidebar-shim.js"}], + runAt: "document_start", + allFrames: true, + }, + ], + android: [], +}; + +/* globals browser */ + +let port = browser.runtime.connect(); +let registeredContentScripts = []; + +async function registerContentScripts() { + let platform = "desktop"; + let platformInfo = await browser.runtime.getPlatformInfo(); + if (platformInfo.os == "android") { + platform = "android"; + } + + let targetContentScripts = contentScripts.universal.concat(contentScripts[platform]); + targetContentScripts.forEach(async (contentScript) => { + try { + let handle = await browser.contentScripts.register(contentScript); + registeredContentScripts.push(handle); + } catch (ex) { + console.error("Registering WebCompat GoFaster content scripts failed: ", ex); + } + }); +} + +function unregisterContentScripts() { + registeredContentScripts.forEach((contentScript) => { + contentScript.unregister(); + }); +} + +port.onMessage.addListener((message) => { + switch (message.type) { + case "injection-pref-changed": + if (message.prefState) { + registerContentScripts(); + } else { + unregisterContentScripts(); + } + break; + } +}); + +const INJECTION_PREF = "perform_injections"; +function checkInjectionPref() { + browser.aboutConfigPrefs.getPref(INJECTION_PREF).then(value => { + if (value === undefined) { + browser.aboutConfigPrefs.setPref(INJECTION_PREF, true); + } else if (value === false) { + unregisterContentScripts(); + } else { + registerContentScripts(); + } + }); +} +browser.aboutConfigPrefs.onPrefChange.addListener(checkInjectionPref, INJECTION_PREF); +checkInjectionPref();
rename from browser/extensions/webcompat/webextension/injections/css/bug0000000-dummy-css-injection.css rename to browser/extensions/webcompat/injections/css/bug0000000-dummy-css-injection.css
rename from browser/extensions/webcompat/webextension/injections/js/bug0000000-dummy-js-injection.js rename to browser/extensions/webcompat/injections/js/bug0000000-dummy-js-injection.js
rename from browser/extensions/webcompat/webextension/injections/js/bug1452707-window.controllers-shim-ib.absa.co.za.js rename to browser/extensions/webcompat/injections/js/bug1452707-window.controllers-shim-ib.absa.co.za.js
rename from browser/extensions/webcompat/webextension/injections/js/bug1457335-histography.io-ua-change.js rename to browser/extensions/webcompat/injections/js/bug1457335-histography.io-ua-change.js
rename from browser/extensions/webcompat/webextension/injections/js/bug1472075-bankofamerica.com-ua-change.js rename to browser/extensions/webcompat/injections/js/bug1472075-bankofamerica.com-ua-change.js
rename from browser/extensions/webcompat/webextension/injections/js/bug1472081-election.gov.np-window.sidebar-shim.js rename to browser/extensions/webcompat/injections/js/bug1472081-election.gov.np-window.sidebar-shim.js
rename from browser/extensions/webcompat/webextension/injections/js/bug1482066-portalminasnet.com-window.sidebar-shim.js rename to browser/extensions/webcompat/injections/js/bug1482066-portalminasnet.com-window.sidebar-shim.js
deleted file mode 100644 --- a/browser/extensions/webcompat/install.rdf.in +++ /dev/null @@ -1,41 +0,0 @@ -<?xml version="1.0"?> -<!-- This Source Code Form is subject to the terms of the Mozilla Public - - License, v. 2.0. If a copy of the MPL was not distributed with this - - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> - -#filter substitution - -<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:em="http://www.mozilla.org/2004/em-rdf#"> - - <Description about="urn:mozilla:install-manifest"> - <em:id>webcompat@mozilla.org</em:id> - <em:version>2.0.1</em:version> - <em:type>2</em:type> - <em:bootstrap>true</em:bootstrap> - <em:multiprocessCompatible>true</em:multiprocessCompatible> - <em:hasEmbeddedWebExtension>true</em:hasEmbeddedWebExtension> - - <!-- Firefox Desktop --> - <em:targetApplication> - <Description> - <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> - <em:minVersion>@MOZ_APP_VERSION@</em:minVersion> - <em:maxVersion>@MOZ_APP_MAXVERSION@</em:maxVersion> - </Description> - </em:targetApplication> - - <!-- Firefox for Android --> - <em:targetApplication> - <Description> - <em:id>{aa3c5121-dab2-40e2-81ca-7ea25febc110}</em:id> - <em:minVersion>@MOZ_APP_VERSION@</em:minVersion> - <em:maxVersion>@MOZ_APP_MAXVERSION@</em:maxVersion> - </Description> - </em:targetApplication> - - <!-- Front End MetaData --> - <em:name>Web Compat</em:name> - <em:description>Urgent post-release fixes for web compatibility.</em:description> - </Description> -</RDF>
deleted file mode 100644 --- a/browser/extensions/webcompat/jar.mn +++ /dev/null @@ -1,3 +0,0 @@ -[features/webcompat@mozilla.org] chrome.jar: -% content webcompat %content/ - content/ (content/*)
new file mode 100644 --- /dev/null +++ b/browser/extensions/webcompat/manifest.json @@ -0,0 +1,37 @@ +{ + "manifest_version": 2, + "name": "Web Compat", + "description": "Urgent post-release fixes for web compatibility.", + "version": "3.0.0", + + "applications": { + "gecko": { + "id": "webcompat@mozilla.org", + "strict_min_version": "59.0b5" + } + }, + + "experiment_apis": { + "aboutConfigPrefs": { + "schema": "aboutConfigPrefs.json", + "parent": { + "scopes": ["addon_parent"], + "script": "aboutConfigPrefs.js", + "paths": [["aboutConfigPrefs"]] + } + } + }, + + "permissions": [ + "webRequest", + "webRequestBlocking", + "<all_urls>" + ], + + "background": { + "scripts": [ + "injections.js", + "ua_overrides.js" + ] + } +}
--- a/browser/extensions/webcompat/moz.build +++ b/browser/extensions/webcompat/moz.build @@ -3,38 +3,30 @@ # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. DEFINES['MOZ_APP_VERSION'] = CONFIG['MOZ_APP_VERSION'] DEFINES['MOZ_APP_MAXVERSION'] = CONFIG['MOZ_APP_MAXVERSION'] FINAL_TARGET_FILES.features['webcompat@mozilla.org'] += [ - 'bootstrap.js' -] - -FINAL_TARGET_FILES.features['webcompat@mozilla.org']['webextension'] += [ - 'webextension/background.js', - 'webextension/manifest.json' -] - -FINAL_TARGET_FILES.features['webcompat@mozilla.org']['webextension']['injections']['css'] += [ - 'webextension/injections/css/bug0000000-dummy-css-injection.css' + 'aboutConfigPrefs.js', + 'aboutConfigPrefs.json', + 'injections.js', + 'manifest.json', + 'ua_overrides.js' ] -FINAL_TARGET_FILES.features['webcompat@mozilla.org']['webextension']['injections']['js'] += [ - 'webextension/injections/js/bug0000000-dummy-js-injection.js', - 'webextension/injections/js/bug1452707-window.controllers-shim-ib.absa.co.za.js', - 'webextension/injections/js/bug1457335-histography.io-ua-change.js', - 'webextension/injections/js/bug1472075-bankofamerica.com-ua-change.js', - 'webextension/injections/js/bug1472081-election.gov.np-window.sidebar-shim.js', - 'webextension/injections/js/bug1482066-portalminasnet.com-window.sidebar-shim.js' +FINAL_TARGET_FILES.features['webcompat@mozilla.org']['injections']['css'] += [ + 'injections/css/bug0000000-dummy-css-injection.css' ] -FINAL_TARGET_PP_FILES.features['webcompat@mozilla.org'] += [ - 'install.rdf.in' +FINAL_TARGET_FILES.features['webcompat@mozilla.org']['injections']['js'] += [ + 'injections/js/bug0000000-dummy-js-injection.js', + 'injections/js/bug1452707-window.controllers-shim-ib.absa.co.za.js', + 'injections/js/bug1457335-histography.io-ua-change.js', + 'injections/js/bug1472075-bankofamerica.com-ua-change.js', + 'injections/js/bug1472081-election.gov.np-window.sidebar-shim.js', + 'injections/js/bug1482066-portalminasnet.com-window.sidebar-shim.js' ] -BROWSER_CHROME_MANIFESTS += ['test/browser.ini'] -JAR_MANIFESTS += ['jar.mn'] - with Files('**'): BUG_COMPONENT = ('Web Compatibility Tools', 'Go Faster')
deleted file mode 100644 --- a/browser/extensions/webcompat/test/.eslintrc.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; - -module.exports = { - "extends": [ - "plugin:mozilla/browser-test" - ] -};
deleted file mode 100644 --- a/browser/extensions/webcompat/test/browser.ini +++ /dev/null @@ -1,4 +0,0 @@ -[DEFAULT] - -[browser_check_installed.js] -[browser_overrider.js]
deleted file mode 100644 --- a/browser/extensions/webcompat/test/browser_check_installed.js +++ /dev/null @@ -1,15 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -"use strict"; - -add_task(async function installed() { - let addon = await AddonManager.getAddonByID("webcompat@mozilla.org"); - isnot(addon, null, "Webcompat addon should exist"); - is(addon.name, "Web Compat"); - ok(addon.isCompatible, "Webcompat addon is compatible with Firefox"); - ok(!addon.appDisabled, "Webcompat addon is not app disabled"); - ok(addon.isActive, "Webcompat addon is active"); - is(addon.type, "extension", "Webcompat addon is type extension"); -});
deleted file mode 100644 --- a/browser/extensions/webcompat/test/browser_overrider.js +++ /dev/null @@ -1,38 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -"use strict"; - -ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm"); -ChromeUtils.defineModuleGetter(this, "UAOverrider", "chrome://webcompat/content/lib/ua_overrider.jsm"); -XPCOMUtils.defineLazyServiceGetter(this, "IOService", "@mozilla.org/network/io-service;1", "nsIIOService"); - -function getnsIURI(uri) { - return IOService.newURI(uri, "utf-8"); -} - -add_task(function test() { - let overrider = new UAOverrider([ - { - baseDomain: "example.org", - uaTransformer: () => "Test UA", - }, - ]); - - let finalUA = overrider.lookupUAOverride(getnsIURI("http://www.example.org/foobar/")); - is(finalUA, "Test UA", "Overrides the UA without a matcher function"); -}); - -add_task(function test() { - let overrider = new UAOverrider([ - { - baseDomain: "example.org", - uriMatcher: () => false, - uaTransformer: () => "Test UA", - }, - ]); - - let finalUA = overrider.lookupUAOverride(getnsIURI("http://www.example.org/foobar/")); - isnot(finalUA, "Test UA", "Does not override the UA with the matcher returning false"); -});
new file mode 100644 --- /dev/null +++ b/browser/extensions/webcompat/ua_overrides.js @@ -0,0 +1,129 @@ +/** + * For detailed information on our policies, and a documention on this format + * and its possibilites, please check the Mozilla-Wiki at + * + * https://wiki.mozilla.org/Compatibility/Go_Faster_Addon/Override_Policies_and_Workflows#User_Agent_overrides + */ +const UAOverrides = { + universal: [ + /* + * This is a dummy override that applies a Chrome UA to a dummy site that + * blocks all browsers but Chrome. + * + * This was only put in place to allow QA to test this system addon on an + * actual site, since we were not able to find a proper override in time. + */ + { + matches: ["*://webcompat-addon-testcases.schub.io/*"], + uaTransformer: (originalUA) => { + let prefix = originalUA.substr(0, originalUA.indexOf(")") + 1); + return `${prefix} AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36`; + }, + }, + ], + desktop: [], + android: [ + /* + * Bug 1480710 - m.imgur.com - Build UA override + * WebCompat issue #13154 - https://webcompat.com/issues/13154 + * + * imgur returns a 404 for requests to CSS and JS file if requested with a Fennec + * User Agent. By removing the Fennec identifies and adding Chrome Mobile's, we + * receive the correct CSS and JS files. + */ + { + matches: ["*://m.imgur.com/*"], + uaTransformer: (originalUA) => { + let prefix = originalUA.substr(0, originalUA.indexOf(")") + 1); + return prefix + " AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.85 Mobile Safari/537.36"; + }, + }, + + /* + * Bug 755590 - sites.google.com - top bar doesn't show up in Firefox for Android + * + * Google Sites does show a different top bar template based on the User Agent. + * For Fennec, this results in a broken top bar. Appending Chrome and Mobile Safari + * identifiers to the UA results in a correct rendering. + */ + { + matches: ["*://sites.google.com/*"], + uaTransformer: (originalUA) => { + return originalUA + " Chrome/68.0.3440.85 Mobile Safari/537.366"; + }, + }, + + /* + * Bug 945963 - tieba.baidu.com serves simplified mobile content to Firefox Android + * WebCompat issue #18455 - https://webcompat.com/issues/18455 + * + * tieba.baidu.com and tiebac.baidu.com serve a heavily simplified and less functional + * mobile experience to Firefox for Android users. Adding the AppleWebKit indicator + * to the User Agent gets us the same experience. + */ + { + matches: ["*://tieba.baidu.com/*", "*://tiebac.baidu.com/*"], + uaTransformer: (originalUA) => { + return originalUA + " AppleWebKit/537.36 (KHTML, like Gecko)"; + }, + }, + ], +}; + +/* globals browser */ + +let activeListeners = []; +function buildAndRegisterListener(matches, transformer) { + let listener = (details) => { + for (var header of details.requestHeaders) { + if (header.name.toLowerCase() === "user-agent") { + header.value = transformer(header.value); + } + } + return {requestHeaders: details.requestHeaders}; + }; + + browser.webRequest.onBeforeSendHeaders.addListener( + listener, + {urls: matches}, + ["blocking", "requestHeaders"] + ); + + activeListeners.push(listener); +} + +async function registerUAOverrides() { + let platform = "desktop"; + let platformInfo = await browser.runtime.getPlatformInfo(); + if (platformInfo.os == "android") { + platform = "android"; + } + + let targetOverrides = UAOverrides.universal.concat(UAOverrides[platform]); + targetOverrides.forEach((override) => { + buildAndRegisterListener(override.matches, override.uaTransformer); + }); +} + +function unregisterUAOverrides() { + activeListeners.forEach((listener) => { + browser.webRequest.onBeforeSendHeaders.removeListener(listener); + }); + + activeListeners = []; +} + +const OVERRIDE_PREF = "perform_ua_overrides"; +function checkOverridePref() { + browser.aboutConfigPrefs.getPref(OVERRIDE_PREF).then(value => { + if (value === undefined) { + browser.aboutConfigPrefs.setPref(OVERRIDE_PREF, true); + } else if (value === false) { + unregisterUAOverrides(); + } else { + registerUAOverrides(); + } + }); +} +browser.aboutConfigPrefs.onPrefChange.addListener(checkOverridePref, OVERRIDE_PREF); +checkOverridePref();
deleted file mode 100644 --- a/browser/extensions/webcompat/webextension/background.js +++ /dev/null @@ -1,94 +0,0 @@ -/** - * For detailed information on our policies, and a documention on this format - * and its possibilites, please check the Mozilla-Wiki at - * - * https://wiki.mozilla.org/Compatibility/Go_Faster_Addon/Override_Policies_and_Workflows#User_Agent_overrides - */ -const contentScripts = { - universal: [ - { - matches: ["*://webcompat-addon-testcases.schub.io/*"], - css: [{file: "injections/css/bug0000000-dummy-css-injection.css"}], - js: [{file: "injections/js/bug0000000-dummy-js-injection.js"}], - runAt: "document_start", - }, - ], - desktop: [ - { - matches: ["https://ib.absa.co.za/*"], - js: [{file: "injections/js/bug1452707-window.controllers-shim-ib.absa.co.za.js"}], - runAt: "document_start", - }, - { - matches: ["http://histography.io/*"], - js: [{file: "injections/js/bug1457335-histography.io-ua-change.js"}], - runAt: "document_start", - }, - { - matches: ["*://*.bankofamerica.com/*"], - js: [{file: "injections/js/bug1472075-bankofamerica.com-ua-change.js"}], - runAt: "document_start", - }, - { - matches: ["http://202.166.205.141/bbvrs/*"], - js: [{file: "injections/js/bug1472081-election.gov.np-window.sidebar-shim.js"}], - runAt: "document_start", - allFrames: true, - }, - { - matches: ["*://portalminasnet.com/*"], - js: [{file: "injections/js/bug1482066-portalminasnet.com-window.sidebar-shim.js"}], - runAt: "document_start", - allFrames: true, - }, - ], - android: [], -}; - -/* globals browser */ - -let port = browser.runtime.connect(); -let registeredContentScripts = []; - -async function registerContentScripts() { - let platform = "desktop"; - let platformInfo = await browser.runtime.getPlatformInfo(); - if (platformInfo.os == "android") { - platform = "android"; - } - - let targetContentScripts = contentScripts.universal.concat(contentScripts[platform]); - targetContentScripts.forEach(async (contentScript) => { - try { - let handle = await browser.contentScripts.register(contentScript); - registeredContentScripts.push(handle); - } catch (ex) { - console.error("Registering WebCompat GoFaster content scripts failed: ", ex); - } - }); -} - -function unregisterContentScripts() { - registeredContentScripts.forEach((contentScript) => { - contentScript.unregister(); - }); -} - -port.onMessage.addListener((message) => { - switch (message.type) { - case "injection-pref-changed": - if (message.prefState) { - registerContentScripts(); - } else { - unregisterContentScripts(); - } - break; - } -}); - -/** - * Note that we reset all preferences on extension startup, so the injections will - * never be disabled when this loads up. Because of that, we can simply register - * right away. - */ -registerContentScripts();
deleted file mode 100644 --- a/browser/extensions/webcompat/webextension/manifest.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "manifest_version": 2, - "name": "Web Compat", - "description": "Urgent post-release fixes for web compatibility.", - "version": "2.0", - - "applications": { - "gecko": { - "id": "webcompat@mozilla.org", - "strict_min_version": "59.0b5" - } - }, - - "permissions": [ - "<all_urls>" - ], - - "background": { - "scripts": [ - "background.js" - ] - } -}
--- a/browser/locales/en-US/chrome/browser/browser.dtd +++ b/browser/locales/en-US/chrome/browser/browser.dtd @@ -116,16 +116,18 @@ when there are no windows but Firefox is <!ENTITY printSetupCmd.label "Page Setup…"> <!ENTITY printSetupCmd.accesskey "u"> <!ENTITY printPreviewCmd.label "Print Preview"> <!ENTITY printPreviewCmd.accesskey "v"> <!ENTITY printCmd.label "Print…"> <!ENTITY printCmd.accesskey "P"> <!ENTITY printCmd.commandkey "p"> +<!ENTITY taskManagerCmd.label "Task Manager"> + <!ENTITY goOfflineCmd.label "Work Offline"> <!ENTITY goOfflineCmd.accesskey "k"> <!ENTITY menubarCmd.label "Menu Bar"> <!ENTITY menubarCmd.accesskey "M"> <!ENTITY navbarCmd.label "Navigation Toolbar"> <!ENTITY personalbarCmd.label "Bookmarks Toolbar"> <!ENTITY personalbarCmd.accesskey "B">
--- a/browser/themes/osx/downloads/allDownloadsView.css +++ b/browser/themes/osx/downloads/allDownloadsView.css @@ -5,15 +5,15 @@ %include ../../shared/downloads/allDownloadsView.inc.css /*** List items ***/ :root { --downloads-item-height: 6em; } -.downloadProgress > .progress-bar { +.downloadProgress::-moz-progress-bar { background-color: #3c9af8; } -.downloadProgress[paused="true"] > .progress-bar { +.downloadProgress[paused]::-moz-progress-bar { background-color: #a6a6a6; }
--- a/browser/themes/osx/downloads/downloads.css +++ b/browser/themes/osx/downloads/downloads.css @@ -28,21 +28,21 @@ @item@[verdict="Malware"]:not(:hover) { color: #aa1b08; } :root[lwt-popup-brighttext] @item@[verdict="Malware"]:not(:hover) { color: #ff0039; } -.downloadProgress > .progress-bar { +.downloadProgress::-moz-progress-bar { background-color: #3c9af8; } -.downloadProgress[paused="true"] > .progress-bar { +.downloadProgress[paused]::-moz-progress-bar { background-color: #a6a6a6; } /*** Highlighted list items ***/ @keyfocus@ @itemFocused@ { outline: 2px -moz-mac-focusring solid; outline-offset: -2px;
--- a/browser/themes/shared/browser.inc.css +++ b/browser/themes/shared/browser.inc.css @@ -167,16 +167,20 @@ margin-left: 0; margin-right: 0; } #widget-overflow .webextension-popup-browser { background: #fff; } +#addon-progress-notification-progressmeter { + margin: 2px 4px; +} + /* Contextual Feature Recommendation popup-notification */ :root { --cfr-notification-header-image: url(resource://activity-stream/data/content/assets/glyph-help-24.svg); --cfr-notification-footer-star: url(resource://activity-stream/data/content/assets/glyph-star-17.svg); } #cfr-notification-header {
--- a/browser/themes/shared/downloads/progressmeter.inc.css +++ b/browser/themes/shared/downloads/progressmeter.inc.css @@ -1,65 +1,58 @@ /*** Common-styled progressmeter ***/ + +/* + * Styling "html:progress" is limited by the fact that a number of properties + * are intentionally locked at the UA stylesheet level. We have to use a border + * instead of an outline because the latter would be drawn over the progress + * bar and we cannot change its z-index. This means we have to use a negative + * margin, except when the value is zero, and adjust the width calculation for + * the indeterminate state. + */ + .downloadProgress { - height: 8px; - border-radius: 1px; + -moz-appearance: none; + display: -moz-box; margin: 4px 0 0; margin-inline-end: 12px; - - /* for overriding rules in progressmeter.css */ - -moz-appearance: none; - border-style: none; - background-color: transparent; - min-width: initial; - min-height: initial; + border: 1px solid ButtonShadow; + height: 6px; + background-color: ButtonFace; } -.downloadProgress > .progress-bar { +.downloadProgress::-moz-progress-bar { + -moz-appearance: none; background-color: Highlight; - - /* for overriding rules in progressmeter.css */ - -moz-appearance: none; } -.downloadProgress[paused="true"] > .progress-bar { +.downloadProgress[paused]::-moz-progress-bar { background-color: GrayText; } -.downloadProgress[progress-undetermined] > .progress-bar { +.downloadProgress:not([value="0"])::-moz-progress-bar { + margin: -1px; + height: 8px; +} + +.downloadProgress:indeterminate::-moz-progress-bar { + width: calc(100% + 2px); /* Make a white reflecting animation. Create a gradient with 2 identical pattern, and enlarge the size to 200%. This allows us to animate background-position with percentage. */ background-image: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 25%, transparent 50%, rgba(255,255,255,0.5) 75%, transparent 100%); background-blend-mode: lighten; background-size: 200% 100%; animation: downloadProgressSlideX 1.5s linear infinite; } -.downloadProgress > .progress-remainder { - border: solid ButtonShadow; - border-block-start-width: 1px; - border-block-end-width: 1px; - border-inline-start-width: 0; - border-inline-end-width: 1px; - background-color: ButtonFace; -} - -.downloadProgress[value="0"] > .progress-remainder { - border-width: 1px; -} - -.downloadProgress[progress-undetermined] > .progress-remainder { - border: none; -} - @keyframes downloadProgressSlideX { 0% { background-position: 0 0; } 100% { background-position: -100% 0; } }
new file mode 100644 --- /dev/null +++ b/browser/themes/shared/icons/performance.svg @@ -0,0 +1,7 @@ +<!-- This Source Code Form is subject to the terms of the Mozilla Public + - License, v. 2.0. If a copy of the MPL was not distributed with this + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"> + <path fill="context-fill" d="M8 1a8 8 0 0 0-8 8 7.89 7.89 0 0 0 .78 3.43 1 1 0 0 0 .9.57.94.94 0 0 0 .43-.1 1 1 0 0 0 .47-1.33A6.07 6.07 0 0 1 2 9a6 6 0 0 1 12 0 5.93 5.93 0 0 1-.59 2.57 1 1 0 0 0 1.81.86A7.89 7.89 0 0 0 16 9a8 8 0 0 0-8-8z"/> + <path fill="context-fill" d="M11.77 7.08a.5.5 0 0 0-.69.15L8.62 11.1A2.12 2.12 0 0 0 8 11a2 2 0 0 0 0 4 2.05 2.05 0 0 0 1.12-.34 2.31 2.31 0 0 0 .54-.54 2 2 0 0 0 0-2.24 2.31 2.31 0 0 0-.2-.24l2.46-3.87a.5.5 0 0 0-.15-.69z"/> +</svg>
--- a/browser/themes/shared/jar.inc.mn +++ b/browser/themes/shared/jar.inc.mn @@ -159,16 +159,17 @@ skin/classic/browser/link.svg (../shared/icons/link.svg) skin/classic/browser/mail.svg (../shared/icons/mail.svg) skin/classic/browser/menu.svg (../shared/icons/menu.svg) skin/classic/browser/menu-badged.svg (../shared/icons/menu-badged.svg) skin/classic/browser/new-tab.svg (../shared/icons/new-tab.svg) skin/classic/browser/new-window.svg (../shared/icons/new-window.svg) skin/classic/browser/open.svg (../shared/icons/open.svg) skin/classic/browser/page-action.svg (../shared/icons/page-action.svg) + skin/classic/browser/performance.svg (../shared/icons/performance.svg) skin/classic/browser/print.svg (../shared/icons/print.svg) skin/classic/browser/private-browsing.svg (../shared/icons/private-browsing.svg) skin/classic/browser/privateBrowsing.svg (../shared/icons/privateBrowsing.svg) skin/classic/browser/restore-session.svg (../shared/icons/restore-session.svg) skin/classic/browser/quit.svg (../shared/icons/quit.svg) skin/classic/browser/reload.svg (../shared/icons/reload.svg) skin/classic/browser/reload-to-stop.svg (../shared/icons/reload-to-stop.svg) skin/classic/browser/save.svg (../shared/icons/save.svg)
--- a/browser/themes/shared/menupanel.inc.css +++ b/browser/themes/shared/menupanel.inc.css @@ -28,16 +28,20 @@ list-style-image: url(chrome://browser/skin/customize.svg); } #appMenu-find-button, #panelMenu_searchBookmarks { list-style-image: url(chrome://browser/skin/search-glass.svg); } +#appMenu-taskmanager-button { + list-style-image: url("chrome://browser/skin/performance.svg"); +} + #appMenu-help-button { list-style-image: url(chrome://global/skin/icons/help.svg); } #appMenu-cut-button { list-style-image: url(chrome://browser/skin/edit-cut.svg); }
--- a/browser/themes/windows/downloads/allDownloadsView.css +++ b/browser/themes/windows/downloads/allDownloadsView.css @@ -6,19 +6,23 @@ /*** List items ***/ :root { --downloads-item-height: 6em; } @media (-moz-windows-default-theme) { - .downloadProgress > .progress-bar { + .downloadProgress::-moz-progress-bar { background-color: #3c9af8; } + + .downloadProgress[paused]::-moz-progress-bar { + background-color: #a6a6a6; + } } /*** Highlighted list items ***/ @media (-moz-windows-default-theme) { /* -moz-appearance: menuitem is almost right, but the hover effect is not transparent and is lighter than desired.
--- a/browser/themes/windows/downloads/downloads.css +++ b/browser/themes/windows/downloads/downloads.css @@ -32,24 +32,23 @@ color: #aa1b08; } :root[lwt-popup-brighttext] @item@[verdict="Malware"]:not(:hover) { color: #ff0039; } /* Use unified color for the progressbar on default theme */ - .downloadProgress > .progress-bar { + .downloadProgress::-moz-progress-bar { background-color: #3c9af8; } - .downloadProgress[paused="true"] > .progress-bar { + .downloadProgress[paused]::-moz-progress-bar { background-color: #a6a6a6; } - } /*** Highlighted list items ***/ @keyfocus@ @itemFocused@ { outline: 1px -moz-dialogtext dotted; outline-offset: -1px; }
--- a/devtools/client/webide/content/webide.js +++ b/devtools/client/webide/content/webide.js @@ -227,18 +227,16 @@ var UI = { cancelBusyTimeout: function() { clearTimeout(this._busyTimeout); }, busyWithProgressUntil: function(promise, operationDescription) { const busy = this.busyUntil(promise, operationDescription); const win = document.querySelector("window"); - const progress = document.querySelector("#action-busy-determined"); - progress.mode = "undetermined"; win.classList.add("busy-determined"); win.classList.remove("busy-undetermined"); return busy; }, busyUntil: function(promise, operationDescription) { // Freeze the UI until the promise is resolved. A timeout will unfreeze the // UI, just in case the promise never gets resolved.
--- a/devtools/client/webide/content/webide.xul +++ b/devtools/client/webide/content/webide.xul @@ -119,17 +119,17 @@ <vbox flex="1"> <hbox id="action-buttons-container" class="busy"> <toolbarbutton id="action-button-play" class="action-button" command="cmd_play" tooltiptext="&projectMenu_play_label;"/> <toolbarbutton id="action-button-stop" class="action-button" command="cmd_stop" tooltiptext="&projectMenu_stop_label;"/> <toolbarbutton id="action-button-debug" class="action-button" command="cmd_toggleToolbox" tooltiptext="&projectMenu_debug_label;"/> <hbox id="action-busy" align="center"> <html:img id="action-busy-undetermined" src="chrome://webide/skin/throbber.svg"/> - <progressmeter id="action-busy-determined"/> + <html:progress id="action-busy-determined"/> </hbox> </hbox> <hbox id="panel-buttons-container"> <spacer flex="1"/> <toolbarbutton id="runtime-panel-button" class="panel-button"> <image class="panel-button-image"/> <label class="panel-button-label" value="&runtimeButton_label;"/>
--- a/gfx/thebes/gfxFont.cpp +++ b/gfx/thebes/gfxFont.cpp @@ -5,16 +5,17 @@ #include "gfxFont.h" #include "mozilla/BinarySearch.h" #include "mozilla/DebugOnly.h" #include "mozilla/FontPropertyTypes.h" #include "mozilla/gfx/2D.h" #include "mozilla/MathAlgorithms.h" +#include "mozilla/StaticPrefs.h" #include "mozilla/SVGContextPaint.h" #include "mozilla/Logging.h" #include "nsITimer.h" #include "gfxGlyphExtents.h" #include "gfxPlatform.h" @@ -822,16 +823,23 @@ gfxFont::gfxFont(const RefPtr<UnscaledFo mIsValid(true), mApplySyntheticBold(false), mKerningEnabled(false), mMathInitialized(false) { #ifdef DEBUG_TEXT_RUN_STORAGE_METRICS ++gFontCount; #endif + + // Turn off AA for Ahem for testing purposes when requested. + if (MOZ_UNLIKELY(StaticPrefs::gfx_font_ahem_antialias_none() && + mFontEntry->FamilyName().EqualsLiteral("Ahem"))) { + mAntialiasOption = kAntialiasNone; + } + mKerningSet = HasFeatureSet(HB_TAG('k','e','r','n'), mKerningEnabled); } gfxFont::~gfxFont() { mFontEntry->NotifyFontDestroyed(this); if (mGlyphChangeObservers) {
--- a/gfx/thebes/gfxMacFont.cpp +++ b/gfx/thebes/gfxMacFont.cpp @@ -2,16 +2,17 @@ * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "gfxMacFont.h" #include "mozilla/MemoryReporting.h" #include "mozilla/Sprintf.h" +#include "mozilla/StaticPrefs.h" #include "gfxCoreTextShaper.h" #include <algorithm> #include "gfxPlatformMac.h" #include "gfxContext.h" #include "gfxFontUtils.h" #include "gfxMacPlatformFontList.h" #include "gfxFontConstants.h" @@ -144,18 +145,21 @@ gfxMacFont::gfxMacFont(const RefPtr<Unsc cairo_matrix_t sizeMatrix, ctm; cairo_matrix_init_identity(&ctm); cairo_matrix_init_scale(&sizeMatrix, mAdjustedSize, mAdjustedSize); cairo_font_options_t *fontOptions = cairo_font_options_create(); // turn off font anti-aliasing based on user pref setting - if (mAdjustedSize <= - (gfxFloat)gfxPlatformMac::GetPlatform()->GetAntiAliasingThreshold()) { + if ((mAdjustedSize <= + (gfxFloat)gfxPlatformMac::GetPlatform()->GetAntiAliasingThreshold()) || + // Turn off AA for Ahem for testing purposes when requested. + MOZ_UNLIKELY(StaticPrefs::gfx_font_ahem_antialias_none() && + mFontEntry->FamilyName().EqualsLiteral("Ahem"))) { cairo_font_options_set_antialias(fontOptions, CAIRO_ANTIALIAS_NONE); mAntialiasOption = kAntialiasNone; } else if (mStyle.useGrayscaleAntialiasing) { cairo_font_options_set_antialias(fontOptions, CAIRO_ANTIALIAS_GRAY); mAntialiasOption = kAntialiasGrayscale; } mScaledFont = cairo_scaled_font_create(mFontFace, &sizeMatrix, &ctm,
--- a/modules/libpref/init/StaticPrefList.h +++ b/modules/libpref/init/StaticPrefList.h @@ -461,16 +461,22 @@ VARCACHE_PREF( ) VARCACHE_PREF( "gfx.offscreencanvas.enabled", gfx_offscreencanvas_enabled, RelaxedAtomicBool, false ) +VARCACHE_PREF( + "gfx.font_ahem_antialias_none", + gfx_font_ahem_antialias_none, + RelaxedAtomicBool, false +) + //--------------------------------------------------------------------------- // HTML5 parser prefs //--------------------------------------------------------------------------- // Toggle which thread the HTML5 parser uses for stream parsing. VARCACHE_PREF( "html5.offmainthread", html5_offmainthread,
--- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -850,16 +850,19 @@ pref("gfx.font_rendering.wordcache.charl pref("gfx.font_rendering.wordcache.maxentries", 10000); pref("gfx.font_rendering.graphite.enabled", true); #ifdef XP_WIN pref("gfx.font_rendering.directwrite.use_gdi_table_loading", true); #endif +// Disable antialiasing of Ahem, for use in tests +pref("gfx.font_ahem_antialias_none", false); + #ifdef XP_WIN // comma separated list of backends to use in order of preference // e.g., pref("gfx.canvas.azure.backends", "direct2d,skia,cairo"); pref("gfx.canvas.azure.backends", "direct2d1.1,skia,cairo"); pref("gfx.content.azure.backends", "direct2d1.1,skia,cairo"); #else #ifdef XP_MACOSX pref("gfx.content.azure.backends", "skia");
--- a/parser/html/java/Makefile +++ b/parser/html/java/Makefile @@ -32,23 +32,23 @@ sync_htmlparser:: \ fi sync:: sync_javaparser sync_htmlparser translate:: translator \ ; mkdir -p ../javasrc ; \ java -jar translator.jar \ htmlparser/src/nu/validator/htmlparser/impl \ - .. ../../../xpcom/ds/nsGkAtomList.h + .. ../../../xpcom/ds/StaticAtoms.py ../../../xpcom/ds/HTMLAtoms.py translate_from_snapshot:: translator \ ; mkdir -p ../javasrc ; \ java -jar translator.jar \ ../javasrc \ - .. ../../../dom/base/nsGkAtomList.h + .. ../../../xpcom/ds/StaticAtoms.py ../../../xpcom/ds/HTMLAtoms.py named_characters:: translator \ ; java -cp translator.jar \ nu.validator.htmlparser.generator.GenerateNamedCharactersCpp \ named-character-references.html ../ clean_javaparser:: \ ; rm -rf javaparser/bin javaparser.jar
--- a/parser/html/nsHtml5AttributeName.h +++ b/parser/html/nsHtml5AttributeName.h @@ -53,33 +53,29 @@ class nsHtml5MetaScanner; class nsHtml5UTF16Buffer; class nsHtml5StateSnapshot; class nsHtml5Portability; class nsHtml5AttributeName { public: static int32_t* ALL_NO_NS; - private: static int32_t* XMLNS_NS; static int32_t* XML_NS; static int32_t* XLINK_NS; - public: static nsAtom** ALL_NO_PREFIX; - private: static nsAtom** XMLNS_PREFIX; static nsAtom** XLINK_PREFIX; static nsAtom** XML_PREFIX; static nsAtom** SVG_DIFFERENT(nsAtom* name, nsAtom* camel); static nsAtom** MATH_DIFFERENT(nsAtom* name, nsAtom* camel); static nsAtom** COLONIFIED_LOCAL(nsAtom* name, nsAtom* suffix); - public: static nsAtom** SAME_LOCAL(nsAtom* name); inline static int32_t levelOrderBinarySearch(jArray<int32_t, int32_t> data, int32_t key) { int32_t n = data.length; int32_t i = 0; while (i < n) { @@ -157,17 +153,16 @@ public: static const int32_t SVG = 2; private: int32_t* uri; nsAtom** local; nsAtom** prefix; bool custom; nsHtml5AttributeName(int32_t* uri, nsAtom** local, nsAtom** prefix); - public: nsHtml5AttributeName(); inline bool isInterned() { return !custom; } inline void setNameForNonInterned(nsAtom* name) { MOZ_ASSERT(custom); local[0] = name; @@ -669,19 +664,17 @@ public: static nsHtml5AttributeName* ATTR_RX; static nsHtml5AttributeName* ATTR_REFX; static nsHtml5AttributeName* ATTR_BY; static nsHtml5AttributeName* ATTR_CY; static nsHtml5AttributeName* ATTR_DY; static nsHtml5AttributeName* ATTR_FY; static nsHtml5AttributeName* ATTR_RY; static nsHtml5AttributeName* ATTR_REFY; - private: static nsHtml5AttributeName** ATTRIBUTE_NAMES; static staticJArray<int32_t, int32_t> ATTRIBUTE_HASHES; - public: static void initializeStatics(); static void releaseStatics(); }; #endif
--- a/parser/html/nsHtml5ElementName.h +++ b/parser/html/nsHtml5ElementName.h @@ -75,17 +75,16 @@ public: static const int32_t OPTIONAL_END_TAG = (1 << 23); private: nsAtom* name; nsAtom* camelCaseName; mozilla::dom::HTMLContentCreatorFunction htmlCreator; mozilla::dom::SVGContentCreatorFunction svgCreator; - public: int32_t flags; inline nsAtom* getName() { return name; } inline nsAtom* getCamelCaseName() { return camelCaseName; } inline mozilla::dom::HTMLContentCreatorFunction getHtmlCreator() { @@ -401,19 +400,17 @@ public: static nsHtml5ElementName* ELT_VIEW; static nsHtml5ElementName* ELT_FECOLORMATRIX; static nsHtml5ElementName* ELT_FECONVOLVEMATRIX; static nsHtml5ElementName* ELT_BODY; static nsHtml5ElementName* ELT_FEMORPHOLOGY; static nsHtml5ElementName* ELT_RUBY; static nsHtml5ElementName* ELT_SUMMARY; static nsHtml5ElementName* ELT_TBODY; - private: static nsHtml5ElementName** ELEMENT_NAMES; static staticJArray<int32_t, int32_t> ELEMENT_HASHES; - public: static void initializeStatics(); static void releaseStatics(); }; #endif
--- a/parser/html/nsHtml5MetaScanner.h +++ b/parser/html/nsHtml5MetaScanner.h @@ -115,60 +115,52 @@ private: static const int32_t HTTP_EQUIV_NOT_SEEN = 0; static const int32_t HTTP_EQUIV_CONTENT_TYPE = 1; static const int32_t HTTP_EQUIV_OTHER = 2; protected: nsHtml5ByteReadable* readable; - private: int32_t metaState; int32_t contentIndex; int32_t charsetIndex; int32_t httpEquivIndex; int32_t contentTypeIndex; - protected: int32_t stateSave; - private: int32_t strBufLen; autoJArray<char16_t, int32_t> strBuf; nsHtml5String content; nsHtml5String charset; int32_t httpEquivState; nsHtml5TreeBuilder* treeBuilder; - public: explicit nsHtml5MetaScanner(nsHtml5TreeBuilder* tb); ~nsHtml5MetaScanner(); - protected: void stateLoop(int32_t state); - private: void handleCharInAttributeValue(int32_t c); inline int32_t toAsciiLowerCase(int32_t c) { if (c >= 'A' && c <= 'Z') { return c + 0x20; } return c; } void addToBuffer(int32_t c); void handleAttributeValue(); bool handleTag(); bool handleTagInner(); - protected: bool tryCharset(nsHtml5String encoding); - public: static void initializeStatics(); static void releaseStatics(); #include "nsHtml5MetaScannerHSupplement.h" }; #endif
--- a/parser/html/nsHtml5StackNode.h +++ b/parser/html/nsHtml5StackNode.h @@ -61,21 +61,19 @@ class nsHtml5StackNode public: int32_t idxInTreeBuilder; int32_t flags; nsAtom* name; nsAtom* popName; int32_t ns; nsIContentHandle* node; nsHtml5HtmlAttributes* attributes; - private: int32_t refcount; mozilla::dom::HTMLContentCreatorFunction htmlCreator; - public: inline int32_t getFlags() { return flags; } int32_t getGroup(); bool isScoping(); bool isSpecial(); bool isFosterParenting(); bool isHtmlIntegrationPoint(); @@ -101,17 +99,16 @@ public: void setValues(nsHtml5ElementName* elementName, nsIContentHandle* node, nsAtom* popName, bool markAsIntegrationPoint); private: static int32_t prepareSvgFlags(int32_t flags); static int32_t prepareMathFlags(int32_t flags, bool markAsIntegrationPoint); - public: ~nsHtml5StackNode(); void dropAttributes(); void retain(); void release(nsHtml5TreeBuilder* owningTreeBuilder); bool isUnused(); static void initializeStatics(); static void releaseStatics();
--- a/parser/html/nsHtml5StateSnapshot.h +++ b/parser/html/nsHtml5StateSnapshot.h @@ -63,17 +63,16 @@ private: nsIContentHandle* formPointer; nsIContentHandle* headPointer; nsIContentHandle* deepTreeSurrogateParent; int32_t mode; int32_t originalMode; bool framesetOk; bool needToDropLF; bool quirks; - public: nsHtml5StateSnapshot( jArray<nsHtml5StackNode*, int32_t> stack, jArray<nsHtml5StackNode*, int32_t> listOfActiveFormattingElements, jArray<int32_t, int32_t> templateModeStack, nsIContentHandle* formPointer, nsIContentHandle* headPointer, nsIContentHandle* deepTreeSurrogateParent,
--- a/parser/html/nsHtml5Tokenizer.h +++ b/parser/html/nsHtml5Tokenizer.h @@ -230,112 +230,93 @@ private: static staticJArray<char16_t, int32_t> STYLE_ARR; static staticJArray<char16_t, int32_t> PLAINTEXT_ARR; static staticJArray<char16_t, int32_t> XMP_ARR; static staticJArray<char16_t, int32_t> TEXTAREA_ARR; static staticJArray<char16_t, int32_t> IFRAME_ARR; static staticJArray<char16_t, int32_t> NOEMBED_ARR; static staticJArray<char16_t, int32_t> NOSCRIPT_ARR; static staticJArray<char16_t, int32_t> NOFRAMES_ARR; - protected: nsHtml5TreeBuilder* tokenHandler; nsHtml5StreamParser* encodingDeclarationHandler; bool lastCR; int32_t stateSave; - private: int32_t returnStateSave; - protected: int32_t index; - private: bool forceQuirks; char16_t additional; int32_t entCol; int32_t firstCharKey; int32_t lo; int32_t hi; int32_t candidate; int32_t charRefBufMark; - protected: int32_t value; - private: bool seenDigits; - protected: int32_t cstart; - private: nsHtml5String publicId; nsHtml5String systemId; autoJArray<char16_t, int32_t> strBuf; int32_t strBufLen; autoJArray<char16_t, int32_t> charRefBuf; int32_t charRefBufLen; autoJArray<char16_t, int32_t> bmpChar; autoJArray<char16_t, int32_t> astralChar; - protected: nsHtml5ElementName* endTagExpectation; - private: jArray<char16_t, int32_t> endTagExpectationAsArray; - protected: bool endTag; - private: bool containsHyphen; nsHtml5ElementName* tagName; nsHtml5ElementName* nonInternedTagName; - protected: nsHtml5AttributeName* attributeName; - private: nsHtml5AttributeName* nonInternedAttributeName; nsAtom* doctypeName; nsHtml5String publicIdentifier; nsHtml5String systemIdentifier; nsHtml5HtmlAttributes* attributes; bool newAttributesEachTime; bool shouldSuspend; - protected: bool confident; - private: int32_t line; int32_t attributeLine; nsHtml5AtomTable* interner; bool viewingXmlSource; - public: nsHtml5Tokenizer(nsHtml5TreeBuilder* tokenHandler, bool viewingXmlSource); void setInterner(nsHtml5AtomTable* interner); void initLocation(nsHtml5String newPublicId, nsHtml5String newSystemId); bool isViewingXmlSource(); void setStateAndEndTagExpectation(int32_t specialTokenizerState, nsAtom* endTagExpectation); void setStateAndEndTagExpectation(int32_t specialTokenizerState, nsHtml5ElementName* endTagExpectation); private: void endTagExpectationToArray(); - public: void setLineNumber(int32_t line); inline int32_t getLineNumber() { return line; } nsHtml5HtmlAttributes* emptyAttributes(); - private: inline void appendCharRefBuf(char16_t c) { MOZ_RELEASE_ASSERT(charRefBufLen < charRefBuf.length, "Attempted to overrun charRefBuf!"); charRefBuf[charRefBufLen++] = c; } @@ -364,17 +345,16 @@ private: MOZ_CRASH("Unable to recover from buffer reallocation failure"); } } strBuf[strBufLen++] = c; } protected: nsHtml5String strBufToString(); - private: void strBufToDoctypeName(); void emitStrBuf(); inline void appendSecondHyphenToBogusComment() { appendStrBuf('-'); } inline void adjustDoubleHyphenAndAppendToStrBufAndErr(char16_t c) { errConsecutiveHyphens(); @@ -384,31 +364,27 @@ private: void appendStrBuf(char16_t* buffer, int32_t offset, int32_t length); inline void appendCharRefBufToStrBuf() { appendStrBuf(charRefBuf, 0, charRefBufLen); charRefBufLen = 0; } void emitComment(int32_t provisionalHyphens, int32_t pos); - protected: void flushChars(char16_t* buf, int32_t pos); - private: void strBufToElementNameString(); int32_t emitCurrentTagToken(bool selfClosing, int32_t pos); void attributeNameComplete(); void addAttributeWithoutValue(); void addAttributeWithValue(); - public: void start(); bool tokenizeBuffer(nsHtml5UTF16Buffer* buffer); - private: template<class P> int32_t stateLoop(int32_t state, char16_t c, int32_t pos, char16_t* buf, bool reconsume, int32_t returnState, @@ -450,33 +426,28 @@ protected: private: void emitCarriageReturn(char16_t* buf, int32_t pos); void emitReplacementCharacter(char16_t* buf, int32_t pos); void emitPlaintextReplacementCharacter(char16_t* buf, int32_t pos); void setAdditionalAndRememberAmpersandLocation(char16_t add); void bogusDoctype(); void bogusDoctypeWithoutQuirks(); void handleNcrValue(int32_t returnState); - public: void eof(); - private: void emitDoctypeToken(int32_t pos); - protected: inline char16_t checkChar(char16_t* buf, int32_t pos) { return buf[pos]; } public: bool internalEncodingDeclaration(nsHtml5String internalCharset); - private: void emitOrAppendTwo(const char16_t* val, int32_t returnState); void emitOrAppendOne(const char16_t* val, int32_t returnState); - public: void end(); void requestSuspension(); bool isInDataState(); void resetToDataState(); void loadState(nsHtml5Tokenizer* other); void initializeWithoutStarting(); void setEncodingDeclarationHandler(
--- a/parser/html/nsHtml5TreeBuilder.h +++ b/parser/html/nsHtml5TreeBuilder.h @@ -66,17 +66,16 @@ class nsHtml5MetaScanner; class nsHtml5UTF16Buffer; class nsHtml5StateSnapshot; class nsHtml5Portability; class nsHtml5TreeBuilder : public nsAHtml5TreeBuilderState { private: static char16_t REPLACEMENT_CHARACTER[]; - public: static const int32_t OTHER = 0; static const int32_t A = 1; static const int32_t BASE = 2; static const int32_t BODY = 3; @@ -283,20 +282,18 @@ private: static const int32_t CHARSET_UNQUOTED = 11; static staticJArray<const char*, int32_t> QUIRKY_PUBLIC_IDS; static const int32_t NOT_FOUND_ON_STACK = INT32_MAX; int32_t mode; int32_t originalMode; bool framesetOk; - protected: nsHtml5Tokenizer* tokenizer; - private: bool scriptingEnabled; bool needToDropLF; bool fragment; nsAtom* contextName; int32_t contextNamespace; nsIContentHandle* contextNode; autoJArray<int32_t, int32_t> templateModeStack; @@ -306,21 +303,19 @@ private: int32_t numStackNodes; autoJArray<nsHtml5StackNode*, int32_t> stack; int32_t currentPtr; autoJArray<nsHtml5StackNode*, int32_t> listOfActiveFormattingElements; int32_t listPtr; nsIContentHandle* formPointer; nsIContentHandle* headPointer; nsIContentHandle* deepTreeSurrogateParent; - protected: autoJArray<char16_t, int32_t> charBuffer; int32_t charBufferLen; - private: bool quirks; bool isSrcdocDocument; inline nsHtml5ContentCreatorFunction htmlCreator( mozilla::dom::HTMLContentCreatorFunction htmlCreator) { nsHtml5ContentCreatorFunction creator; creator.html = htmlCreator; @@ -357,27 +352,24 @@ private: nsHtml5HtmlAttributes* attributes); void startTagScriptInHead(nsHtml5ElementName* elementName, nsHtml5HtmlAttributes* attributes); void startTagTemplateInHead(nsHtml5ElementName* elementName, nsHtml5HtmlAttributes* attributes); bool isTemplateContents(); bool isTemplateModeStackEmpty(); bool isSpecialParentInForeign(nsHtml5StackNode* stackNode); - public: static nsHtml5String extractCharsetFromContent(nsHtml5String attributeValue, nsHtml5TreeBuilder* tb); private: void checkMetaCharset(nsHtml5HtmlAttributes* attributes); - public: void endTag(nsHtml5ElementName* elementName); - private: void endTagTemplateInHead(); int32_t findLastInTableScopeOrRootTemplateTbodyTheadTfoot(); int32_t findLast(nsAtom* name); int32_t findLastInTableScope(nsAtom* name); int32_t findLastInButtonScope(nsAtom* name); int32_t findLastInScope(nsAtom* name); int32_t findLastInListScope(nsAtom* name); @@ -430,20 +422,18 @@ private: nsAtom* name, nsHtml5HtmlAttributes* attributes); int32_t findLastOrRoot(nsAtom* name); int32_t findLastOrRoot(int32_t group); bool addAttributesToBody(nsHtml5HtmlAttributes* attributes); void addAttributesToHtml(nsHtml5HtmlAttributes* attributes); void pushHeadPointerOntoStack(); void reconstructTheActiveFormattingElements(); - public: void notifyUnusedStackNode(int32_t idxInStackNodes); - private: nsHtml5StackNode* getUnusedStackNode(); nsHtml5StackNode* createStackNode( int32_t flags, int32_t ns, nsAtom* name, nsIContentHandle* node, nsAtom* popName, @@ -516,17 +506,16 @@ private: nsHtml5ElementName* elementName, nsHtml5HtmlAttributes* attributes); void appendVoidElementToCurrentMayFosterMathML( nsHtml5ElementName* elementName, nsHtml5HtmlAttributes* attributes); void appendVoidInputToCurrent(nsHtml5HtmlAttributes* attributes, nsIContentHandle* form); void appendVoidFormToCurrent(nsHtml5HtmlAttributes* attributes); - protected: void accumulateCharacters(const char16_t* buf, int32_t start, int32_t length); void requestSuspension(); nsIContentHandle* createElement(int32_t ns, nsAtom* name, nsHtml5HtmlAttributes* attributes, nsIContentHandle* intendedParent, nsHtml5ContentCreatorFunction creator); @@ -574,42 +563,37 @@ protected: void markMalformedIfScript(nsIContentHandle* elt); void start(bool fragmentMode); void end(); void appendDoctypeToDocument(nsAtom* name, nsHtml5String publicIdentifier, nsHtml5String systemIdentifier); void elementPushed(int32_t ns, nsAtom* name, nsIContentHandle* node); void elementPopped(int32_t ns, nsAtom* name, nsIContentHandle* node); - public: inline bool cdataSectionAllowed() { return isInForeign(); } private: bool isInForeign(); bool isInForeignButNotHtmlOrMathTextIntegrationPoint(); - public: void setFragmentContext(nsAtom* context, int32_t ns, nsIContentHandle* node, bool quirks); protected: nsIContentHandle* currentNode(); - public: bool isScriptingEnabled(); void setScriptingEnabled(bool scriptingEnabled); void setIsSrcdocDocument(bool isSrcdocDocument); void flushCharacters(); - private: bool charBufferContainsNonWhitespace(); - public: nsAHtml5TreeBuilderState* newSnapshot(); bool snapshotMatches(nsAHtml5TreeBuilderState* snapshot); void loadState(nsAHtml5TreeBuilderState* snapshot, nsHtml5AtomTable* interner); private: int32_t findInArray(nsHtml5StackNode* node,
--- a/parser/html/nsHtml5UTF16Buffer.h +++ b/parser/html/nsHtml5UTF16Buffer.h @@ -55,17 +55,16 @@ class nsHtml5StateSnapshot; class nsHtml5Portability; class nsHtml5UTF16Buffer { private: char16_t* buffer; int32_t start; int32_t end; - public: int32_t getStart(); void setStart(int32_t start); char16_t* getBuffer(); int32_t getEnd(); bool hasMore(); int32_t getLength(); void adjust(bool lastWasCR);
--- a/security/manager/pki/resources/content/changepassword.xul +++ b/security/manager/pki/resources/content/changepassword.xul @@ -3,17 +3,18 @@ - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <!DOCTYPE dialog SYSTEM "chrome://pippki/locale/pippki.dtd"> <dialog id="set_password" title="&setPassword.title;" - xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + xmlns:html="http://www.w3.org/1999/xhtml" buttons="accept,cancel" ondialogaccept="return setPassword();" onload="onLoad();"> <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/> <script type="application/javascript" src="chrome://pippki/content/changepassword.js"/> @@ -50,12 +51,14 @@ </row> <row> <label value="&setPassword.reenterPassword.label;"/> <textbox id="pw2" type="password" oninput="checkPasswords();"/> </row> </rows> </grid> -<label control="pwmeter" value="&setPassword.meter.label;"/> -<progressmeter id="pwmeter" mode="determined" value="0"/> +<vbox style="margin: 6px;"> + <html:label for="pwmeter" style="display: -moz-box;">&setPassword.meter.label;</html:label> + <html:progress id="pwmeter" value="0" max="100"/> +</vbox> </dialog>
--- a/security/manager/pki/resources/content/setp12password.xul +++ b/security/manager/pki/resources/content/setp12password.xul @@ -5,16 +5,17 @@ <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> <!DOCTYPE dialog SYSTEM "chrome://pippki/locale/pippki.dtd"> <dialog id="setp12password" title="&pkcs12.setpassword.title;" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + xmlns:html="http://www.w3.org/1999/xhtml" style="width: 48em;" buttons="accept,cancel" ondialogaccept="return onDialogAccept();" ondialogcancel="return onDialogCancel();" onload="onLoad();"> <script type="application/javascript" src="chrome://pippki/content/setp12password.js"/> @@ -32,20 +33,14 @@ <label value="&pkcs12.setpassword.label2;"/> <textbox id="pw2" type="password" oninput="onPasswordInput(false);"/> </row> </rows> </grid> <separator/> <description>&pkcs12.setpassword.reminder;</description> <separator/> - <label value="&setPassword.meter.label;"/> - <grid style="margin: 4px;"> - <rows> <row/> </rows> - <columns> - <column style="margin: 5px;"> - <progressmeter flex="1" id="pwmeter" mode="determined" value="0" - orient="horizontal" - style="width: 20em; foreground-color: red"/> - </column> - </columns> - </grid> + + <vbox style="margin: 6px;"> + <html:label for="pwmeter" style="display: -moz-box;">&setPassword.meter.label;</html:label> + <html:progress id="pwmeter" value="0" max="100"/> + </vbox> </dialog>
--- a/taskcluster/ci/test/web-platform.yml +++ b/taskcluster/ci/test/web-platform.yml @@ -86,18 +86,18 @@ web-platform-tests-headless: web-platform-tests-reftests: description: "Web platform reftest run" suite: web-platform-tests-reftests treeherder-symbol: W(Wr) chunks: by-test-platform: macosx.*: 1 - windows.*: 1 default: 6 + e10s: by-test-platform: linux32/debug: both default: true run-on-projects: by-test-platform: android-em-7.0-x86/opt: ['mozilla-central'] linux64-qr/.*: ['release', 'try'] # skip on integration branches due to high load @@ -114,17 +114,16 @@ web-platform-tests-reftests: web-platform-tests-reftests-headless: description: "Web platform reftest headless run" suite: web-platform-tests-reftests treeherder-symbol: W(WrH) chunks: by-test-platform: macosx.*: 1 - windows.*: 1 default: 6 e10s: by-test-platform: linux32/debug: both default: true run-on-projects: [] # disabled pending releng approval mozharness: extra-options:
--- a/testing/firefox-ui/tests/puppeteer/test_update_wizard.py +++ b/testing/firefox-ui/tests/puppeteer/test_update_wizard.py @@ -51,17 +51,17 @@ class TestUpdateWizard(PuppeteerMixin, M 'manual_update', 'no_updates_found', 'updates_found_basic', ) for panel in panels: self.assertEqual(getattr(self.wizard, panel).element.get_property('localName'), 'wizardpage') # elements of the checking panel self.assertEqual(self.wizard.checking.progress.get_property('localName'), - 'progressmeter') + 'progress') # elements of the downloading panel self.assertEqual(self.wizard.downloading.progress.get_property('localName'), - 'progressmeter') + 'progress') # check wizard attributes self.assertIsInstance(self.wizard.selected_index, int) self.assertIsInstance(self.wizard.selected_panel, Panel)
--- a/testing/marionette/listener.js +++ b/testing/marionette/listener.js @@ -1642,32 +1642,30 @@ async function reftestWait(url, remote) observer.disconnect(); logger.debug("reftest-wait removed"); win.setTimeout(resolve, 0); } }); observer.observe(root, {attributes: true}); }); } + } - logger.debug("Waiting for rendering"); + logger.debug("Waiting for rendering"); - await new Promise(resolve => { - let maybeResolve = () => { - if (flushRendering()) { - win.addEventListener("MozAfterPaint", maybeResolve, {once: true}); - } else { - win.setTimeout(resolve, 0); - } - }; - maybeResolve(); - }); - } else { - flushRendering(); - } + await new Promise(resolve => { + let maybeResolve = () => { + if (flushRendering()) { + win.addEventListener("MozAfterPaint", maybeResolve, {once: true}); + } else { + win.setTimeout(resolve, 0); + } + }; + maybeResolve(); + }); if (remote) { windowUtils.updateLayerTree(); } } function domAddEventListener(msg) { eventObservers.add(msg.json.type);
--- a/testing/marionette/reftest.js +++ b/testing/marionette/reftest.js @@ -27,16 +27,19 @@ const SCREENSHOT_MODE = { const STATUS = { PASS: "PASS", FAIL: "FAIL", ERROR: "ERROR", TIMEOUT: "TIMEOUT", }; +const REFTEST_WIDTH = 600; +const REFTEST_HEIGHT = 600; + /** * Implements an fast runner for web-platform-tests format reftests * c.f. http://web-platform-tests.org/writing-tests/reftests.html. * * @namespace */ this.reftest = {}; @@ -92,17 +95,17 @@ reftest.Runner = class { this.reftestWin = reftestWin; return reftestWin; } async openWindow() { let reftestWin = this.parentWindow.open( "chrome://marionette/content/reftest.xul", "reftest", - "chrome,height=600,width=600"); + `chrome,height=${REFTEST_WIDTH},width=${REFTEST_HEIGHT}`); await new Promise(resolve => { reftestWin.addEventListener("load", resolve, {once: true}); }); let browser = reftestWin.document.createElementNS(XUL_NS, "xul:browser"); browser.permanentKey = {}; browser.setAttribute("id", "browser"); @@ -112,17 +115,18 @@ reftest.Runner = class { if (this.remote) { browser.setAttribute("remote", "true"); browser.setAttribute("remoteType", "web"); } // Make sure the browser element is exactly 600x600, no matter // what size our window is const windowStyle = `padding: 0px; margin: 0px; border:none; -min-width: 600px; min-height: 600px; max-width: 600px; max-height: 600px`; +min-width: ${REFTEST_WIDTH}px; min-height: ${REFTEST_HEIGHT}px; +max-width: ${REFTEST_WIDTH}px; max-height: ${REFTEST_HEIGHT}px`; browser.setAttribute("style", windowStyle); let doc = reftestWin.document.documentElement; while (doc.firstChild) { doc.firstChild.remove(); } doc.appendChild(browser); reftestWin.gBrowser = browser; @@ -216,41 +220,53 @@ min-width: 600px; min-height: 600px; max async runTest(testUrl, references, expected, timeout) { let win = await this.ensureWindow(); function toBase64(screenshot) { let dataURL = screenshot.canvas.toDataURL(); return dataURL.split(",")[1]; } - win.innerWidth = 600; - win.innerHeight = 600; - - let message = ""; + let result = { + status: STATUS.FAIL, + message: "", + stack: null, + extra: {}, + }; let screenshotData = []; let stack = []; for (let i = references.length - 1; i >= 0; i--) { let item = references[i]; stack.push([testUrl, item[0], item[1], item[2]]); } - let status = STATUS.FAIL; + let done = false; - while (stack.length) { + while (stack.length && !done) { let [lhsUrl, rhsUrl, references, relation] = stack.pop(); - message += `Testing ${lhsUrl} ${relation} ${rhsUrl}\n`; + result.message += `Testing ${lhsUrl} ${relation} ${rhsUrl}\n`; - let comparison = await this.compareUrls( - win, lhsUrl, rhsUrl, relation, timeout); + let comparison; + try { + comparison = await this.compareUrls( + win, lhsUrl, rhsUrl, relation, timeout); + } catch (e) { + comparison = {lhs: null, rhs: null, passed: false, error: e}; + } + if (comparison.error !== null) { + result.status = STATUS.ERROR; + result.message = String(comparison.error); + result.stack = comparison.error.stack; + } function recordScreenshot() { - let encodedLHS = toBase64(comparison.lhs); - let encodedRHS = toBase64(comparison.rhs); + let encodedLHS = comparison.lhs ? toBase64(comparison.lhs) : ""; + let encodedRHS = comparison.rhs ? toBase64(comparison.rhs) : ""; screenshotData.push([{url: lhsUrl, screenshot: encodedLHS}, relation, {url: rhsUrl, screenshot: encodedRHS}]); } if (this.screenshotMode === SCREENSHOT_MODE.always) { recordScreenshot(); } @@ -258,44 +274,44 @@ min-width: 600px; min-height: 600px; max if (comparison.passed) { if (references.length) { for (let i = references.length - 1; i >= 0; i--) { let item = references[i]; stack.push([rhsUrl, item[0], item[1], item[2]]); } } else { // Reached a leaf node so all of one reference chain passed - status = STATUS.PASS; + result.status = STATUS.PASS; if (this.screenshotMode <= SCREENSHOT_MODE.fail && - expected != status) { + expected != result.status) { recordScreenshot(); } - break; + done = true; } - } else if (!stack.length) { + } else if (!stack.length || result.status == STATUS.ERROR) { // If we don't have any alternatives to try then this will be // the last iteration, so save the failing screenshots if required. let isFail = this.screenshotMode === SCREENSHOT_MODE.fail; let isUnexpected = this.screenshotMode === SCREENSHOT_MODE.unexpected; - if (isFail || (isUnexpected && expected != status)) { + if (isFail || (isUnexpected && expected != result.status)) { recordScreenshot(); } } // Return any reusable canvases to the pool let canvasPool = this.canvasCache.get(null); [comparison.lhs, comparison.rhs].map(screenshot => { - if (screenshot.reuseCanvas) { + if (screenshot !== null && screenshot.reuseCanvas) { canvasPool.push(screenshot.canvas); } }); logger.debug(`Canvas pool is of length ${canvasPool.length}`); + } - let result = {status, message, extra: {}}; if (screenshotData.length) { // For now the tbpl formatter only accepts one screenshot, so just // return the last one we took. let lastScreenshot = screenshotData[screenshotData.length - 1]; // eslint-disable-next-line camelcase result.extra.reftest_screenshots = lastScreenshot; } @@ -307,41 +323,60 @@ min-width: 600px; min-height: 600px; max // Take the reference screenshot first so that if we pause // we see the test rendering let rhs = await this.screenshot(win, rhsUrl, timeout); let lhs = await this.screenshot(win, lhsUrl, timeout); let maxDifferences = {}; - let differences = this.windowUtils.compareCanvases( - lhs.canvas, rhs.canvas, maxDifferences); + logger.debug(`lhs canvas size ${lhs.canvas.width}x${lhs.canvas.height}`); + logger.debug(`rhs canvas size ${rhs.canvas.width}x${rhs.canvas.height}`); + let error = null; let passed; - switch (relation) { - case "==": - passed = differences === 0; - if (!passed) { - logger.info(`Found ${differences} pixels different, ` + - `maximum difference per channel ${maxDifferences.value}`); - } - break; - case "!=": - passed = differences !== 0; - break; - - default: - throw new InvalidArgumentError("Reftest operator should be '==' or '!='"); + let differences; + try { + differences = this.windowUtils.compareCanvases( + lhs.canvas, rhs.canvas, maxDifferences); + } catch (e) { + differences = null; + passed = false; + error = e; } - return {lhs, rhs, passed}; + if (error === null) { + switch (relation) { + case "==": + passed = differences === 0; + if (!passed) { + logger.info(`Found ${differences} pixels different, ` + + `maximum difference per channel ${maxDifferences.value}`); + } + break; + case "!=": + passed = differences !== 0; + break; + default: + throw new InvalidArgumentError("Reftest operator should be '==' or '!='"); + } + } + + return {lhs, rhs, passed, error}; } async screenshot(win, url, timeout) { + win.innerWidth = REFTEST_WIDTH; + win.innerHeight = REFTEST_HEIGHT; + + // On windows the above doesn't *actually* set the window to be the + // reftest size; but *does* set the content area to be the right size; + // the window is given some extra borders that aren't explicable from CSS + let browserRect = win.gBrowser.getBoundingClientRect(); let canvas = null; let remainingCount = this.urlCount.get(url) || 1; let cache = remainingCount > 1; logger.debug(`screenshot ${url} remainingCount: ` + `${remainingCount} cache: ${cache}`); let reuseCanvas = false; if (this.canvasCache.has(url)) { logger.debug(`screenshot ${url} taken from cache`); @@ -380,19 +415,24 @@ min-width: 600px; min-height: 600px; max this.driver.curBrowser.contentBrowser.focus(); await this.driver.listener.reftestWait(url, this.remote); canvas = capture.canvas( win, 0, // left 0, // top - win.innerWidth, - win.innerHeight, + browserRect.width, + browserRect.height, {canvas, flags}); } + if (canvas.width !== REFTEST_WIDTH || canvas.height !== REFTEST_HEIGHT) { + logger.warn(`Canvas dimensions changed to ${canvas.width}x${canvas.height}`); + reuseCanvas = false; + cache = false; + } if (cache) { this.canvasCache.set(url, canvas); } this.urlCount.set(url, remainingCount - 1); return {canvas, reuseCanvas}; } };
--- a/testing/mochitest/tests/SimpleTest/setup.js +++ b/testing/mochitest/tests/SimpleTest/setup.js @@ -4,16 +4,23 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ "use strict"; TestRunner.logEnabled = true; TestRunner.logger = LogController; +if (!("SpecialPowers" in window)) { + dump("SimpleTest setup.js found SpecialPowers unavailable: reloading...\n"); + setTimeout(() => { + window.location.reload(); + }, 1000); +} + /* Helper function */ function parseQueryString(encodedString, useArrays) { // strip a leading '?' from the encoded string var qstr = (encodedString.length > 0 && encodedString[0] == "?") ? encodedString.substring(1) : encodedString; var pairs = qstr.replace(/\+/g, "%20").split(/(\&\;|\&\#38\;|\&|\&)/); var o = {};
--- a/testing/mozharness/scripts/web_platform_tests.py +++ b/testing/mozharness/scripts/web_platform_tests.py @@ -225,17 +225,17 @@ class WebPlatformTest(TestingMixin, Merc "--stackfix-dir=%s" % os.path.join(dirs["abs_test_install_dir"], "bin"), "--run-by-dir=%i" % (3 if not mozinfo.info["asan"] else 0), "--no-pause-after-test"] if self.is_android: cmd += ["--device-serial=%s" % self.device_serial] cmd += ["--package-name=%s" % self.query_package_name()] - if not sys.platform.startswith("linux"): + if sys.platform == "darwin": cmd += ["--exclude=css"] if mozinfo.info["os"] == "win" and mozinfo.info["os_version"] == "6.1": # On Windows 7 --install-fonts fails, so fall back to a Firefox-specific codepath self._install_fonts() else: cmd += ["--install-fonts"]
--- a/testing/profiles/web-platform/user.js +++ b/testing/profiles/web-platform/user.js @@ -17,8 +17,10 @@ user_pref("network.preload", true); // Enable direct connection user_pref("network.proxy.type", 0); // Web-platform-tests load a lot of URLs very quickly. This puts avoidable and // unnecessary I/O pressure on the Places DB (measured to be in the // gigabytes). user_pref("places.history.enabled", false); // Suppress automatic safe mode after crashes user_pref("toolkit.startup.max_resumed_crashes", -1); +// Disable antialiasing for the Ahem font. +user_pref("gfx.font_ahem_antialias_none", true);
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-004.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-006.xht.ini @@ -0,0 +1,8 @@ +[background-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-007.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[background-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[background-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-bg-pos-206.xht.ini @@ -0,0 +1,6 @@ +[background-bg-pos-206.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-049.xht.ini @@ -0,0 +1,4 @@ +[background-color-049.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-052.xht.ini @@ -0,0 +1,4 @@ +[background-color-052.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-053.xht.ini @@ -0,0 +1,4 @@ +[background-color-053.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-054.xht.ini @@ -0,0 +1,4 @@ +[background-color-054.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-070.xht.ini @@ -0,0 +1,4 @@ +[background-color-070.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-073.xht.ini @@ -0,0 +1,4 @@ +[background-color-073.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-074.xht.ini @@ -0,0 +1,4 @@ +[background-color-074.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-075.xht.ini @@ -0,0 +1,4 @@ +[background-color-075.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-090.xht.ini @@ -0,0 +1,4 @@ +[background-color-090.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-093.xht.ini @@ -0,0 +1,4 @@ +[background-color-093.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-094.xht.ini @@ -0,0 +1,4 @@ +[background-color-094.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-095.xht.ini @@ -0,0 +1,4 @@ +[background-color-095.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-110.xht.ini @@ -0,0 +1,4 @@ +[background-color-110.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-113.xht.ini @@ -0,0 +1,4 @@ +[background-color-113.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-114.xht.ini @@ -0,0 +1,4 @@ +[background-color-114.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-115.xht.ini @@ -0,0 +1,4 @@ +[background-color-115.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-004.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-006.xht.ini @@ -0,0 +1,8 @@ +[background-color-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-007.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[background-color-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-color-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[background-color-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-004.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-006.xht.ini @@ -0,0 +1,8 @@ +[background-image-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-007.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[background-image-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-image-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[background-image-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-001.xht.ini @@ -0,0 +1,8 @@ +[background-position-001.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-002.xht.ini @@ -0,0 +1,8 @@ +[background-position-002.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-006.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-007.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[background-position-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-position-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[background-position-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[background-repeat-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[background-repeat-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[background-repeat-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[background-repeat-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-006.xht.ini @@ -0,0 +1,8 @@ +[background-repeat-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[background-repeat-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[background-repeat-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-repeat-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[background-repeat-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/backgrounds/background-root-002.xht.ini +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-root-002.xht.ini @@ -1,4 +1,3 @@ [background-root-002.xht] expected: - if os == "win": FAIL if os == "linux": FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/backgrounds/background-root-006.xht.ini @@ -0,0 +1,4 @@ +[background-root-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/bidi-text/bidi-004.xht.ini +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-004.xht.ini @@ -1,4 +1,6 @@ [bidi-004.xht] expected: if os == "win": FAIL if os == "linux": FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-010.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-010.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-011.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-011.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-012.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-012.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-013.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-014.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-015.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-015.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-016.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-016.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-017.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-017.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-018.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-018.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-019.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-019.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-020.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-020.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-021.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-021.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-022.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-022.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-023.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-023.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-024.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-024.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-025.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-025.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-026.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-026.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-027.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-027.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-028.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-028.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-029.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-029.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-030.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-030.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-031.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-031.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-032.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-032.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-033.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-033.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-034.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-034.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-035.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-035.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-036.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-036.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-037.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-037.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-038.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-038.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-039.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-039.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-040.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-040.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-041.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-041.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-042.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-042.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-043.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-043.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-044.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-044.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/bidi-box-model-045.xht.ini @@ -0,0 +1,4 @@ +[bidi-box-model-045.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-004.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-006.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-007.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-009.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-009.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-012.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/direction-applies-to-015.xht.ini @@ -0,0 +1,4 @@ +[direction-applies-to-015.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/line-breaking-bidi-001.xht.ini @@ -0,0 +1,4 @@ +[line-breaking-bidi-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/line-breaking-bidi-002.xht.ini @@ -0,0 +1,4 @@ +[line-breaking-bidi-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/bidi-text/line-breaking-bidi-003.xht.ini @@ -0,0 +1,4 @@ +[line-breaking-bidi-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-001.xht.ini @@ -0,0 +1,4 @@ +[border-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-003.xht.ini @@ -0,0 +1,4 @@ +[border-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[border-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[border-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[border-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[border-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-006.xht.ini @@ -0,0 +1,8 @@ +[border-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[border-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[border-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[border-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-bottom-width-080.xht.ini @@ -0,0 +1,4 @@ +[border-bottom-width-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-bottom-width-083.xht.ini @@ -0,0 +1,4 @@ +[border-bottom-width-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-bottom-width-084.xht.ini @@ -0,0 +1,4 @@ +[border-bottom-width-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[border-color-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[border-color-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[border-color-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[border-color-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-006.xht.ini @@ -0,0 +1,8 @@ +[border-color-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[border-color-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[border-color-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-color-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[border-color-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-left-width-080.xht.ini @@ -0,0 +1,4 @@ +[border-left-width-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-left-width-083.xht.ini @@ -0,0 +1,4 @@ +[border-left-width-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-left-width-084.xht.ini @@ -0,0 +1,4 @@ +[border-left-width-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-right-width-080.xht.ini @@ -0,0 +1,4 @@ +[border-right-width-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-right-width-083.xht.ini @@ -0,0 +1,4 @@ +[border-right-width-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-right-width-084.xht.ini @@ -0,0 +1,4 @@ +[border-right-width-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/borders/border-right-width-095.xht.ini +++ b/testing/web-platform/meta/css/CSS2/borders/border-right-width-095.xht.ini @@ -1,4 +1,3 @@ [border-right-width-095.xht] expected: - if os == "win": FAIL if os == "linux": FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-top-width-080.xht.ini @@ -0,0 +1,4 @@ +[border-top-width-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-top-width-083.xht.ini @@ -0,0 +1,4 @@ +[border-top-width-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-top-width-084.xht.ini @@ -0,0 +1,4 @@ +[border-top-width-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-width-applies-to-008.xht.ini @@ -0,0 +1,4 @@ +[border-width-applies-to-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/borders/border-width-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[border-width-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/anonymous-boxes-inheritance-001.xht.ini @@ -0,0 +1,4 @@ +[anonymous-boxes-inheritance-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/block-in-inline-001.xht.ini @@ -0,0 +1,8 @@ +[block-in-inline-001.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/block-in-inline-002.xht.ini @@ -0,0 +1,8 @@ +[block-in-inline-002.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/block-in-inline-relpos-001.xht.ini @@ -0,0 +1,4 @@ +[block-in-inline-relpos-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/box-generation-001.xht.ini @@ -0,0 +1,8 @@ +[box-generation-001.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/box-generation-002.xht.ini @@ -0,0 +1,8 @@ +[box-generation-002.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/display-008.xht.ini @@ -0,0 +1,8 @@ +[display-008.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/display-009.xht.ini @@ -0,0 +1,8 @@ +[display-009.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/display-012.xht.ini @@ -0,0 +1,8 @@ +[display-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/display-013.xht.ini @@ -0,0 +1,8 @@ +[display-013.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/display-change-001.xht.ini @@ -0,0 +1,4 @@ +[display-change-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/box-display/root-canvas-001.xht.ini @@ -0,0 +1,4 @@ +[root-canvas-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-001.xht.ini @@ -0,0 +1,3 @@ +[color-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-002.xht.ini @@ -0,0 +1,3 @@ +[color-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-003.xht.ini @@ -0,0 +1,3 @@ +[color-003.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-004.xht.ini @@ -0,0 +1,3 @@ +[color-004.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-005.xht.ini @@ -0,0 +1,3 @@ +[color-005.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-006.xht.ini @@ -0,0 +1,3 @@ +[color-006.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-007.xht.ini @@ -0,0 +1,3 @@ +[color-007.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-008.xht.ini @@ -0,0 +1,3 @@ +[color-008.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-009.xht.ini @@ -0,0 +1,3 @@ +[color-009.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-010.xht.ini @@ -0,0 +1,3 @@ +[color-010.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-011.xht.ini @@ -0,0 +1,3 @@ +[color-011.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-012.xht.ini @@ -0,0 +1,3 @@ +[color-012.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-013.xht.ini @@ -0,0 +1,3 @@ +[color-013.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-014.xht.ini @@ -0,0 +1,3 @@ +[color-014.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-015.xht.ini @@ -0,0 +1,3 @@ +[color-015.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-016.xht.ini @@ -0,0 +1,3 @@ +[color-016.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-017.xht.ini @@ -0,0 +1,3 @@ +[color-017.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-018.xht.ini @@ -0,0 +1,3 @@ +[color-018.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-019.xht.ini @@ -0,0 +1,3 @@ +[color-019.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-020.xht.ini @@ -0,0 +1,3 @@ +[color-020.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-021.xht.ini @@ -0,0 +1,3 @@ +[color-021.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-022.xht.ini @@ -0,0 +1,3 @@ +[color-022.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-023.xht.ini @@ -0,0 +1,3 @@ +[color-023.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-024.xht.ini @@ -0,0 +1,3 @@ +[color-024.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-025.xht.ini @@ -0,0 +1,3 @@ +[color-025.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-026.xht.ini @@ -0,0 +1,3 @@ +[color-026.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-027.xht.ini @@ -0,0 +1,3 @@ +[color-027.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-028.xht.ini @@ -0,0 +1,3 @@ +[color-028.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-029.xht.ini @@ -0,0 +1,3 @@ +[color-029.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-031.xht.ini @@ -0,0 +1,3 @@ +[color-031.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-032.xht.ini @@ -0,0 +1,3 @@ +[color-032.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-033.xht.ini @@ -0,0 +1,3 @@ +[color-033.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-034.xht.ini @@ -0,0 +1,3 @@ +[color-034.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-035.xht.ini @@ -0,0 +1,3 @@ +[color-035.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-036.xht.ini @@ -0,0 +1,3 @@ +[color-036.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-037.xht.ini @@ -0,0 +1,3 @@ +[color-037.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-038.xht.ini @@ -0,0 +1,3 @@ +[color-038.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-039.xht.ini @@ -0,0 +1,3 @@ +[color-039.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-040.xht.ini @@ -0,0 +1,3 @@ +[color-040.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-041.xht.ini @@ -0,0 +1,3 @@ +[color-041.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-042.xht.ini @@ -0,0 +1,3 @@ +[color-042.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-043.xht.ini @@ -0,0 +1,3 @@ +[color-043.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-044.xht.ini @@ -0,0 +1,3 @@ +[color-044.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-045.xht.ini @@ -0,0 +1,3 @@ +[color-045.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-046.xht.ini @@ -0,0 +1,3 @@ +[color-046.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-047.xht.ini @@ -0,0 +1,3 @@ +[color-047.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-048.xht.ini @@ -0,0 +1,3 @@ +[color-048.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-049.xht.ini @@ -0,0 +1,3 @@ +[color-049.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-050.xht.ini @@ -0,0 +1,3 @@ +[color-050.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-051.xht.ini @@ -0,0 +1,3 @@ +[color-051.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-052.xht.ini @@ -0,0 +1,3 @@ +[color-052.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-053.xht.ini @@ -0,0 +1,3 @@ +[color-053.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-054.xht.ini @@ -0,0 +1,3 @@ +[color-054.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-055.xht.ini @@ -0,0 +1,3 @@ +[color-055.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-056.xht.ini @@ -0,0 +1,3 @@ +[color-056.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-057.xht.ini @@ -0,0 +1,3 @@ +[color-057.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-058.xht.ini @@ -0,0 +1,3 @@ +[color-058.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-059.xht.ini @@ -0,0 +1,3 @@ +[color-059.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-060.xht.ini @@ -0,0 +1,3 @@ +[color-060.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-061.xht.ini @@ -0,0 +1,3 @@ +[color-061.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-062.xht.ini @@ -0,0 +1,3 @@ +[color-062.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-063.xht.ini @@ -0,0 +1,3 @@ +[color-063.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-064.xht.ini @@ -0,0 +1,3 @@ +[color-064.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-065.xht.ini @@ -0,0 +1,3 @@ +[color-065.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-066.xht.ini @@ -0,0 +1,3 @@ +[color-066.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-067.xht.ini @@ -0,0 +1,3 @@ +[color-067.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-068.xht.ini @@ -0,0 +1,3 @@ +[color-068.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-069.xht.ini @@ -0,0 +1,3 @@ +[color-069.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-070.xht.ini @@ -0,0 +1,3 @@ +[color-070.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-071.xht.ini @@ -0,0 +1,3 @@ +[color-071.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-072.xht.ini @@ -0,0 +1,3 @@ +[color-072.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-073.xht.ini @@ -0,0 +1,3 @@ +[color-073.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-074.xht.ini @@ -0,0 +1,3 @@ +[color-074.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-075.xht.ini @@ -0,0 +1,3 @@ +[color-075.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-076.xht.ini @@ -0,0 +1,3 @@ +[color-076.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-077.xht.ini @@ -0,0 +1,3 @@ +[color-077.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-078.xht.ini @@ -0,0 +1,3 @@ +[color-078.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-079.xht.ini @@ -0,0 +1,3 @@ +[color-079.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-080.xht.ini @@ -0,0 +1,3 @@ +[color-080.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-081.xht.ini @@ -0,0 +1,3 @@ +[color-081.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-082.xht.ini @@ -0,0 +1,3 @@ +[color-082.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-083.xht.ini @@ -0,0 +1,3 @@ +[color-083.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-084.xht.ini @@ -0,0 +1,3 @@ +[color-084.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-085.xht.ini @@ -0,0 +1,3 @@ +[color-085.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-086.xht.ini @@ -0,0 +1,3 @@ +[color-086.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-087.xht.ini @@ -0,0 +1,3 @@ +[color-087.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-088.xht.ini @@ -0,0 +1,3 @@ +[color-088.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-089.xht.ini @@ -0,0 +1,3 @@ +[color-089.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-090.xht.ini @@ -0,0 +1,3 @@ +[color-090.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-091.xht.ini @@ -0,0 +1,3 @@ +[color-091.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-092.xht.ini @@ -0,0 +1,3 @@ +[color-092.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-093.xht.ini @@ -0,0 +1,3 @@ +[color-093.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-094.xht.ini @@ -0,0 +1,3 @@ +[color-094.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-095.xht.ini @@ -0,0 +1,3 @@ +[color-095.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-096.xht.ini @@ -0,0 +1,3 @@ +[color-096.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-097.xht.ini @@ -0,0 +1,3 @@ +[color-097.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-098.xht.ini @@ -0,0 +1,3 @@ +[color-098.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-099.xht.ini @@ -0,0 +1,3 @@ +[color-099.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-100.xht.ini @@ -0,0 +1,3 @@ +[color-100.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-101.xht.ini @@ -0,0 +1,3 @@ +[color-101.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-102.xht.ini @@ -0,0 +1,3 @@ +[color-102.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-103.xht.ini @@ -0,0 +1,3 @@ +[color-103.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-104.xht.ini @@ -0,0 +1,3 @@ +[color-104.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-105.xht.ini @@ -0,0 +1,3 @@ +[color-105.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-106.xht.ini @@ -0,0 +1,3 @@ +[color-106.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-107.xht.ini @@ -0,0 +1,3 @@ +[color-107.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-108.xht.ini @@ -0,0 +1,3 @@ +[color-108.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-109.xht.ini @@ -0,0 +1,3 @@ +[color-109.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-110.xht.ini @@ -0,0 +1,3 @@ +[color-110.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-111.xht.ini @@ -0,0 +1,3 @@ +[color-111.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-112.xht.ini @@ -0,0 +1,3 @@ +[color-112.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-113.xht.ini @@ -0,0 +1,3 @@ +[color-113.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-114.xht.ini @@ -0,0 +1,3 @@ +[color-114.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-115.xht.ini @@ -0,0 +1,3 @@ +[color-115.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-116.xht.ini @@ -0,0 +1,3 @@ +[color-116.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-117.xht.ini @@ -0,0 +1,3 @@ +[color-117.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-118.xht.ini @@ -0,0 +1,3 @@ +[color-118.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-119.xht.ini @@ -0,0 +1,3 @@ +[color-119.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-120.xht.ini @@ -0,0 +1,3 @@ +[color-120.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-121.xht.ini @@ -0,0 +1,3 @@ +[color-121.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-122.xht.ini @@ -0,0 +1,3 @@ +[color-122.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-123.xht.ini @@ -0,0 +1,3 @@ +[color-123.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-124.xht.ini @@ -0,0 +1,3 @@ +[color-124.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-125.xht.ini @@ -0,0 +1,3 @@ +[color-125.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-126.xht.ini @@ -0,0 +1,3 @@ +[color-126.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-127.xht.ini @@ -0,0 +1,3 @@ +[color-127.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-128.xht.ini @@ -0,0 +1,3 @@ +[color-128.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-129.xht.ini @@ -0,0 +1,3 @@ +[color-129.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-130.xht.ini @@ -0,0 +1,3 @@ +[color-130.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-131.xht.ini @@ -0,0 +1,3 @@ +[color-131.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-132.xht.ini @@ -0,0 +1,3 @@ +[color-132.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-133.xht.ini @@ -0,0 +1,3 @@ +[color-133.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-134.xht.ini @@ -0,0 +1,3 @@ +[color-134.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-135.xht.ini @@ -0,0 +1,3 @@ +[color-135.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-136.xht.ini @@ -0,0 +1,3 @@ +[color-136.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-137.xht.ini @@ -0,0 +1,3 @@ +[color-137.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-138.xht.ini @@ -0,0 +1,3 @@ +[color-138.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-139.xht.ini @@ -0,0 +1,3 @@ +[color-139.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-140.xht.ini @@ -0,0 +1,3 @@ +[color-140.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-141.xht.ini @@ -0,0 +1,3 @@ +[color-141.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-142.xht.ini @@ -0,0 +1,3 @@ +[color-142.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-143.xht.ini @@ -0,0 +1,3 @@ +[color-143.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-144.xht.ini @@ -0,0 +1,3 @@ +[color-144.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-145.xht.ini @@ -0,0 +1,3 @@ +[color-145.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/colors/color-174.xht.ini @@ -0,0 +1,3 @@ +[color-174.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c412-blockw-000.xht.ini @@ -0,0 +1,3 @@ +[c412-blockw-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c412-hz-box-000.xht.ini @@ -0,0 +1,3 @@ +[c412-hz-box-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c42-ibx-ht-000.xht.ini @@ -0,0 +1,3 @@ +[c42-ibx-ht-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c43-rpl-bbx-002.xht.ini @@ -0,0 +1,3 @@ +[c43-rpl-bbx-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c43-rpl-ibx-000.xht.ini @@ -0,0 +1,4 @@ +[c43-rpl-ibx-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c44-ln-box-000.xht.ini @@ -0,0 +1,3 @@ +[c44-ln-box-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c44-ln-box-001.xht.ini @@ -0,0 +1,3 @@ +[c44-ln-box-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c44-ln-box-002.xht.ini @@ -0,0 +1,3 @@ +[c44-ln-box-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c44-ln-box-003.xht.ini @@ -0,0 +1,3 @@ +[c44-ln-box-003.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c526-font-sz-001.xht.ini @@ -0,0 +1,3 @@ +[c526-font-sz-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c526-font-sz-002.xht.ini @@ -0,0 +1,3 @@ +[c526-font-sz-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c526-font-sz-003.xht.ini @@ -0,0 +1,3 @@ +[c526-font-sz-003.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgre-000.xht.ini @@ -0,0 +1,3 @@ +[c534-bgre-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgre-001.xht.ini @@ -0,0 +1,3 @@ +[c534-bgre-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgreps-000.xht.ini @@ -0,0 +1,3 @@ +[c534-bgreps-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgreps-001.xht.ini @@ -0,0 +1,3 @@ +[c534-bgreps-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgreps-002.xht.ini @@ -0,0 +1,3 @@ +[c534-bgreps-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgreps-003.xht.ini @@ -0,0 +1,3 @@ +[c534-bgreps-003.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgreps-004.xht.ini @@ -0,0 +1,3 @@ +[c534-bgreps-004.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c534-bgreps-005.xht.ini @@ -0,0 +1,3 @@ +[c534-bgreps-005.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c536-bgpos-000.xht.ini @@ -0,0 +1,3 @@ +[c536-bgpos-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c536-bgpos-001.xht.ini @@ -0,0 +1,3 @@ +[c536-bgpos-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c541-word-sp-000.xht.ini @@ -0,0 +1,3 @@ +[c541-word-sp-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c542-letter-sp-000.xht.ini @@ -0,0 +1,3 @@ +[c542-letter-sp-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c542-letter-sp-001.xht.ini @@ -0,0 +1,3 @@ +[c542-letter-sp-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c544-valgn-001.xht.ini @@ -0,0 +1,3 @@ +[c544-valgn-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c547-indent-000.xht.ini @@ -0,0 +1,3 @@ +[c547-indent-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c548-leadin-000.xht.ini @@ -0,0 +1,3 @@ +[c548-leadin-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c548-ln-ht-000.xht.ini @@ -0,0 +1,3 @@ +[c548-ln-ht-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c548-ln-ht-001.xht.ini @@ -0,0 +1,3 @@ +[c548-ln-ht-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c548-ln-ht-002.xht.ini @@ -0,0 +1,3 @@ +[c548-ln-ht-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c548-ln-ht-003.xht.ini @@ -0,0 +1,3 @@ +[c548-ln-ht-003.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c548-ln-ht-004.xht.ini @@ -0,0 +1,3 @@ +[c548-ln-ht-004.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5501-imrgn-t-000.xht.ini @@ -0,0 +1,3 @@ +[c5501-imrgn-t-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5501-mrgn-t-000.xht.ini @@ -0,0 +1,3 @@ +[c5501-mrgn-t-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-imrgn-r-000.xht.ini @@ -0,0 +1,3 @@ +[c5502-imrgn-r-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-imrgn-r-001.xht.ini @@ -0,0 +1,3 @@ +[c5502-imrgn-r-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-imrgn-r-003.xht.ini @@ -0,0 +1,8 @@ +[c5502-imrgn-r-003.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-imrgn-r-004.xht.ini @@ -0,0 +1,3 @@ +[c5502-imrgn-r-004.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-imrgn-r-005.xht.ini @@ -0,0 +1,4 @@ +[c5502-imrgn-r-005.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-imrgn-r-006.xht.ini @@ -0,0 +1,4 @@ +[c5502-imrgn-r-006.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-mrgn-r-000.xht.ini @@ -0,0 +1,3 @@ +[c5502-mrgn-r-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5502-mrgn-r-001.xht.ini @@ -0,0 +1,3 @@ +[c5502-mrgn-r-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5503-imrgn-b-000.xht.ini @@ -0,0 +1,3 @@ +[c5503-imrgn-b-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5503-mrgn-b-000.xht.ini @@ -0,0 +1,3 @@ +[c5503-mrgn-b-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-imrgn-l-000.xht.ini @@ -0,0 +1,3 @@ +[c5504-imrgn-l-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-imrgn-l-001.xht.ini @@ -0,0 +1,3 @@ +[c5504-imrgn-l-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-imrgn-l-002.xht.ini @@ -0,0 +1,3 @@ +[c5504-imrgn-l-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-imrgn-l-003.xht.ini @@ -0,0 +1,8 @@ +[c5504-imrgn-l-003.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-imrgn-l-004.xht.ini @@ -0,0 +1,3 @@ +[c5504-imrgn-l-004.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-imrgn-l-005.xht.ini @@ -0,0 +1,4 @@ +[c5504-imrgn-l-005.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-imrgn-l-006.xht.ini @@ -0,0 +1,4 @@ +[c5504-imrgn-l-006.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-mrgn-l-000.xht.ini @@ -0,0 +1,3 @@ +[c5504-mrgn-l-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5504-mrgn-l-001.xht.ini @@ -0,0 +1,3 @@ +[c5504-mrgn-l-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5505-imrgn-000.xht.ini @@ -0,0 +1,4 @@ +[c5505-imrgn-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5505-mrgn-000.xht.ini @@ -0,0 +1,3 @@ +[c5505-mrgn-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5505-mrgn-001.xht.ini @@ -0,0 +1,3 @@ +[c5505-mrgn-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5505-mrgn-003.xht.ini @@ -0,0 +1,3 @@ +[c5505-mrgn-003.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5506-ipadn-t-000.xht.ini @@ -0,0 +1,3 @@ +[c5506-ipadn-t-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5506-ipadn-t-001.xht.ini @@ -0,0 +1,3 @@ +[c5506-ipadn-t-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5506-ipadn-t-002.xht.ini @@ -0,0 +1,3 @@ +[c5506-ipadn-t-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5506-padn-t-000.xht.ini @@ -0,0 +1,3 @@ +[c5506-padn-t-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5507-ipadn-r-000.xht.ini @@ -0,0 +1,3 @@ +[c5507-ipadn-r-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5507-ipadn-r-001.xht.ini @@ -0,0 +1,3 @@ +[c5507-ipadn-r-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5507-ipadn-r-002.xht.ini @@ -0,0 +1,3 @@ +[c5507-ipadn-r-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5507-ipadn-r-004.xht.ini @@ -0,0 +1,4 @@ +[c5507-ipadn-r-004.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5507-padn-r-000.xht.ini @@ -0,0 +1,3 @@ +[c5507-padn-r-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5507-padn-r-001.xht.ini @@ -0,0 +1,3 @@ +[c5507-padn-r-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5508-ipadn-b-000.xht.ini @@ -0,0 +1,3 @@ +[c5508-ipadn-b-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5508-ipadn-b-001.xht.ini @@ -0,0 +1,3 @@ +[c5508-ipadn-b-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5508-ipadn-b-002.xht.ini @@ -0,0 +1,3 @@ +[c5508-ipadn-b-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5508-ipadn-b-003.xht.ini @@ -0,0 +1,3 @@ +[c5508-ipadn-b-003.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5509-ipadn-l-000.xht.ini @@ -0,0 +1,3 @@ +[c5509-ipadn-l-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5509-ipadn-l-001.xht.ini @@ -0,0 +1,3 @@ +[c5509-ipadn-l-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5509-ipadn-l-002.xht.ini @@ -0,0 +1,3 @@ +[c5509-ipadn-l-002.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5509-ipadn-l-003.xht.ini @@ -0,0 +1,8 @@ +[c5509-ipadn-l-003.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5509-ipadn-l-004.xht.ini @@ -0,0 +1,4 @@ +[c5509-ipadn-l-004.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5509-padn-l-000.xht.ini @@ -0,0 +1,3 @@ +[c5509-padn-l-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5509-padn-l-001.xht.ini @@ -0,0 +1,3 @@ +[c5509-padn-l-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5510-ipadn-000.xht.ini @@ -0,0 +1,4 @@ +[c5510-ipadn-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5510-padn-001.xht.ini @@ -0,0 +1,3 @@ +[c5510-padn-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5525-fltblck-000.xht.ini @@ -0,0 +1,3 @@ +[c5525-fltblck-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5525-fltinln-000.xht.ini @@ -0,0 +1,3 @@ +[c5525-fltinln-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5525-fltmrgn-000.xht.ini @@ -0,0 +1,3 @@ +[c5525-fltmrgn-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c5526-fltclr-000.xht.ini @@ -0,0 +1,3 @@ +[c5526-fltclr-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c562-white-sp-000.xht.ini @@ -0,0 +1,3 @@ +[c562-white-sp-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c61-ex-len-000.xht.ini @@ -0,0 +1,3 @@ +[c61-ex-len-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c61-rel-len-000.xht.ini @@ -0,0 +1,3 @@ +[c61-rel-len-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c62-percent-000.xht.ini @@ -0,0 +1,3 @@ +[c62-percent-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/css1/c63-color-000.xht.ini @@ -0,0 +1,4 @@ +[c63-color-000.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/clear-applies-to-008.xht.ini @@ -0,0 +1,4 @@ +[clear-applies-to-008.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/clear-clearance-calculation-005.xht.ini @@ -0,0 +1,3 @@ +[clear-clearance-calculation-005.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-005.xht.ini @@ -0,0 +1,3 @@ +[float-005.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-non-replaced-width-007.xht.ini @@ -0,0 +1,3 @@ +[float-non-replaced-width-007.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-non-replaced-width-008.xht.ini @@ -0,0 +1,3 @@ +[float-non-replaced-width-008.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-non-replaced-width-009.xht.ini @@ -0,0 +1,3 @@ +[float-non-replaced-width-009.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-non-replaced-width-010.xht.ini @@ -0,0 +1,3 @@ +[float-non-replaced-width-010.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-non-replaced-width-011.xht.ini @@ -0,0 +1,3 @@ +[float-non-replaced-width-011.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-non-replaced-width-012.xht.ini @@ -0,0 +1,3 @@ +[float-non-replaced-width-012.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-replaced-height-006.xht.ini @@ -0,0 +1,4 @@ +[float-replaced-height-006.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-replaced-width-007.xht.ini @@ -0,0 +1,4 @@ +[float-replaced-width-007.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-replaced-width-008.xht.ini @@ -0,0 +1,4 @@ +[float-replaced-width-008.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/float-replaced-width-009.xht.ini @@ -0,0 +1,4 @@ +[float-replaced-width-009.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-006.xht.ini @@ -0,0 +1,3 @@ +[floats-006.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-009.xht.ini @@ -0,0 +1,3 @@ +[floats-009.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-111.xht.ini @@ -0,0 +1,3 @@ +[floats-111.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-112.xht.ini @@ -0,0 +1,3 @@ +[floats-112.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-113.xht.ini @@ -0,0 +1,3 @@ +[floats-113.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-115.xht.ini @@ -0,0 +1,3 @@ +[floats-115.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-116.xht.ini @@ -0,0 +1,3 @@ +[floats-116.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-117.xht.ini @@ -0,0 +1,3 @@ +[floats-117.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-118.xht.ini @@ -0,0 +1,3 @@ +[floats-118.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-119.xht.ini @@ -0,0 +1,3 @@ +[floats-119.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-120.xht.ini @@ -0,0 +1,3 @@ +[floats-120.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-121.xht.ini @@ -0,0 +1,3 @@ +[floats-121.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-122.xht.ini @@ -0,0 +1,3 @@ +[floats-122.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-123.xht.ini @@ -0,0 +1,3 @@ +[floats-123.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-132.xht.ini @@ -0,0 +1,3 @@ +[floats-132.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-133.xht.ini @@ -0,0 +1,3 @@ +[floats-133.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-134.xht.ini @@ -0,0 +1,3 @@ +[floats-134.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-136.xht.ini @@ -0,0 +1,3 @@ +[floats-136.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-142.xht.ini @@ -0,0 +1,8 @@ +[floats-142.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-143.xht.ini @@ -0,0 +1,8 @@ +[floats-143.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-145.xht.ini @@ -0,0 +1,3 @@ +[floats-145.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/floats-clear/floats-147.xht.ini @@ -0,0 +1,4 @@ +[floats-147.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-011.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-011.xht.ini @@ -1,2 +1,4 @@ [font-011.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-012.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-012.xht.ini @@ -1,2 +1,4 @@ [font-012.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-013.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-013.xht.ini @@ -1,2 +1,4 @@ [font-013.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-014.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-014.xht.ini @@ -1,2 +1,4 @@ [font-014.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-015.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-015.xht.ini @@ -1,2 +1,4 @@ [font-015.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-016.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-016.xht.ini @@ -1,2 +1,4 @@ [font-016.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-029.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-029.xht.ini @@ -1,2 +1,4 @@ [font-029.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-030.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-030.xht.ini @@ -1,2 +1,4 @@ [font-030.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-031.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-031.xht.ini @@ -1,2 +1,4 @@ [font-031.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-032.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-032.xht.ini @@ -1,2 +1,4 @@ [font-032.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-042.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-042.xht.ini @@ -1,2 +1,4 @@ [font-042.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-043.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-043.xht.ini @@ -1,2 +1,4 @@ [font-043.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/font-051.xht.ini @@ -0,0 +1,3 @@ +[font-051.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/font-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[font-applies-to-001.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/font-applies-to-007.xht.ini @@ -0,0 +1,4 @@ +[font-applies-to-007.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/font-applies-to-017.xht.ini @@ -0,0 +1,4 @@ +[font-applies-to-017.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-009.xht.ini @@ -0,0 +1,3 @@ +[font-family-009.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-013.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-013.xht.ini @@ -1,2 +1,5 @@ [font-family-013.xht] - expected: FAIL + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-001.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-001.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-001.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-002.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-002.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-002.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-005.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-005.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-005.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-006.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-006.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-006.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-007.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-007.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-007.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-008.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-008.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-008.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-009.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-009.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-009.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-010.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-010.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-010.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-011.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-011.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-011.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-014.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-014.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-014.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-015.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-015.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-015.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-017.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-family-applies-to-017.xht.ini @@ -1,2 +1,4 @@ [font-family-applies-to-017.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/font-size-120.xht.ini @@ -0,0 +1,3 @@ +[font-size-120.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/font-size-122.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/font-size-122.xht.ini @@ -1,2 +1,4 @@ [font-size-122.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/font-size-124.xht.ini @@ -0,0 +1,3 @@ +[font-size-124.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/fonts-010.xht.ini @@ -0,0 +1,3 @@ +[fonts-010.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/fonts-011.xht.ini @@ -0,0 +1,3 @@ +[fonts-011.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/fonts/fonts-012.xht.ini @@ -0,0 +1,4 @@ +[fonts-012.xht] + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/fonts/fonts-013.xht.ini +++ b/testing/web-platform/meta/css/CSS2/fonts/fonts-013.xht.ini @@ -1,2 +1,5 @@ [fonts-013.xht] - expected: FAIL + expected: + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): PASS + FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/generated-content/content-177.xht.ini @@ -0,0 +1,8 @@ +[content-177.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/inline-svg-100-percent-in-body.html.ini @@ -0,0 +1,4 @@ +[inline-svg-100-percent-in-body.html] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/border-padding-bleed-001.xht.ini @@ -0,0 +1,4 @@ +[border-padding-bleed-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/border-padding-bleed-002.xht.ini @@ -0,0 +1,4 @@ +[border-padding-bleed-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/border-padding-bleed-003.xht.ini @@ -0,0 +1,4 @@ +[border-padding-bleed-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/empty-inline-003.xht.ini @@ -0,0 +1,8 @@ +[empty-inline-003.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-002.xht.ini @@ -0,0 +1,8 @@ +[inline-formatting-context-002.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-003.xht.ini @@ -0,0 +1,8 @@ +[inline-formatting-context-003.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-004.xht.ini @@ -0,0 +1,8 @@ +[inline-formatting-context-004.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-005.xht.ini @@ -0,0 +1,8 @@ +[inline-formatting-context-005.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-006.xht.ini @@ -0,0 +1,8 @@ +[inline-formatting-context-006.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-007.xht.ini @@ -0,0 +1,8 @@ +[inline-formatting-context-007.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-008.xht.ini @@ -0,0 +1,4 @@ +[inline-formatting-context-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-009.xht.ini @@ -0,0 +1,4 @@ +[inline-formatting-context-009.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-011.xht.ini @@ -0,0 +1,4 @@ +[inline-formatting-context-011.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-013.xht.ini @@ -0,0 +1,4 @@ +[inline-formatting-context-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/inline-formatting-context-022.xht.ini @@ -0,0 +1,4 @@ +[inline-formatting-context-022.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/leading-001.xht.ini @@ -0,0 +1,4 @@ +[leading-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-002.xht.ini @@ -0,0 +1,4 @@ +[line-height-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-004.xht.ini @@ -0,0 +1,4 @@ +[line-height-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-005.xht.ini @@ -0,0 +1,4 @@ +[line-height-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-006.xht.ini @@ -0,0 +1,4 @@ +[line-height-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-007.xht.ini @@ -0,0 +1,4 @@ +[line-height-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-013.xht.ini @@ -0,0 +1,4 @@ +[line-height-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-015.xht.ini @@ -0,0 +1,4 @@ +[line-height-015.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-016.xht.ini @@ -0,0 +1,4 @@ +[line-height-016.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-017.xht.ini @@ -0,0 +1,4 @@ +[line-height-017.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-018.xht.ini @@ -0,0 +1,4 @@ +[line-height-018.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-024.xht.ini @@ -0,0 +1,4 @@ +[line-height-024.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-025.xht.ini @@ -0,0 +1,4 @@ +[line-height-025.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-026.xht.ini @@ -0,0 +1,4 @@ +[line-height-026.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-027.xht.ini @@ -0,0 +1,4 @@ +[line-height-027.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-028.xht.ini @@ -0,0 +1,4 @@ +[line-height-028.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-029.xht.ini @@ -0,0 +1,4 @@ +[line-height-029.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-035.xht.ini @@ -0,0 +1,4 @@ +[line-height-035.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-037.xht.ini @@ -0,0 +1,4 @@ +[line-height-037.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-038.xht.ini @@ -0,0 +1,4 @@ +[line-height-038.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-039.xht.ini @@ -0,0 +1,4 @@ +[line-height-039.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-040.xht.ini @@ -0,0 +1,4 @@ +[line-height-040.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-046.xht.ini @@ -0,0 +1,4 @@ +[line-height-046.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-048.xht.ini @@ -0,0 +1,4 @@ +[line-height-048.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-049.xht.ini @@ -0,0 +1,4 @@ +[line-height-049.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-050.xht.ini @@ -0,0 +1,4 @@ +[line-height-050.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-051.xht.ini @@ -0,0 +1,4 @@ +[line-height-051.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-057.xht.ini @@ -0,0 +1,4 @@ +[line-height-057.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-058.xht.ini @@ -0,0 +1,4 @@ +[line-height-058.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-059.xht.ini @@ -0,0 +1,4 @@ +[line-height-059.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-060.xht.ini @@ -0,0 +1,4 @@ +[line-height-060.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-061.xht.ini @@ -0,0 +1,4 @@ +[line-height-061.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-062.xht.ini @@ -0,0 +1,4 @@ +[line-height-062.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-068.xht.ini @@ -0,0 +1,4 @@ +[line-height-068.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-069.xht.ini @@ -0,0 +1,4 @@ +[line-height-069.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-070.xht.ini @@ -0,0 +1,4 @@ +[line-height-070.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-071.xht.ini @@ -0,0 +1,4 @@ +[line-height-071.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-072.xht.ini @@ -0,0 +1,4 @@ +[line-height-072.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-073.xht.ini @@ -0,0 +1,4 @@ +[line-height-073.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-079.xht.ini @@ -0,0 +1,4 @@ +[line-height-079.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-080.xht.ini @@ -0,0 +1,4 @@ +[line-height-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-081.xht.ini @@ -0,0 +1,4 @@ +[line-height-081.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-082.xht.ini @@ -0,0 +1,4 @@ +[line-height-082.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-083.xht.ini @@ -0,0 +1,4 @@ +[line-height-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-084.xht.ini @@ -0,0 +1,4 @@ +[line-height-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-090.xht.ini @@ -0,0 +1,4 @@ +[line-height-090.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-092.xht.ini @@ -0,0 +1,4 @@ +[line-height-092.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-093.xht.ini @@ -0,0 +1,4 @@ +[line-height-093.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-094.xht.ini @@ -0,0 +1,4 @@ +[line-height-094.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-095.xht.ini @@ -0,0 +1,4 @@ +[line-height-095.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-101.xht.ini @@ -0,0 +1,4 @@ +[line-height-101.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-102.xht.ini @@ -0,0 +1,4 @@ +[line-height-102.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-103.xht.ini @@ -0,0 +1,4 @@ +[line-height-103.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-104.xht.ini @@ -0,0 +1,4 @@ +[line-height-104.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-105.xht.ini @@ -0,0 +1,4 @@ +[line-height-105.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-106.xht.ini @@ -0,0 +1,4 @@ +[line-height-106.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-112.xht.ini @@ -0,0 +1,4 @@ +[line-height-112.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-121.xht.ini @@ -0,0 +1,4 @@ +[line-height-121.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-127.xht.ini @@ -0,0 +1,4 @@ +[line-height-127.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-128.xht.ini @@ -0,0 +1,4 @@ +[line-height-128.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/line-height-bleed-002.xht.ini @@ -0,0 +1,4 @@ +[line-height-bleed-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-004.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-005.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-006.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-007.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-008.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-016.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-016.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-017.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-017.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-018.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-018.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-019.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-019.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-020.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-020.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-028.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-028.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-029.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-029.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-030.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-030.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-031.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-031.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-032.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-032.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-040.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-040.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-041.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-041.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-042.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-042.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-043.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-043.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-044.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-044.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-052.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-052.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-053.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-053.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-054.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-054.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-055.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-055.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-056.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-056.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-064.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-064.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-065.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-065.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-066.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-066.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-067.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-067.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-068.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-068.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-076.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-076.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-077.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-077.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-078.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-078.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-079.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-079.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-080.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-088.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-088.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-089.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-089.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-090.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-090.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-091.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-091.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-092.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-092.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-100.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-100.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-101.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-101.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-102.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-102.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-103.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-103.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-104.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-104.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-109.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-109.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-110.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-110.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-111.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-111.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-117a.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-117a.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-118a.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-118a.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-121.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-121.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-004.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-006.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-007.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-008.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-009.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-009.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-012.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-applies-to-015.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-applies-to-015.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-baseline-001.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-baseline-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-baseline-002.xht.ini @@ -0,0 +1,4 @@ +[vertical-align-baseline-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/linebox/vertical-align-baseline-004a.xht.ini +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-baseline-004a.xht.ini @@ -1,2 +1,7 @@ [vertical-align-baseline-004a.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): PASS + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): PASS + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): PASS + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): PASS + FAIL
--- a/testing/web-platform/meta/css/CSS2/linebox/vertical-align-baseline-005a.xht.ini +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-baseline-005a.xht.ini @@ -1,2 +1,7 @@ [vertical-align-baseline-005a.xht] - expected: FAIL + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): PASS + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): PASS + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): PASS + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): PASS + FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-sub-001.xht.ini @@ -0,0 +1,8 @@ +[vertical-align-sub-001.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/linebox/vertical-align-super-001.xht.ini @@ -0,0 +1,8 @@ +[vertical-align-super-001.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-border-padding-001.xht.ini @@ -0,0 +1,3 @@ +[margin-border-padding-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-bottom-091.xht.ini @@ -0,0 +1,3 @@ +[margin-bottom-091.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-bottom-092.xht.ini @@ -0,0 +1,3 @@ +[margin-bottom-092.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-bottom-applies-to-008.xht.ini @@ -0,0 +1,3 @@ +[margin-bottom-applies-to-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-039.xht.ini @@ -0,0 +1,4 @@ +[margin-collapse-039.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-040.xht.ini @@ -0,0 +1,6 @@ +[margin-collapse-040.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-106.xht.ini @@ -0,0 +1,3 @@ +[margin-collapse-106.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-130.xht.ini @@ -0,0 +1,3 @@ +[margin-collapse-130.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-131.xht.ini @@ -0,0 +1,3 @@ +[margin-collapse-131.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-137.xht.ini @@ -0,0 +1,3 @@ +[margin-collapse-137.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-138.xht.ini @@ -0,0 +1,3 @@ +[margin-collapse-138.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-collapse-155.xht.ini @@ -0,0 +1,3 @@ +[margin-collapse-155.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-inline-001.xht.ini @@ -0,0 +1,3 @@ +[margin-inline-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-left-091.xht.ini @@ -0,0 +1,3 @@ +[margin-left-091.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-left-092.xht.ini @@ -0,0 +1,3 @@ +[margin-left-092.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-percentage-inherit-001.xht.ini @@ -0,0 +1,4 @@ +[margin-percentage-inherit-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-right-091.xht.ini @@ -0,0 +1,3 @@ +[margin-right-091.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-right-092.xht.ini @@ -0,0 +1,3 @@ +[margin-right-092.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-top-091.xht.ini @@ -0,0 +1,3 @@ +[margin-top-091.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-top-092.xht.ini @@ -0,0 +1,3 @@ +[margin-top-092.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/margin-top-applies-to-008.xht.ini @@ -0,0 +1,3 @@ +[margin-top-applies-to-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-bottom-080.xht.ini @@ -0,0 +1,3 @@ +[padding-bottom-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-bottom-083.xht.ini @@ -0,0 +1,3 @@ +[padding-bottom-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-bottom-084.xht.ini @@ -0,0 +1,3 @@ +[padding-bottom-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-em-inherit-001.xht.ini @@ -0,0 +1,4 @@ +[padding-em-inherit-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-left-080.xht.ini @@ -0,0 +1,3 @@ +[padding-left-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-left-083.xht.ini @@ -0,0 +1,3 @@ +[padding-left-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-left-084.xht.ini @@ -0,0 +1,3 @@ +[padding-left-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-right-080.xht.ini @@ -0,0 +1,3 @@ +[padding-right-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-right-083.xht.ini @@ -0,0 +1,3 @@ +[padding-right-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-right-084.xht.ini @@ -0,0 +1,3 @@ +[padding-right-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-top-080.xht.ini @@ -0,0 +1,3 @@ +[padding-top-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-top-083.xht.ini @@ -0,0 +1,3 @@ +[padding-top-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/margin-padding-clear/padding-top-084.xht.ini @@ -0,0 +1,3 @@ +[padding-top-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/block-formatting-contexts-004.xht.ini @@ -0,0 +1,3 @@ +[block-formatting-contexts-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/block-non-replaced-height-005.xht.ini @@ -0,0 +1,3 @@ +[block-non-replaced-height-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/block-non-replaced-width-007.xht.ini @@ -0,0 +1,3 @@ +[block-non-replaced-width-007.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/block-replaced-height-006.xht.ini @@ -0,0 +1,4 @@ +[block-replaced-height-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/block-replaced-width-002.xht.ini @@ -0,0 +1,4 @@ +[block-replaced-width-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/block-replaced-width-006.xht.ini @@ -0,0 +1,3 @@ +[block-replaced-width-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/blocks-017.xht.ini @@ -0,0 +1,3 @@ +[blocks-017.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/height-080.xht.ini @@ -0,0 +1,3 @@ +[height-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/height-083.xht.ini @@ -0,0 +1,3 @@ +[height-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/height-084.xht.ini @@ -0,0 +1,3 @@ +[height-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-block-non-replaced-width-001.xht.ini @@ -0,0 +1,3 @@ +[inline-block-non-replaced-width-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-block-non-replaced-width-002.xht.ini @@ -0,0 +1,3 @@ +[inline-block-non-replaced-width-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-block-non-replaced-width-003.xht.ini @@ -0,0 +1,3 @@ +[inline-block-non-replaced-width-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-block-non-replaced-width-004.xht.ini @@ -0,0 +1,3 @@ +[inline-block-non-replaced-width-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-block-replaced-height-006.xht.ini @@ -0,0 +1,4 @@ +[inline-block-replaced-height-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-block-replaced-width-002.xht.ini @@ -0,0 +1,4 @@ +[inline-block-replaced-width-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-block-replaced-width-003.xht.ini @@ -0,0 +1,4 @@ +[inline-block-replaced-width-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-non-replaced-height-002.xht.ini @@ -0,0 +1,3 @@ +[inline-non-replaced-height-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-non-replaced-height-003.xht.ini @@ -0,0 +1,3 @@ +[inline-non-replaced-height-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-non-replaced-width-001.xht.ini @@ -0,0 +1,3 @@ +[inline-non-replaced-width-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-non-replaced-width-002.xht.ini @@ -0,0 +1,3 @@ +[inline-non-replaced-width-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-replaced-height-006.xht.ini @@ -0,0 +1,4 @@ +[inline-replaced-height-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-replaced-width-002.xht.ini @@ -0,0 +1,4 @@ +[inline-replaced-width-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-replaced-width-003.xht.ini @@ -0,0 +1,4 @@ +[inline-replaced-width-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
--- a/testing/web-platform/meta/css/CSS2/normal-flow/inline-replaced-width-009.xht.ini +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inline-replaced-width-009.xht.ini @@ -1,4 +1,6 @@ [inline-replaced-width-009.xht] expected: if os == "win": FAIL if os == "linux": FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inlines-016.xht.ini @@ -0,0 +1,3 @@ +[inlines-016.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/inlines-017.xht.ini @@ -0,0 +1,3 @@ +[inlines-017.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-080.xht.ini @@ -0,0 +1,3 @@ +[max-height-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-083.xht.ini @@ -0,0 +1,3 @@ +[max-height-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-084.xht.ini @@ -0,0 +1,3 @@ +[max-height-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-applies-to-005.xht.ini @@ -0,0 +1,4 @@ +[max-height-applies-to-005.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-applies-to-006.xht.ini @@ -0,0 +1,4 @@ +[max-height-applies-to-006.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-applies-to-008.xht.ini @@ -0,0 +1,3 @@ +[max-height-applies-to-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[max-height-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-applies-to-013.xht.ini @@ -0,0 +1,4 @@ +[max-height-applies-to-013.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-height-applies-to-014.xht.ini @@ -0,0 +1,4 @@ +[max-height-applies-to-014.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-080.xht.ini @@ -0,0 +1,3 @@ +[max-width-080.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-083.xht.ini @@ -0,0 +1,3 @@ +[max-width-083.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-084.xht.ini @@ -0,0 +1,3 @@ +[max-width-084.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-107.xht.ini @@ -0,0 +1,3 @@ +[max-width-107.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-applies-to-001.xht.ini @@ -0,0 +1,4 @@ +[max-width-applies-to-001.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-applies-to-002.xht.ini @@ -0,0 +1,4 @@ +[max-width-applies-to-002.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-applies-to-003.xht.ini @@ -0,0 +1,4 @@ +[max-width-applies-to-003.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-applies-to-004.xht.ini @@ -0,0 +1,4 @@ +[max-width-applies-to-004.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-applies-to-008.xht.ini @@ -0,0 +1,3 @@ +[max-width-applies-to-008.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/max-width-applies-to-012.xht.ini @@ -0,0 +1,8 @@ +[max-width-applies-to-012.xht] + expected: + if debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "6.1.7601") and (processor == "x86") and (bits == 32): FAIL + if debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "win") and (version == "10.0.15063") and (processor == "x86_64") and (bits == 64): FAIL + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL + if not debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/min-height-067.xht.ini @@ -0,0 +1,3 @@ +[min-height-067.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/min-height-068.xht.ini @@ -0,0 +1,3 @@ +[min-height-068.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/min-height-070.xht.ini @@ -0,0 +1,3 @@ +[min-height-070.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/min-height-071.xht.ini @@ -0,0 +1,3 @@ +[min-height-071.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL
new file mode 100644 --- /dev/null +++ b/testing/web-platform/meta/css/CSS2/normal-flow/min-height-078.xht.ini @@ -0,0 +1,3 @@ +[min-height-078.xht] + expected: + if debug and not webrender and e10s and (os == "mac") and (version == "OS X 10.10.5") and (processor == "x86_64") and (bits == 64): FAIL