Nathan Froyd
974d8120f2
Bug 1161627 - part 2 - machine-convert TemporaryRef<T> to already_AddRefed<T>; r=ehsan
...
This conversion was done with the script:
find . -name '*.cpp' -o -name '*.h' -o -name '*.mm' -o -name '*.idl' | \
egrep -v 'cairo-win32-refptr.h|RefPtr.h|TestRefPtr.cpp' | \
xargs sed -i -e 's/mozilla::TemporaryRef</already_AddRefed</g' \
-e 's/TemporaryRef</already_AddRefed</g'
Manual fixups were performed in the following instances:
- We handled mfbt/RefPtr.h manually so as to not convert TemporaryRef itself
into already_AddRefed.
- The following files had explicit Move() calls added to make up for the lack
of a copy constructor on already_AddRefed:
dom/base/ImageEncoder.cpp
dom/media/MediaTaskQueue.{h,cpp}
dom/media/webaudio/PannerNode.cpp
- A redundant overload for MediaTaskQueue::Dispatch was deleted.
- A few manual fixups were required in mfbt/tests/TestRefPtr.cpp.
- Comments, using declarations, and forward declarations relating to
TemporaryRef in dom/canvas/ and gfx/layers/ were changed to refer to
already_AddRefed.
2015-06-17 10:00:52 -04:00
Patrick McManus
cc04db5e46
bug 1174152 - crossorigin attribute for link rel=preconnect r=hsivonen
2015-06-19 17:11:42 -04:00
Ryan VanderMeulen
5f5c327690
Backed out changeset 8b4e4083639e (bug 1171931) for B2G debug emulator bustage.
2015-06-25 19:48:42 -04:00
Juan Gomez
702a59d135
Bug 1171931 - Refactor duplicated code using XRE_IsParent/ContentProcess. r=froydnj
...
--HG--
extra : rebase_source : 2ecbe6c1dd8a7ad8dc529b53349ad431cf1116c9
2015-06-24 14:11:00 -04:00
Randall Barker
d87d65937e
Bug 1173844 - Video would not playback after seek seekbar if media.autoplay.enabled = false. r=cpearce
...
--HG--
extra : rebase_source : b2c99d37c266357d4b3eb093c7b167f199bea7b0
2015-06-19 17:12:00 +02:00
Andrea Marchesini
46ed66e379
Bug 1174731 - patch 1 - Make searchParams attribute readonly, r=smaug
2015-06-24 12:15:59 -07:00
Ryan VanderMeulen
c848d2ee9b
Backed out 7 changesets (bug 1113086) for various Gaia test failures.
...
Backed out changeset eb7e79a2c9e9 (bug 1113086)
Backed out changeset 3562a09b2bf3 (bug 1113086)
Backed out changeset 127cde112795 (bug 1113086)
Backed out changeset 84dc903151c1 (bug 1113086)
Backed out changeset 42dc5dbabdcd (bug 1113086)
Backed out changeset e1ad68356a74 (bug 1113086)
Backed out changeset 86b32f5442f2 (bug 1113086)
2015-06-18 13:00:25 -04:00
Andrea Marchesini
39b2fb9a00
Bug 1113086 - AudioChannel policy in Browser API - patch 1 - BrowserElementAudioChannel, r=ehsan
...
--HG--
rename : dom/browser-element/mochitest/test_browserElement_inproc_GetContentDimensions.html => dom/browser-element/mochitest/test_browserElement_inproc_AudioChannel.html
rename : dom/browser-element/mochitest/test_browserElement_oop_GetContentDimensions.html => dom/browser-element/mochitest/test_browserElement_oop_AudioChannel.html
2015-06-18 15:56:58 +01:00
Masayuki Nakano
ecdd7a7f0f
Bug 549674 part.1 Commit composition string at setting value of <input> or <textarea> r=smaug
2015-06-18 23:56:20 +09:00
Jonathan Watt
a62bfe14df
Bug 1175860 - Add some documentation to UploadLastDir to make its workings clearer. r=baku
2015-06-08 14:01:01 +01:00
Daosheng Mu
72e5400a5f
Bug 987498 - Part 2 - HTMLMediaElement supports playback OverlayImage. r=roc
2015-06-09 23:22:00 +02:00
Andrea Marchesini
c627d235d3
Bug 1170274 - patch 2 - A better string parser for nsGenericHTMLElement::GetURIListAttr, r=ehsan CLOSED TREE
2015-06-17 17:00:37 +01:00
Carsten "Tomcat" Book
325cd7219a
Backed out changeset feb7cd25aafb (bug 1174152) for mulet timeout in test_rel_preconnect.html
...
--HG--
extra : rebase_source : aabdc3669df5b252c4373b9fb6049565e6560a0c
2015-06-17 16:58:57 +02:00
Andrea Marchesini
4e81d0cdf5
Bug 1170274 - A better string parser for nsGenericHTMLElement::GetURIListAttr, r=ehsan
2015-06-17 15:02:18 +01:00
Carsten "Tomcat" Book
83a5ac66d0
Backed out changeset 689ce5819b24 (bug 1170274) for w2 test failures
2015-06-17 15:59:45 +02:00
Patrick McManus
78c4fb4975
bug 1174152 link rel=preconnect crossorigin=anonymous r=hsivonen
2015-05-06 10:09:27 -04:00
Andrea Marchesini
e408c5990a
Bug 1170274 - A better string parser for nsGenericHTMLElement::GetURIListAttr, r=ehsan
2015-06-17 12:43:53 +01:00
Ehsan Akhgari
2a127a2d67
Bug 1147668 - Correctly reflect video and track RequestContext values; r=smaug
2015-06-16 21:18:08 -04:00
Brian Birtles
c569ddfd86
Bug 1165203 - Make calls to load() upgrade preload=none to preload=metadata; r=cpearce
...
--HG--
extra : commitid : H2xIreNh4Pq
extra : histedit_source : 8ff5e2d2e12b21b8e3f04dc5ab81584b6fc929fc
2015-06-17 09:02:51 +09:00
Wes Kocher
3ae1cac20c
Backed out changeset f46a712edf7e (bug 1147668) for assertion failures in test_access_control.html CLOSED TREE
2015-06-16 14:48:15 -07:00
Ehsan Akhgari
103e06656c
Bug 1147668 - Correctly reflect video and track RequestContext values; r=smaug
2015-06-16 14:49:58 -04:00
Ryan VanderMeulen
887437e1c0
Backed out changeset e44f689c3756 (bug 1170274) for reflection-embedded.html w-p-t failures.
...
CLOSED TREE
2015-06-16 11:31:59 -04:00
Andrea Marchesini
f512499e19
Bug 1170274 - Better tokenizer function for nsGenericHTMLElement::GetURIListAttr. r=ehsan
...
--HG--
extra : rebase_source : 02266cf6f57afd6a1a61daecb22d2576247b5f57
2015-06-16 08:52:12 -04:00
Jonathan Watt
04e51d3039
Bug 1173390 - Remove the majority of the old directory picker implementation to prepare for the new implementation under bug 1164310. r=baku
2015-06-06 12:41:47 +01:00
Ehsan Akhgari
aeecf7b38d
Backed out changeset 7210dfe7ad78 (Bug 1147668) for test failure
2015-06-15 23:20:02 -04:00
Ehsan Akhgari
0096b1db1f
Bug 1147668 - Correctly reflect video and track RequestContext values; r=smaug
2015-06-15 22:08:06 -04:00
Cameron McCormack
af75a2ac88
Bug 1171342 - Store contenteditable.css and designmode.css in the style sheet cache. r=jwatt
2015-06-16 11:34:48 +10:00
Olli Pettay
46ce50f742
Bug 1173215, don't set mChromeXHRDocURI when dealing with non-XHR documents, r=bz
2015-06-13 02:34:52 +03:00
Xidorn Quan
68859cacc4
Bug 1168028 part 2 - Revert DOM fullscreen state after window finish resizing if we need to. r=smaug,dao
...
--HG--
extra : source : bbf582da8bd4b7ee58c597b5aeb9f64199059f38
2015-06-12 13:24:45 +12:00
Paul Rouget
53184296fe
Bug 1163961 - Browser API: Page search. r=kchen, r=ehsan
2015-06-09 20:04:00 -04:00
Karl Tomlinson
1dc7bae7b5
bug 1171785
use nsContentUtils::RunInStableState() r=bholley
...
--HG--
extra : rebase_source : a26fc43686810f65631b37539c5622631e2fc001
2015-06-11 14:36:12 +12:00
Steven Michaud
72d6cb19dc
Bug 1153145 - Ensure trusted focus events from web content focus plugins. r=smaug
2015-06-10 15:30:25 -05:00
Bobby Holley
aa6c9ce796
Bug 1160695 - Drop Support for Content-Duration. r=cpearce
2015-06-08 09:22:46 -07:00
Bobby Holley
1893956886
Bug 1160695 - Track "network duration" separately and mirror it to the MDSM. r=jww
2015-06-08 09:21:20 -07:00
Michael Layzell
293a84e371
Bug 1027560 - Return false from document.execCommand() and friends when not in editable document. r=ehsan
2015-06-02 09:07:00 -04:00
Randall Barker
5cecde5f49
Bug 659285 - Extend media.autoplay.enabled to provide a way to disable untrusted play() invocations. r=cpearce
2015-06-05 09:03:00 -04:00
Xidorn Quan
ba301e6ce2
Bug 1170911 - Add pref for switching off execCommand("cut"/"copy"). r=ehsan
...
--HG--
extra : source : c774d06eeee6767553760498d53ebee1c7a093ad
2015-06-08 10:21:58 +12:00
Josh Matthews
94641da537
Bug 1163911 - Make responsive images block the document load event while the load task is queued. r=jst
2015-06-06 09:21:56 -04:00
Wes Kocher
026b52efce
Merge fx-team to central, a=merge
2015-06-05 15:26:37 -07:00
Matthew Noorenberghe
e4fd8ae196
Bug 1132211 - Dispatch an event when <input type=password> is added to a document (including outside of a form). r=smaug
...
--HG--
rename : browser/base/content/test/general/browser_bug771331.js => toolkit/components/passwordmgr/test/browser/browser_DOMFormHasPassword.js
rename : browser/base/content/test/general/browser_bug771331.js => toolkit/components/passwordmgr/test/browser/browser_DOMInputPasswordAdded.js
extra : commitid : BJD9IIOYbp0
2015-06-04 21:50:37 -07:00
David Keeler
c1a179c37b
bug 1169640 - use nsIPrompt instead of nsIPromptService for insecure form submission r=mrbkap
...
Otherwise it doesn't work on B2G.
2015-06-03 13:47:56 -07:00
Eric Rahm
75c4bebb79
Bug 1165515 - Part 13-2: Replace usage of PRLogModuleLevel and PR_LOG_*. rs=froydnj
...
This is straightforward mapping of PR_LOG levels to their LogLevel
counterparts:
PR_LOG_ERROR -> LogLevel::Error
PR_LOG_WARNING -> LogLevel::Warning
PR_LOG_WARN -> LogLevel::Warning
PR_LOG_INFO -> LogLevel::Info
PR_LOG_DEBUG -> LogLevel::Debug
PR_LOG_NOTICE -> LogLevel::Debug
PR_LOG_VERBOSE -> LogLevel::Verbose
Instances of PRLogModuleLevel were mapped to a fully qualified
mozilla::LogLevel, instances of PR_LOG levels in #defines were mapped to a
fully qualified mozilla::LogLevel::* level, and all other instances were
mapped to us a shorter format of LogLevel::*.
Bustage for usage of the non-fully qualified LogLevel were fixed by adding
|using mozilla::LogLevel;| where appropriate.
2015-06-03 15:25:57 -07:00
Eric Rahm
cc58068318
Bug 1165515 - Part 5: Convert instances of PR_LOG_ALWAYS. r=froydnj
...
Most instances were converted to PR_LOG_INFO, some to PR_LOG_DEBUG, and some
to PR_LOG_ERROR.
2015-06-03 15:22:30 -07:00
Ms2ger
b7bc0d5b7c
Bug 1171509 - Stop using for each in test_checked.html; r=janv
...
--HG--
extra : commitid : GyDiaQDb3Qx
2015-06-05 11:23:08 +02:00
Carsten "Tomcat" Book
3d9b9475f3
Backed out changeset 32aea59e702f (bug 659285) for bustage on a CLOSED TREE
2015-06-05 10:47:09 +02:00
Randall Barker
046a61300c
Bug 659285 - Extend media.autoplay.enabled to provide a way to disable untrusted play() invocations. r=cpearce
...
--HG--
extra : rebase_source : 8c94ff20100c2b2587aed2c5a88c2f91e55cee82
2015-05-26 10:32:00 +02:00
Karl Tomlinson
d195016f96
bug 1116382 no need to check IsMediaSourceURI(mLoadingSrc) once mMediaSource has been set r=bholley
...
--HG--
extra : rebase_source : 77a538826ebbb6b3fe3a130820869c54b13e8bd9
2015-05-28 14:49:23 +12:00
Karl Tomlinson
e35b92c4c7
bug 1116382 use MediaSource from resolution of MediaSource urls when set r=bholley
...
--HG--
extra : rebase_source : 024fbcf2a4236761f3a80f284957f8500fc9d24c
2015-05-28 14:38:34 +12:00
Karl Tomlinson
ae604e7f87
bug 1116382 always ShutdownDecoder() so that MediaSourceDecoder alone can manage MediaSource::Detach() r=bholley
...
--HG--
extra : rebase_source : 8176399d4a17f3018c686bfc55daa27a0aff8dda
2015-05-28 14:23:27 +12:00
Karl Tomlinson
15b0a07fc3
bug 1116382 resolve MediaSource urls on media element src attributes when set r=bholley
...
--HG--
extra : rebase_source : 3c26e47dd554edc7db03b37b6a3c572e9bf54260
2015-05-26 22:36:04 +12:00