Commit Graph

504939 Commits

Author SHA1 Message Date
Justin Wood
7a44b94e0e Bug 1325398 - Make the check for duplicate Treeherder symbols, happen during full graph not target graph stage. r=dustin
MozReview-Commit-ID: GfwAgERKdsL

--HG--
extra : rebase_source : 49a6375df512bc90252c7e165bbe0a06c6500307
extra : source : 3fe8f44c7af63e6b85b181e6c1116cc44d1f0975
2016-12-22 11:45:10 -05:00
Nicolas Chevobbe
6c17e99d36 Bug 1318796 - Open the appropriate tool when clicking on a location in the new console; r=jdescottes
We were always opening the debugger when clicking on the location link,
which could be wrong since we can have CSS warnings, or logs coming from Scratchpad.
So we add the function to open in StyleEditor and Scratchpad, and copy some mochitests
that where testing the interaction with those links.


MozReview-Commit-ID: 73mQNfy199m

--HG--
rename : devtools/client/webconsole/test/browser_webconsole_bug_766001_JS_Console_in_Debugger.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_location_debugger_link.js
rename : devtools/client/webconsole/test/browser_webconsole_scratchpad_panel_link.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_location_scratchpad_link.js
rename : devtools/client/webconsole/test/browser_webconsole_bug_782653_CSS_links_in_Style_Editor.js => devtools/client/webconsole/new-console-output/test/mochitest/browser_webconsole_location_styleeditor_link.js
rename : devtools/client/webconsole/test/test-bug-766001-console-log.js => devtools/client/webconsole/new-console-output/test/mochitest/test-location-debugger-link-console-log.js
rename : devtools/client/webconsole/test/test-bug-766001-js-errors.js => devtools/client/webconsole/new-console-output/test/mochitest/test-location-debugger-link-errors.js
rename : devtools/client/webconsole/test/test-bug-766001-js-console-links.html => devtools/client/webconsole/new-console-output/test/mochitest/test-location-debugger-link.html
rename : devtools/client/webconsole/test/test-bug-782653-css-errors-1.css => devtools/client/webconsole/new-console-output/test/mochitest/test-location-styleeditor-link-1.css
rename : devtools/client/webconsole/test/test-bug-782653-css-errors-2.css => devtools/client/webconsole/new-console-output/test/mochitest/test-location-styleeditor-link-2.css
rename : devtools/client/webconsole/test/test-bug-782653-css-errors.html => devtools/client/webconsole/new-console-output/test/mochitest/test-location-styleeditor-link.html
extra : rebase_source : a8494acb5e450f86fa9cddd34515265fc3494d17
2016-12-01 08:29:43 +01:00
Wander Lairson Costa
642d96f221 Bug 1320756: Disable treeherder reporting for BBB jobs. r=dustin
buildbot-bridge schedules jobs on BB, which already reports to
treeherder.

MozReview-Commit-ID: 5wdMzEpXK9o

--HG--
extra : rebase_source : d544c5ca78e0fd9236060a42a1d33b7c88395ca9
2016-12-28 15:05:29 -02:00
Mike Shal
d7a8d558f6 Bug 1325197 - Add logging around mach python-test; r=gps
In bug 1308472 we are seeing 'make -k check' fail intermittently with
the only apparent error message something like:

make: *** [check] Error 245

This debug should make it more clear which test (if any) is responsible
for setting the return code in 'mach python-test', and whether or not
'mach python-test' is actually reaching the end of the function.

MozReview-Commit-ID: 6IQrZQqs8ij

--HG--
extra : rebase_source : 4d2d4b8b139d7f16bda2b22ce79ab2c84e8fe4c7
2016-12-21 11:12:55 -05:00
Andrew Halberstadt
c1bee16c38 Bug 1325148 - Temporarily disable mochitest leakchecking for directories containing known leaks, r=jmaher
Leak checking in mochitest was failing to turn the jobs orange for a period of time. Several leaks slipped
through in the interim. In order to land the fix ASAP to avoid further bustage, these leaks are being
whitelisted. See the patch or the dependency graph of bug 1325148 for the list of leaks/bugs that are being
disabled.

While these bugs won't show up in treeherder, they are a priority to fix, as they could represent leaks that
are already landed in the code.

MozReview-Commit-ID: JY7Gpvswp4r

--HG--
extra : rebase_source : 0d75d80eccddca31a7d2d1c997a85efdb5a4858c
2016-12-21 16:22:50 -05:00
Andrew Halberstadt
3f3fa209f3 Bug 1325148 - Temporarily disable leakchecking in crashtests on linux, r=jmaher
This is being disabled because of the leak in bug 1325215. It slipped in because leak
checking in reftest was temporarily failing to turn the job orange. We are disabling
leak checking so we can land the fix ASAP and prevent further bustage from slipping
through in the mean time. Once bug 1325215 has been fixed, this should be backed out.

MozReview-Commit-ID: 74VGhHvZtIG

--HG--
extra : rebase_source : c965aa1e229a15948d2d4b55dc16c5904c304ad9
2016-12-21 17:06:29 -05:00
Andrew Halberstadt
148b884e2c Bug 1325148 - Use "error" level in mozleak when logging leak failures, r=jgraham
This fixes a regression when switching to the StructuredOutputParser in mozharness.
Previously, mozleak was relying on the string "TEST-UNEXPECTED-FAIL" to turn the jobs
orange, but it was doing so at the "warning" level. The StructuredOutputParser requires
the "error" level to set the appropriate tbpl_status.

MozReview-Commit-ID: 9u9mwqrkA6E

--HG--
extra : rebase_source : d31ece08232a87713702e713076071fa10fb8324
2016-12-21 14:02:04 -05:00
Ralph Giles
afb3ed504c Bug 1324473 - mozboot: Normalize windows path advice. r=gps
On windows, python generally returns windows-style paths,
with drive letters and backslash for a separator. However,
when we offer advice for updating the PATH variable, we're
talking about the msys environment which uses unix-style
paths. Convert to avoid confusion.

This is intended to turn c:\Users\mozilla\ into /c/Users/mozilla/.

MozReview-Commit-ID: FdB8FvjeCV1

--HG--
extra : rebase_source : 6d9e87b460417254bbe2eb5af3813e22f2126fb1
2016-12-22 15:45:52 -08:00
Al Tsai
6f69bab955 Bug 1299944 - use default runtests.py if objdir doesn't exists. r=gps
MozReview-Commit-ID: LCMslgCDkVS

--HG--
extra : rebase_source : c1c557a4f68e50a0ca8c435bb4b0581f7de0ab50
2016-12-27 17:33:15 +08:00
Henrik Skupin
07af072122 Bug 1243415 - Improve screenshot unit tests and add tests for chrome scope. r=ato
MozReview-Commit-ID: 4p62N4HgnvO

--HG--
extra : rebase_source : 04929b4c56f307cd8f6cec7a2190f2e15f9c2523
2016-12-14 21:40:58 +01:00
Henrik Skupin
f68eddf3dd Bug 1243415 - Check for a valid DOMWindow for screenshot in chrome scope. r=automatedtester
By the webdriver spec the code has to fail with a NoSuchWindowError if the
active window is no longer present.

MozReview-Commit-ID: HFl7yO5ErRn

--HG--
extra : rebase_source : d170e400c1624e680745e7023041413055ef9bd0
2016-12-07 21:47:44 +01:00
Henrik Skupin
c4fb446f19 Bug 1243415 - Add support to take full screenshots in chrome scope. r=automatedtester
MozReview-Commit-ID: 1FmWTEZzt7

--HG--
extra : rebase_source : 34ba86cdfcd400eb4f268a0b3d17be95b2f71c3d
2016-12-07 17:38:14 +01:00
Henrik Skupin
e4153d09c5 Bug 1243415 - Add hash format support for screenshots in chrome scope. r=automatedtester
MozReview-Commit-ID: Dp0vDyYTzX1

--HG--
extra : rebase_source : cf24b8e2a0768d65b420ebeef7ef08e1d553f4f8
2016-12-05 23:06:36 +01:00
Henrik Skupin
31b8911b4b Bug 1243415 - Add highlighting of elements for screenshots in chrome scope. r=ato,automatedtester
MozReview-Commit-ID: 317tqZWwdQf

--HG--
extra : rebase_source : 8e2af4bd68d619ee3e8f19e68dc8e07119d923c4
2016-12-05 21:19:46 +01:00
Henrik Skupin
260407fb18 Bug 1243415 - Make use of capture.js in chrome scope. r=automatedtester
The screenshot code in chrome scope is updated to use the generic capture module,
which is already used for content scope. By that change the code which captures
the canvas makes use of devicePixelRatio now. It means the screenshot will be
scaled depending on the screen configuration, eg. on Andoid this mostly 2.

MozReview-Commit-ID: EBKmJEKVXPQ

--HG--
extra : rebase_source : cd399eb3ee012516b218b9d1a5fd26422ebc9be0
2016-12-28 14:13:31 +01:00
Henrik Skupin
468d519037 Bug 1243415 - Remove B2G related code from screenshot methods. r=automatedtester
MozReview-Commit-ID: 1C0XXOX2zuf

--HG--
extra : rebase_source : 83861ee3f4527dd1bfbe9311a67c1302b42a17c6
2016-12-05 18:37:50 +01:00
Henrik Skupin
03cbd80428 Bug 1243415 - Capture methods should use the window as parameter. r=automatedtester
MozReview-Commit-ID: FfuCSPZtiex

--HG--
extra : rebase_source : fdbba7f7651ec650a5648211544a22480eb0eb3c
2016-12-05 18:27:15 +01:00
Henrik Skupin
e85126f365 Bug 1277090 - Update unit tests for getElementAttribute() changes. r=ato
MozReview-Commit-ID: 4eDpV2MzKLN

--HG--
extra : rebase_source : 696e218e39c360e26414f23f629d9f0904d07d2c
2016-12-12 20:45:58 +01:00
Henrik Skupin
26107073d9 Bug 1277090 - getElementAttribute() has to only return attributes. r=ato
Formerly getElementAttribute() has returned a mix of attributes and
properties. Since getElementProperty() has been added, there is no
need anymore for getElementAttribute() to return conflated data.

MozReview-Commit-ID: 29saWd9PsOX

--HG--
extra : rebase_source : e1dece7586c9b22320db406cfd60d211195f5f18
2016-12-14 22:26:34 +01:00
Henrik Skupin
0ed2e90726 Bug 1277090 - Make use of get_property() in firefox-ui tests where necessary. r=maja_zf
Given that Marionette supports the get_property() method, all the calls to
get_attribute() have to be audited and updated to get_property() if needed.
It's necessary because get_attribute() will only retrieve attributes from now on.

MozReview-Commit-ID: 8SmdNoiG8uP

--HG--
extra : rebase_source : 07a4b71baeaeac13bc29d9b0e1bcf6c4c611ee39
2016-12-20 17:34:18 +01:00
Tomer Cohen
ba0c9d0a06 Bug 1325539 [computed style][rtl] RTL support for devtools computed style (un-rtl) r=jdescottes
MozReview-Commit-ID: 6a80LXbgEdE

--HG--
extra : rebase_source : a9099804e5fa22658241c6ee781320b76752fadf
2016-12-27 17:40:12 +02:00
Cameron McCormack
27d8bc9321 Bug 1326015 - Run AssertTreeIsClean on all style roots. r=xidorn
MozReview-Commit-ID: 1GkRS05tda

--HG--
extra : rebase_source : 5bffe0cdab8b8e14044dc2f02af686e3a83368e8
2016-12-28 16:26:10 +08:00
Carsten "Tomcat" Book
5615a8aaba Bug 1323901 - Bustage fix from glandium 2016-12-28 09:29:31 +01:00
Mike Hommey
74f8bb6e5e Bug 1323901 - Force which to use lowercase extensions on Windows. r=cmanchester+432261
--HG--
extra : rebase_source : 1932e63f7e02a80e5c83ee6bc0963d2c98d7fdd9
2016-12-23 06:28:03 +09:00
Phil Ringnalda
b2b6b5c8d1 Merge m-c to autoland 2016-12-27 20:37:02 -08:00
Phil Ringnalda
94ed5056b1 Merge m-i to m-c, a=merge
MozReview-Commit-ID: JGQ9qyi5pRc
2016-12-27 20:33:25 -08:00
Phil Ringnalda
d376a758dc Merge autoland to m-c, a=merge
MozReview-Commit-ID: HAS6ji3eShV
2016-12-27 20:31:38 -08:00
Phil Ringnalda
f0cfa5aa83 Backed out 3 changesets (bug 1272623) for negative-leaking
Backed out changeset 063782053b4a (bug 1272623)
Backed out changeset e2e4ab888d78 (bug 1272623)
Backed out changeset bf6b592e0700 (bug 1272623)
2016-12-27 20:26:16 -08:00
Masayuki Nakano
0a9fd95b42 Bug 1272623 part.3 HTMLEditRules::ReapplyCachedStyles() shouldn't set style to TypeInState if it's currently applied r=smaug
The target node of HTMLEditRules::ReapplyCachedStyles() may be styled with its parent.  When HTMLEditRules::ReapplyCachedStyles() is called, it shouldn't restore another style cache if it's already specified in current DOM tree.

MozReview-Commit-ID: DKCpQ8YyW7

--HG--
extra : rebase_source : 5aad5caeee98301a1ad0035b5d2efa3cd545a0d0
2016-12-28 09:04:59 +09:00
ffxbld
14daa764d4 No bug, Automated blocklist update from host bld-linux64-spot-139 - a=blocklist-update 2016-12-27 06:43:58 -08:00
ffxbld
e6b816a8bf No bug, Automated HPKP preload list update from host bld-linux64-spot-139 - a=hpkp-update 2016-12-27 06:43:56 -08:00
ffxbld
6996a4d8f9 No bug, Automated HSTS preload list update from host bld-linux64-spot-139 - a=hsts-update 2016-12-27 06:43:53 -08:00
Tom Schuster
3ed240d6b8 Bug 1325927 - Reorder JSValueTag to match JSValueType. r=jandem 2016-12-27 13:31:07 +01:00
Masayuki Nakano
9467308378 Bug 1272623 part.2 Add automated tests of testing cached inline style at editing r=smaug
MozReview-Commit-ID: 1kIfj3GgCcY

--HG--
extra : rebase_source : d530201a3ec723c7a4f019f8b27efbdf0a62ff9c
2016-12-27 18:27:10 +09:00
Michael Layzell
b86c1ff10f Bug 1272623 part.1 Don't destroy nodes during text replacement due to spell checking r=masayuki
Spellchecker shouldn't delete selection with nsIEditor::eStrip before calling nsIPlaintextEditor::InsertText() because it causes removing some parent nodes which may have some style rules.

MozReview-Commit-ID: 2VJhFFbTzrh

--HG--
extra : rebase_source : 7fb65318c9b28527f593e2fac96586447e268423
2016-12-27 18:41:07 +09:00
Ryan VanderMeulen
51aa673e28 Merge inbound to m-c. a=merge 2016-12-27 00:00:22 -05:00
Ryan VanderMeulen
ddf74ed5ef Merge autoland to m-c. a=merge 2016-12-26 23:58:58 -05:00
Pip Cet
95c7ee0695 Bug 1322681 - JS shell: wait for async tasks in DrainJobQueue(); r=bbouvier
Changes DrainJobQueue() to wait for async tasks launched by queued
jobs, rather than ignoring them and potentially causing segfaults.

MozReview-Commit-ID: 3fMoNHzdlUW

--HG--
extra : rebase_source : 1dcd3fd927cf648d2b17b9c894f364324cb80122
2016-12-26 19:00:56 +01:00
Ryan VanderMeulen
72b1557225 Merge m-c to inbound. a=merge 2016-12-27 00:01:04 -05:00
Ethan Lin
0b1384e9e5 Bug 1322079 - Set CreateBorderLayer to pure virtual function and let nsDisplayBorder return LAYER_ACTIVE. r=mattwoodrow
MozReview-Commit-ID: 6zGq7ymIkO0
2016-12-27 11:40:40 +08:00
Tom Schuster
c885ebf96c Bug 1324566 - Port Baseline GlobalNameValue to CacheIR. r=jandem 2016-12-26 17:50:31 +01:00
Jan de Mooij
158805801d Bug 1325075 - Fix Value::isGCThing footgun, stop returning true for NullValue. r=jonco,baku 2016-12-26 16:40:21 +01:00
ffxbld
8f371625fe No bug, Automated HPKP preload list update from host bld-linux64-spot-030 - a=hpkp-update 2016-12-26 06:47:00 -08:00
ffxbld
c4a4403f94 No bug, Automated HSTS preload list update from host bld-linux64-spot-030 - a=hsts-update 2016-12-26 06:46:58 -08:00
Heiher
93d219b245 Bug 1323136 - wasm: MIPS: Do bounds check in 32-bit. r=nbp
---
 js/src/jit/mips-shared/Assembler-mips-shared.cpp   |  9 +++++++
 js/src/jit/mips-shared/Assembler-mips-shared.h     |  2 ++
 .../jit/mips-shared/MacroAssembler-mips-shared.cpp | 11 +++++++++
 .../jit/mips-shared/MacroAssembler-mips-shared.h   |  7 ++++++
 js/src/jit/mips32/Assembler-mips32.cpp             | 28 +++++++---------------
 js/src/jit/mips32/Assembler-mips32.h               |  1 -
 js/src/jit/mips32/MacroAssembler-mips32-inl.h      |  2 +-
 js/src/jit/mips32/MacroAssembler-mips32.cpp        | 11 ---------
 js/src/jit/mips32/MacroAssembler-mips32.h          |  7 ------
 js/src/jit/mips64/MacroAssembler-mips64-inl.h      |  6 ++++-
 js/src/jit/mips64/MacroAssembler-mips64.h          |  6 -----
 11 files changed, 44 insertions(+), 46 deletions(-)
2016-12-26 22:16:20 +08:00
Julian Descottes
ea60a24a01 Bug 1323193 - remove extra semi-colon in markup.css;r=me
MozReview-Commit-ID: JqoyfdU4wEa

--HG--
extra : rebase_source : 93f5f6924027456cebabbc4f5a44ce01df93b99b
2016-12-26 10:38:25 +01:00
Makoto Kato
45e40588b0 Bug 1325843 - Use explicitly static method call for EditorBase::IsTextNode. r=masayuki
IsTextNode is static method, so we should use explicitly static method call into EditRule.

MozReview-Commit-ID: EX2BbbN2vNJ

--HG--
extra : histedit_source : 4194477320ffad62da36b272239d1443bb6c88b6
2016-12-26 14:32:57 +09:00
Jeff Gilbert
3f9fc7d30d Bug 1325516 (flattened) - Misc fixes and simplify IMPL_COLOR_READ_FORMAT/TYPE and ensure that we only return valid ones. - r=daoshengmu 2016-12-25 13:44:49 -08:00
Jeff Gilbert
798acabef4 Bug 1325500 (flattened) - Fix DrawRangeElements impl and require size=4 for packed int types. - r=daoshengmu
MozReview-Commit-ID: B3YpgZn48Nl
2016-12-25 13:44:47 -08:00
Jeff Gilbert
b669f45f40 Bug 1325486 - TFBufferMode defaults to INTERLEAVED, and UniformMatrix's transpose arg should be passed to GL. - r=daoshengmu
MozReview-Commit-ID: 7yc2u0GQDnr
2016-12-25 13:44:44 -08:00