author | Ryan VanderMeulen <ryanvm@gmail.com> |
Fri, 27 Feb 2015 12:53:15 -0500 | |
changeset 231138 | 9dd9d1e5b43cd8cca7a2313f13517f3dbea489fc |
parent 231137 | d4516fac0a6f6d2562bdab03420a070030235bb4 |
child 231155 | ff17afa674114c7ed0370e6da03e48a4e0ceecb6 |
push id | 28344 |
push user | ryanvm@gmail.com |
push date | Fri, 27 Feb 2015 18:20:08 +0000 |
treeherder | mozilla-central@9dd9d1e5b43c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1137765 |
milestone | 39.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
|
browser/devtools/styleinspector/test/browser_styleinspector_context-menu-copy-color_01.js | file | annotate | diff | comparison | revisions |
--- a/browser/devtools/styleinspector/test/browser_styleinspector_context-menu-copy-color_01.js +++ b/browser/devtools/styleinspector/test/browser_styleinspector_context-menu-copy-color_01.js @@ -4,16 +4,19 @@ "use strict"; // Test "Copy color" item of the context menu #1: Test _isColorPopup. const TEST_COLOR = "#123ABC"; const COLOR_SELECTOR = "span[data-color]"; add_task(function* () { + // Test is slow on Linux EC2 instances - Bug 1137765 + requestLongerTimeout(2); + const TEST_DOC = '<html> \ <body> \ <div style="color: ' + TEST_COLOR + '; \ margin: 0px; \ background: ' + TEST_COLOR + ';"> \ Test "Copy color" context menu option \ </div> \ </body> \