author | Simon Pieters <zcorpan@gmail.com> |
Wed, 06 Jun 2018 14:52:36 +0000 | |
changeset 422153 | 0b6c9041425cc478d6828edc7146db6b677f94e7 |
parent 422152 | f41374897ca8a132f34a1a3d0ea16d04461f2f47 |
child 422154 | cb4d4246c6c0e8fe1fc0761c943dd6e8ab005779 |
push id | 34122 |
push user | ebalazs@mozilla.com |
push date | Mon, 11 Jun 2018 09:37:00 +0000 |
treeherder | mozilla-central@9941eb8c3b29 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | testonly |
bugs | 1464338, 11159 |
milestone | 62.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/testing/web-platform/tests/resources/testharness.js +++ b/testing/web-platform/tests/resources/testharness.js @@ -2993,115 +2993,115 @@ policies and contribution forms [3]. addEventListener("unhandledrejection", function(e){ error_handler(e.reason); }, false); } test_environment.on_tests_ready(); /** * Stylesheet */ - var stylesheetContent = ` -html { - font-family:DejaVu Sans, Bitstream Vera Sans, Arial, Sans; -} - -#log .warning, -#log .warning a { - color: black; - background: yellow; -} - -#log .error, -#log .error a { - color: white; - background: red; -} - -section#summary { - margin-bottom:1em; -} - -table#results { - border-collapse:collapse; - table-layout:fixed; - width:100%; -} - -table#results th:first-child, -table#results td:first-child { - width:4em; -} - -table#results th:last-child, -table#results td:last-child { - width:50%; -} - -table#results.assertions th:last-child, -table#results.assertions td:last-child { - width:35%; -} - -table#results th { - padding:0; - padding-bottom:0.5em; - border-bottom:medium solid black; -} - -table#results td { - padding:1em; - padding-bottom:0.5em; - border-bottom:thin solid black; -} - -tr.pass > td:first-child { - color:green; -} - -tr.fail > td:first-child { - color:red; -} - -tr.timeout > td:first-child { - color:red; -} - -tr.notrun > td:first-child { - color:blue; -} - -.pass > td:first-child, .fail > td:first-child, .timeout > td:first-child, .notrun > td:first-child { - font-variant:small-caps; -} - -table#results span { - display:block; -} - -table#results span.expected { - font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace; - white-space:pre; -} - -table#results span.actual { - font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace; - white-space:pre; -} - -span.ok { - color:green; -} - -tr.error { - color:red; -} - -span.timeout { - color:red; -} - -span.ok, span.timeout, span.error { - font-variant:small-caps; -} -`; + var stylesheetContent = "\ +html {\ + font-family:DejaVu Sans, Bitstream Vera Sans, Arial, Sans;\ +}\ +\ +#log .warning,\ +#log .warning a {\ + color: black;\ + background: yellow;\ +}\ +\ +#log .error,\ +#log .error a {\ + color: white;\ + background: red;\ +}\ +\ +section#summary {\ + margin-bottom:1em;\ +}\ +\ +table#results {\ + border-collapse:collapse;\ + table-layout:fixed;\ + width:100%;\ +}\ +\ +table#results th:first-child,\ +table#results td:first-child {\ + width:4em;\ +}\ +\ +table#results th:last-child,\ +table#results td:last-child {\ + width:50%;\ +}\ +\ +table#results.assertions th:last-child,\ +table#results.assertions td:last-child {\ + width:35%;\ +}\ +\ +table#results th {\ + padding:0;\ + padding-bottom:0.5em;\ + border-bottom:medium solid black;\ +}\ +\ +table#results td {\ + padding:1em;\ + padding-bottom:0.5em;\ + border-bottom:thin solid black;\ +}\ +\ +tr.pass > td:first-child {\ + color:green;\ +}\ +\ +tr.fail > td:first-child {\ + color:red;\ +}\ +\ +tr.timeout > td:first-child {\ + color:red;\ +}\ +\ +tr.notrun > td:first-child {\ + color:blue;\ +}\ +\ +.pass > td:first-child, .fail > td:first-child, .timeout > td:first-child, .notrun > td:first-child {\ + font-variant:small-caps;\ +}\ +\ +table#results span {\ + display:block;\ +}\ +\ +table#results span.expected {\ + font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;\ + white-space:pre;\ +}\ +\ +table#results span.actual {\ + font-family:DejaVu Sans Mono, Bitstream Vera Sans Mono, Monospace;\ + white-space:pre;\ +}\ +\ +span.ok {\ + color:green;\ +}\ +\ +tr.error {\ + color:red;\ +}\ +\ +span.timeout {\ + color:red;\ +}\ +\ +span.ok, span.timeout, span.error {\ + font-variant:small-caps;\ +}\ +"; })(this); // vim: set expandtab shiftwidth=4 tabstop=4: