Bug 1561435 - Avoid formatting sensitive fixtures for dom/, r=standard8

# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D35954

--HG--
extra : source : 38fbb8d45dab9bb49aee901ed4f3e77843b531c3
extra : intermediate-source : d90b525c37ebb5d220a7fc5bac4c93d0736c3139
This commit is contained in:
Victor Porof 2019-07-04 19:39:31 +02:00
Родитель 64a157bec4
Коммит dcd795c16b
11 изменённых файлов: 22 добавлений и 13 удалений

Просмотреть файл

@ -174,6 +174,10 @@ dom/encoding/test/file_utf16_le_bom.js
dom/tests/mochitest/general/test_focusrings.xul dom/tests/mochitest/general/test_focusrings.xul
dom/html/test/test_bug677658.html dom/html/test/test_bug677658.html
# Service workers fixtures which require specific resource caching.
dom/base/test/file_js_cache.js
dom/serviceworkers/test/file_js_cache.js
# Intentional broken files # Intentional broken files
dom/base/test/file_js_cache_syntax_error.js dom/base/test/file_js_cache_syntax_error.js
dom/base/test/jsmodules/test_syntaxError.html dom/base/test/jsmodules/test_syntaxError.html

Просмотреть файл

@ -109,6 +109,13 @@ devtools/server/**
devtools/shared/** devtools/shared/**
devtools/startup/** devtools/startup/**
# Ignore CORS fixtures which require specific resource hashes.
dom/security/test/sri/script*
# Ignore other DOM fixtures with funky chars.
dom/base/test/file_bug687859-charset.js
dom/base/test/file_bug687859-inherit.js
# Ignore devtools debugger files # Ignore devtools debugger files
# Keep in sync with devtools/client/debugger/.prettierignore # Keep in sync with devtools/client/debugger/.prettierignore
devtools/client/debugger/src/workers/parser/tests/fixtures/functionNames.js devtools/client/debugger/src/workers/parser/tests/fixtures/functionNames.js

Просмотреть файл

@ -1 +1 @@
var stringFromCharsetScript = "<EFBFBD>"; var stringFromCharsetScript = "¡";

Просмотреть файл

@ -1 +1 @@
var stringFromInheritScript = "<EFBFBD>"; var stringFromInheritScript = "¡";

Просмотреть файл

@ -1,6 +1,5 @@
function baz() {} function baz() {}
function bar() {} function bar() {}
function foo() { function foo() { bar() }
bar();
}
foo(); foo();

Просмотреть файл

@ -1 +1 @@
var load = true; var load=true;

Просмотреть файл

@ -1 +1 @@
var load = false; var load=false;

Просмотреть файл

@ -1 +1 @@
var load = false; var load=false;

Просмотреть файл

@ -1 +1 @@
var load = true; var load=true;

Просмотреть файл

@ -1,4 +1,4 @@
/* /*
* this file should be loaded, because it has CORS enabled. * this file should be loaded, because it has CORS enabled.
*/ */
window.hasCORSLoaded = true; window.hasCORSLoaded = true;

Просмотреть файл

@ -1,6 +1,5 @@
function baz() {} function baz() {}
function bar() {} function bar() {}
function foo() { function foo() { bar() }
bar();
}
foo(); foo();