Commit Graph

13281 Commits

Author SHA1 Message Date
Jared Wein
1cb5765cb1 Bug 1126282 - Add a 1.25x faster video speed option in the video controls. r=gijs
MozReview-Commit-ID: GRf265vktMR
2016-05-09 09:39:00 +02:00
Carsten "Tomcat" Book
31585b3be9 Merge mozilla-central to fx-team 2016-05-10 12:15:50 +02:00
Carsten "Tomcat" Book
4f104b2da1 merge mozilla-inbound to mozilla-central a=merge 2016-05-10 12:05:56 +02:00
Ryan VanderMeulen
89924435a4 No bug - Enable some e10s that pass and add some more annotations to ones that don't. 2016-05-09 17:01:16 -04:00
Boris Zbarsky
733b0b9c6f Bug 1268047 part 2. Change javascript: evaluation to ignore the return value if it's not a string. r=peterv 2016-05-09 22:25:40 -04:00
Gijs Kruitbosch
d06478992a Bug 1241085 - part 3: actually fix about:privatebrowsing clearing the URL bar, r=mconley
MozReview-Commit-ID: JB3GPKsfmTs
2016-04-28 20:03:38 +01:00
Gijs Kruitbosch
bb3cc1f15c Bug 1241085 - part 2: rip out userTypedClear and replace it with more self-documenting stuff, r=mconley
userTypedClear was used for two cases:
1) to keep track of whether we were in the middle of a loadURI call. This use is replaced by inLoadURI, which is
more sane when using e10s (though it's hard to be precise there because we're sending all web navigation calls to
the content process and this introduces a degree of asynchronousness that we just have to live with...).
2) to keep track of whether we were between a network start and a corresponding network stop, and whether the user
typed since the load properly started. This is now tracked on a small object on the browser binding, which has
appropriately named method so we're not just incrementing some magic number but actually understand what
we're saying, and so the information we get out (did the user type since this load started or not?) makes sense.

Note that we're keeping userTypedClear in session store information in order to remain backwards compatible.
It becomes a simple boolean-stored-as-int (1 or 0) that indicates whether we quit/crashed/stopped while a load
was pending, or not.

MozReview-Commit-ID: 5NbmVueocC7
2016-04-28 19:51:36 +01:00
Nihanth Subramanya
6180906f8a Bug 1267514 - Fix about:neterror generic fallback text when there is no available title/description for the error. r=Gijs
MozReview-Commit-ID: 4no91xMhDYQ
2016-05-03 16:12:32 -07:00
Nihanth Subramanya
0fe05ce14f Bug 1246162 - Position advanced panels absolutely below the main content in about:neterror. r=Gijs
MozReview-Commit-ID: Vzk0HnPifM
2016-04-26 14:42:15 -07:00
Carsten "Tomcat" Book
d3f0b36fd9 Merge mozilla-central to fx-team 2016-05-09 11:20:26 +02:00
Carsten "Tomcat" Book
fbc07c9db3 merge mozilla-inbound to mozilla-central a=merge 2016-05-09 11:17:59 +02:00
Gijs Kruitbosch
1915625f30 Bug 1269238 - allow text-links to use origin principals for link opening checks, r=mikedeboer
MozReview-Commit-ID: HPWxEyNEsps
2016-05-06 10:05:47 +01:00
Marco Bonardo
7d93b644b6 Bug 1223728 - Remove the unifiedcomplete pref, the urlinline component and stop bundling the old autocomplete component in Firefox. r=adw
MozReview-Commit-ID: Ee08mDGxBjJ
2016-05-05 00:14:51 +02:00
Astley Chen
87ae888917 bug 859301 : Part 2 - unprefix internal css files. r=dbaron
MozReview-Commit-ID: CRyp3zQxayh
2016-05-04 13:31:24 +08:00
Jeremiah Orem
e6d405fb1e Bug 1174254 - Disable FTP protocol guessing. r=mcmanus 2016-04-28 18:00:00 -04:00
Joel Maher
a9b4177b50 Bug 1057615 - Intermittent browser_bug561636.js,browser_bug595507.js | disable on windows. r=RyanVM
MozReview-Commit-ID: HdfN01y40bB
2016-05-06 15:41:55 -04:00
Mike Conley
5921bb0085 Bug 1247137 - Show spinner if switching away from browser that goes away immediately. r=billm
MozReview-Commit-ID: ACQ7cBNn1TE
2016-05-04 12:36:01 -07:00
Gijs Kruitbosch
75f9f2fa5c Backed out changesets b386e97721cf, 386b9c750bd2, 3c86861912bb (bug 1241085) because the about:newtab URI is now kept across sessions
MozReview-Commit-ID: EVv6M6x9F44
2016-05-05 17:45:58 +01:00
Alastor Wu
efcaa10efa Bug 1235612 - Part 7: Modify the samplerate of the audio.ogg. r=jwwang
MozReview-Commit-ID: KD6GkT6yq5u

After landing bug 1264199, the audible-checking has possibility to fail when the input needs to be resamling.
Resampling only happens when the input sampling rate is not equals to device out sampling rate and we don't want the sampling problem affecting our audio-playback tests, so we change the sampling rate of these ogg file to avoid resampling.

It is a WORKAROUND and should be reverted after landing bug 1269672.
2016-05-04 20:04:57 +08:00
Alastor Wu
acade030da Bug 1235612 - Part 6: Add and modify test cases. r=baku
MozReview-Commit-ID: FqIvjv7t2Vp
2016-05-03 17:59:49 +08:00
Ryan VanderMeulen
5ed22bae81 Merge m-c to inbound. a=merge
CLOSED TREE
2016-05-05 10:06:54 -04:00
Gijs Kruitbosch
9912012213 Bug 1241085 - part 3: actually fix about:privatebrowsing clearing the URL bar, r=mconley
MozReview-Commit-ID: JB3GPKsfmTs
2016-04-28 20:03:38 +01:00
Gijs Kruitbosch
3e97b45a10 Bug 1241085 - part 2: rip out userTypedClear and replace it with more self-documenting stuff, r=mconley
userTypedClear was used for two cases:
1) to keep track of whether we were in the middle of a loadURI call. This use is replaced by inLoadURI, which is
more sane when using e10s (though it's hard to be precise there because we're sending all web navigation calls to
the content process and this introduces a degree of asynchronousness that we just have to live with...).
2) to keep track of whether we were between a network start and a corresponding network stop, and whether the user
typed since the load properly started. This is now tracked on a small object on the browser binding, which has
appropriately named method so we're not just incrementing some magic number but actually understand what
we're saying, and so the information we get out (did the user type since this load started or not?) makes sense.

Note that we're keeping userTypedClear in session store information in order to remain backwards compatible.
It becomes a simple boolean-stored-as-int (1 or 0) that indicates whether we quit/crashed/stopped while a load
was pending, or not.

MozReview-Commit-ID: 5NbmVueocC7
2016-04-28 19:51:36 +01:00
Dão Gottwald
356268be93 Bug 1250203 - Re-populate recent bookmarks when a bookmark gets deleted while the menu is open. r=mak 2016-05-04 16:52:40 +02:00
Dave Huseby
ad5bcd5922 Bug 1233885 - fix up docInfo and permission manager to use default user context. r=sicking
(HEAD -> oa, refs/patches/oa/Bug_1233885)
fix up docInfo and permission manager to use default user context
2016-03-26 15:07:00 +01:00
Xidorn Quan
87178aef57 Bug 1267568 part 6 - Send fullscreen message before triggering any potential reflow. r=dao
MozReview-Commit-ID: 1QwMvxDz6QS
2016-05-03 17:58:57 +10:00
Sebastian Hengst
4ce01376eb Bug 1269219 - Replace remnant |gAppUpdater.doUpdate()| with |gAppUpdater.startDownload()| to fix updating from 'About Firefox' dialog. r=rstrong
MozReview-Commit-ID: GHpZi3cZJcf
2016-05-02 15:53:57 +02:00
Carsten "Tomcat" Book
871807b050 Merge mozilla-central to mozilla-inbound 2016-05-09 11:21:30 +02:00
Gijs Kruitbosch
bf8d48bd33 Bug 1249362 - initialize remote browser's contentPrincipal to a null principal, r=mconley
MozReview-Commit-ID: 4cglQaTLf7l
2016-05-06 12:19:09 +01:00
Carsten "Tomcat" Book
7eb9095b50 merge mozilla-inbound to mozilla-central a=merge 2016-05-02 11:25:32 +02:00
Matt Brubeck
d9d992c252 Bug 943888 - Always keep the bookmark star button enabled [r=mak]
MozReview-Commit-ID: 27ee1dbLSM1
2016-04-25 13:59:00 -07:00
Scott Wu
e88688a3cb Bug 446171 - Part 1: Get page titles from tab and not depend on history; r=mak
MozReview-Commit-ID: EUQv2p9LxtY
2016-03-21 14:57:18 +08:00
Wes Kocher
f5030d6e24 Merge m-c to fx-team a=merge
MozReview-Commit-ID: 3H9BxQQQnNI
2016-04-29 16:05:30 -07:00
Robert Strong
7a928c7499 Bug 1267891 - browser changes - Remove license capability from application update. r=felipc 2016-04-29 10:01:25 -07:00
Robert Strong
0f0d448ce7 Bug 1262880 - browser changes - Remove add-on compatibility check from application update. r=felipc 2016-04-29 10:01:00 -07:00
Jared Wein
fea4ee81d0 Bug 1268159 - followup, update some tests that got missed in the conversion from straight quotes to curly quotes and revert the Sync client name change until a follow-up bug can track down the deeper regression. r=me on a CLOSED TREE.
MozReview-Commit-ID: 13k7s3n7jz7
2016-04-29 12:10:34 -04:00
Jared Wein
430f39e4c7 Bug 1268159 - Use GreD in addition to XCurProcD for browser_misused_characters_in_strings.js to cover more string files. r=gijs
MozReview-Commit-ID: IlC170W0nlG
* * *
[mq]: temp

MozReview-Commit-ID: GF0k4zvONPD
2016-04-29 09:28:48 -04:00
Dão Gottwald
7412b86381 Bug 1248268 - Add option for disabling the "Recently Bookmarked" UI. r=mak 2016-04-29 13:43:59 +02:00
Marco Bonardo
5f2d11614f Bug 907001 - Location bar is slow with long text runs.r=adw
MozReview-Commit-ID: KIfaGfsm26x
2016-04-28 13:59:24 +02:00
Carsten "Tomcat" Book
30b801493e merge mozilla-inbound to mozilla-central a=merge 2016-04-28 16:30:24 +02:00
Kit Cambridge
a56986b492 Bug 1239042 - Show sync status for a minimum of 1.6s. r=markh
MozReview-Commit-ID: FKpSe9r6Td9
2016-04-22 07:19:16 -07:00
Shane Caraveo
12a45ed80c Bug 1253604 fix share breakage after canceling share on fb, r=markh 2016-04-27 09:47:01 -07:00
Gijs Kruitbosch
1f48f5aa92 Bug 1267289 - add more URL bar tests and fix issue with error pages, r=mikedeboer,mconley
This adds tests for issues brought up in bug 231393, bug 264610, bug 302575 and bug 1129564,
all of which fed into the current implementation of userTypedClear/userTypedValue. I intend
to move us away from userTypedClear, but I'm keen not to regress any of these issues, so
I'm adding automated tests to ensure that doesn't happen.

MozReview-Commit-ID: 1up2MIXzkzG
2016-04-25 17:27:35 +01:00
Carsten "Tomcat" Book
6819585194 merge mozilla-inbound to mozilla-central a=merge 2016-04-27 11:57:21 +02:00
Drew Willcoxon
54418dd516 Bug 1266375 - Don't remove max-width on awesomebar popup items when the popup is open. r=mak
MozReview-Commit-ID: GttGOvRU6vf
2016-04-26 12:46:42 -07:00
Henry Chang
98bd45999f Bug 1178337 - Part 1: Supports all referrer policies for element atrributes. r=sicking, r=Gijs, r=mcmanus 2016-04-27 10:26:57 +08:00
Timothy Guan-tin Chien
0bab46ef0a Bug 1266372 - De-dup code to ReaderMode.leaveReaderMode, r=gijs
Additionally, implements ReaderMode.enterReaderMode.

MozReview-Commit-ID: 8MPvFhX4ws7
2016-04-26 12:52:50 +08:00
Phil Ringnalda
f48f4d0b61 Back out f1e0c231d7e4 (bug 1253604) for failures in at least browser_share.js
CLOSED TREE
2016-04-25 20:41:11 -07:00
Phil Ringnalda
5a9cc67bec Back out 5fdb0bf1527a (bug 1257723) for test failures, probably at least in browser_aboutHome_activation.js and browser_mozLoop_chat.js
CLOSED TREE
2016-04-25 20:40:22 -07:00
Shane Caraveo
1ddc5fcc75 Bug 1257723 move to using messagemanager for some events, r=markh 2016-03-17 18:44:03 -07:00