Christoph Kerschbaumer
9ec95d3d9d
Bug 471020 - Implement X-Content-Type-Options: nosniff. r=dveditz,bz,mcmanus
2016-07-20 12:22:27 +02:00
Wes Kocher
c9783f64cb
Backed out 4 changesets (bug 471020) for frequent Windows w(2) failures CLOSED TREE a=merge
...
Backed out changeset d9675ab3d203 (bug 471020)
Backed out changeset 3ee328c56de0 (bug 471020)
Backed out changeset 000576e264bd (bug 471020)
Backed out changeset ffe60708c457 (bug 471020)
2016-07-18 16:07:28 -07:00
Christoph Kerschbaumer
1b211bd9c2
Bug 471020: Follow up, update quotes within security.properties. r=me
2016-07-18 17:19:29 +02:00
Christoph Kerschbaumer
f897b7df7e
Bug 471020 - Implement X-Content-Type-Options: nosniff. r=dveditz,bz,mcmanus
2016-07-18 14:47:48 +02:00
Xidorn Quan
a392f65064
Bug 1284785
part 2 - Report reason to console if a pointer lock request is denied. r=smaug
...
MozReview-Commit-ID: 9kSYxDQYGLz
--HG--
extra : rebase_source : 7577d56c1cb774fe8c556957dc3822fc33cded62
extra : source : 7c8410f8b164791d50c7369ede66d31c608e51d4
2016-07-13 10:28:28 +10:00
Yoshi Huang
e24cc195d9
Bug 1274893 - remove -forbid- list from SafeBrowsing. r=francois
2016-07-11 16:11:32 +08:00
Andrew Sutherland
7cf501d883
Bug 1167553 - Timeout-related Service Worker shutdowns should be reported. r=bkelly
...
Log a message when shutting down a service worker with pending promises.
Looks like:
Terminating ServiceWorker for scope
‘http://mochi.test:8888/tests/dom/workers/test/serviceworkers/’ with
pending waitUntil/respondWith promises because of grace timeout.
2016-07-10 22:22:29 -04:00
Andrew Sutherland
6f183de053
Bug 1233798 - report to console when service worker register fails due to mime-type issues. r=bkelly
...
Log a message to the console when there is no Content-Type received for a
service worker or it's not a JS type. With test. Looks like:
Failed to register/update a ServiceWorker: Non-JS Content-Type of ‘text/plain’
received for script
‘http://mochi.test:8888/tests/dom/workers/test/serviceworkers/sw_bad_mime_type.js’ .
2016-07-10 22:22:28 -04:00
Andrew Sutherland
d1659931b7
Bug 1267473 - Report to console if service worker script 404s. r=bkelly
...
Add an error message of the following form for when a register/update job
fails for network reasons:
Failed to register/update a ServiceWorker for scope
‘http://mochi.test:8888/tests/dom/workers/test/serviceworkers/network_error/’ :
Load failed with status 404 for script
‘http://mochi.test:8888/tests/dom/workers/test/serviceworkers/404.js’ .
A mochitest is added that verifies this.
To simplify the process of logging error messages, ServiceWorkerManager gains
a new LocalizeAndReportToAllClients method that always provides the SW scope as
the first argument to the localized string since all good error messages should
include it.
Its argument list takes an nsTArray<nsString> in order to reduce the potential
for use-after-free scenarios from the char16_t** signature that unfortunately
has rippled outwards from the nsIStringBundle interface. This potentially
results in more memory allocation and byte shuffling than is strictly
necessary, but we're also talking about rare error logging where it's
better to optimize for easily adding the messages without needing to get hung
up on the life-cycle of temporaries.
nsTArray gained a std::initializer_list in bug 1228641. It is explicit, so
inline argument usages may take a form along the lines of:
`nsTArray<nsString> { string1, string2, ... }`
This change did necessitate a change to nsContentUtils to add an nsTArray
variant of FormatLocalizedString since the existing public function was
slightly too clever. It used a template function to statically acquire the
number of arguments at compile time, which is not compatible with the dynamic
nsTArray usage. Since nsTArray may be useful to other consumers as well, I
placed the conversion logic in nsContentUtils.
2016-07-10 22:22:27 -04:00
Michael Layzell
dde888ae28
Bug 906420 - Part 1: Implement DataTransferItem and DataTransferItemList, r=baku
2016-07-04 15:45:45 -04:00
Paul Roberts
ec18fc5ff7
Bug 671389 - Implement CSP sandbox directive. r=ckerschb r=smaug
...
--HG--
extra : rebase_source : d9c5f5868c2558a3696cd489674da6f243be11ad
2016-06-29 07:48:44 -07:00
Andrea Marchesini
5cddd3946d
Bug 1283061 - HTMLInputElement type=file webkitdirectory/directory should show just 1 button, r=smaug
2016-06-29 18:18:42 +02:00
Boris Chiou
03d90dd78b
Bug 1244590
- Part 3: Parse spacing. r=birtles
...
We only support spacing mode from Web Animations API, so add a simple parser and
use it only from the API. In this patch, parse spacing mode from the constructor
and throw TypeError if we have any parse error.
MozReview-Commit-ID: 9H7g80IcZfZ
--HG--
extra : rebase_source : e1bc781ff0f20a1a38c04e672832ec013edc549d
2016-05-13 16:38:25 +08:00
Cykesiopka
313db6b516
Bug 307081 - Clean up nsIClientAuthDialogs.idl and implementations. r=kats,keeler
...
This fixes the following in the IDL:
1. Misleading or unclear parameter names in the IDL. |cn| in practice is the
concatenation of the CN of the server cert and the port of the server, and
|issuer| is the Organization of the issuer cert of the server cert.
2. Use of the |wstring| type. |AString| is generally preferred, and has the
benefit of letting implementations skip null checks due to the use of
references.
3. Using an explicit |canceled| outparam instead of just setting a return type.
There is no need for the outparam if the return type can be used.
4. Using |long| (int32_t) for |selectedIndex|. |unsigned long| (uint32_t) is
more logical, and paves the way for future changes.
This fixes the following in the Android implementation:
1. Lack of checks to ensure the QueryInterface() call succeeded. In practice,
the call will always succeed, but it's good practice to check anyways.
2. Setting a variable to an nsIPrefService instance initially, then later
setting it to a pref branch instance later on. This is confusing and
unnecessary.
This fixes the following in the desktop implementation:
1. Lack of null pointer checking.
2. Trying to get a parent window ref off a context that doesn't actually support
doing so.
3. Setting a variable to an nsIPrefService instance initially, then later
setting it to a pref branch instance later on. This is confusing and
unnecessary.
4. Abusal of the CAPS bundle.
5. Unnecessary variables.
6. Variables declared far away from where they are used.
7. Variable shadowing.
8. Style issues.
9. Lack of documentation.
This also fixes the following:
1. Lack of localisation notes.
MozReview-Commit-ID: FTc6XecJd6h
--HG--
extra : transplant_source : %ABQ%8F%E6%A3%25%FE%94%E4%D6X%3D%28%2C%05%5E%FB%84.-
2016-06-24 00:12:11 -07:00
Masatoshi Kimura
5979f6931b
Bug 1258053 - String changes. r=cpeterson
2016-06-22 21:55:14 +09:00
Blake Kaplan
70d89c7d92
Bug 1259517 - Make dropping images in editors work in e10s. r=baku
2016-06-21 15:17:37 -07:00
Jordan
f35a9b375c
Bug 825294 - Add framework for datepicker widgets to input[type=date]. r=smaug
...
-Add framework for datepicker widgets
-Split date input preference from dom.experimental_forms to dom.forms.date
2016-06-20 15:55:00 +02:00
Christoph Kerschbaumer
4a09f2e308
Bug 1280179 - Fix type on csp.properties . r=arroway
2016-06-15 09:24:16 +01:00
Tooru Fujisawa
6ed032640e
Bug 382721 - Part 9: Warn about too large dotted/dashed corner. r=jrmuizel
2016-06-10 13:10:03 +09:00
Carsten "Tomcat" Book
d612b10610
Backed out changeset c3f66208fe85 (bug 382721)
...
--HG--
extra : rebase_source : 45a93822af369dc9b1c4c2d733fa6a7e81064499
2016-06-10 15:38:30 +02:00
Tooru Fujisawa
5fd0e1df86
Bug 382721 - Part 9: Warn about too large dotted/dashed corner. r=jrmuizel
2016-06-10 13:10:03 +09:00
Carsten "Tomcat" Book
afff301b32
Backed out changeset 5c836acf3197 (bug 906420) on developer request by baku
...
--HG--
extra : rebase_source : 9f109cdb706feef6d2bcd9a2e71f8c4d3c17ebdf
2016-06-09 15:30:53 +02:00
Dave Huseby
f4337b6262
Bug 1237080 - adds deprecation msg for chrome scripted DOMParser without principal. r=baku
...
MozReview-Commit-ID: FuolzJOcslX
2016-06-07 18:57:45 -07:00
Michael Layzell
bd973fcaa4
Bug 906420 - Part 1: Implement DataTransferItem and DataTransferItemList, r=baku
2016-06-07 18:05:55 -04:00
Dan Minor
072334bcdb
Bug 1265408 - Log biquad channel change warning to console; r=padenot
...
MozReview-Commit-ID: G16wgfKr4I6
--HG--
extra : rebase_source : d4c205b6d30c9d583e2f9f76cdb06b6b32f1500f
extra : source : 5aa770304f2a519fda0989790b2d059d85a1db58
2016-06-03 14:17:41 -04:00
Dan Minor
399a5ec86f
Bug 1265408 - Implement IIRFilterNode; r=padenot
...
MozReview-Commit-ID: EZvTIwTDVPE
--HG--
extra : rebase_source : 82af34db0b5879020d32e760eb5a99fefd25f835
extra : source : 4bd3f7f5a431f9124b3a7ca6858980c4447cfdd9
2016-06-03 13:42:03 -04:00
Chris Peterson
41ab04a4e2
Bug 1259335 - Part 2: Remove deprecated navigator.battery API and tests. r=baku
...
--HG--
extra : rebase_source : 82eeaa8964905627803acf250e434bf4036d2d1d
2016-06-06 23:10:44 -07:00
Wes Kocher
44c9e5473a
Backed out 13 changesets (bug 1265408) for test_interfaces bustage CLOSED TREE
...
Backed out changeset 5aa770304f2a (bug 1265408)
Backed out changeset 465412cecc51 (bug 1265408)
Backed out changeset d7d5bbd33e0e (bug 1265408)
Backed out changeset 4dd3a54d766d (bug 1265408)
Backed out changeset 24d271e05ae2 (bug 1265408)
Backed out changeset 56d602e3a9e6 (bug 1265408)
Backed out changeset 4bd3f7f5a431 (bug 1265408)
Backed out changeset 1b0ec5cf4d30 (bug 1265408)
Backed out changeset 784521a9cc94 (bug 1265408)
Backed out changeset 9ab327850c5f (bug 1265408)
Backed out changeset 388a95b05202 (bug 1265408)
Backed out changeset 2d59146a43fe (bug 1265408)
Backed out changeset 84fab8755ac9 (bug 1265408)
2016-06-06 12:09:14 -07:00
Dan Minor
e72edaf704
Bug 1265408 - Log biquad channel change warning to console; r=padenot
...
MozReview-Commit-ID: G16wgfKr4I6
--HG--
extra : rebase_source : 7c80e41af24a801f80ca9fb0ac389836e455e8c4
2016-06-03 14:17:41 -04:00
Dan Minor
c846a288b4
Bug 1265408 - Implement IIRFilterNode; r=padenot
...
MozReview-Commit-ID: EZvTIwTDVPE
--HG--
extra : rebase_source : 2dddd4d387bd4ecb58bf5fa7dbd26d916a114c82
2016-06-03 13:42:03 -04:00
Frederik Braun
404a0bbb99
Bug 1265318: add require-sri-for CSP directive. r=ckerschb
...
MozReview-Commit-ID: 200PAvKtBME
2016-05-31 11:14:00 +02:00
Andrea Marchesini
d466f0aab2
Bug 1048291 - Deprecate File::lastModifiedDate, r=smaug
2016-05-31 17:22:39 +02:00
Patrick McManus
c0638a1abc
Bug 1274729 - corrupted content string management r=dragana
2016-05-23 10:12:31 -04:00
Chris Peterson
b1e318c188
Bug 1259335 - Part 1: Log deprecation warning for navigator.battery. r=baku
2016-05-21 01:08:52 -07:00
Andreas Pehrson
b3ee63f6aa
Bug 1271669 - Deprecate RTCPeerConnection.getLocalStreams/getRemoteStreams. r=jib, r=smaug
...
getLocalStreams and getRemoteStreams have been removed from the spec.
Also, getLocalStreams becomes a problem now that addTrack takes any MediaStream
as the container for the added track.
The addTrack()'ed MediaStream (perhaps not containing the track sent over the
pc - perhaps containing other tracks not sent over the pc!) will be returned
from getLocalStreams.
MozReview-Commit-ID: JUVCUM32mPR
--HG--
extra : rebase_source : 22373da7e02b315f0f4252c1986e55e960694a69
extra : histedit_source : a10d62b9c1d954090ad8c1444759d0e51a580c31
2016-05-20 10:42:48 +02:00
Hiroyuki Ikezoe
f2fedee579
Bug 1267251 - Change message IDs for animation warnings. r=birtles,pbro
...
MozReview-Commit-ID: Fb93m5xt1Ey
--HG--
extra : rebase_source : 4c345a6ec8003df4665fe1318695e4ed820bba31
2016-05-19 13:06:27 +09:00
Patrick McManus
30c9aa43b3
Bug 1223834 - Corrupted Content Error Description repeated twice. r=dragana
...
--HG--
extra : rebase_source : 0b4560aad03b234fe19fb9a93a6040b706332a14
2016-05-17 16:17:29 -04:00
Kartikaya Gupta
d671429ba2
Bug 1266066 - Add a console warning for attempts to preventDefault() from a passive listener. r=smaug
...
MozReview-Commit-ID: G1nzkUxMEuE
2016-05-12 14:51:02 -04:00
Tom Tung
842431d95a
Bug 1243792 - P1 implement response.redirected - Fetch API & Cache API & ServiceWorker changed. r=bkelly, r=baku.
...
--HG--
extra : rebase_source : 29ec29361738c6d2446b410a98bd4876a689ce99
2016-05-03 09:48:40 +08:00
Carsten "Tomcat" Book
a993b36b4a
Backed out changeset dc42de66de8c (bug 1243791) landing with wrong bug number
...
--HG--
extra : rebase_source : b016defba5a12065b401d0d59b3f03e8b1d7cbe1
2016-05-10 12:50:15 +02:00
Tom Tung
15b89607c6
Bug 1243791 - P1 implement response.redirected - Fetch API & Cache API & ServiceWorker changed. r=bkelly, r=baku.
2016-05-03 09:48:40 +08:00
Paul Adenot
2f7477a693
Bug 1270187 - Small typo in MediaStreamAudioSourceNodeCrossOrigin string. r=tchevalier
...
MozReview-Commit-ID: 78r8hv14G5J
2016-05-09 11:51:21 +02:00
Hiroyuki Ikezoe
4030f03992
Bug 1258904 - Part 4: Set performance warning for small content. r=birtles
...
MozReview-Commit-ID: 7GyGkPog1Bo
--HG--
extra : rebase_source : c296a35c433af547fe4dd800ec8c8abd3bdba339
2016-05-07 17:37:58 +09:00
Boris Zbarsky
6205a2679f
Bug 1260515. Start allowing sync XHR with credentials in window scopes again, since no one except for us bothered to implement the spec. r=smaug
2016-05-04 20:41:32 -04:00
Jared Wein
e889366796
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
Ehsan Akhgari
a9cd8f1af3
Bug 1267966 - Remove the deprecation warning from Attr.ownerElement; r=baku
...
I added this deprecation back in bug 957431 by mistake, but it's clear
that we won't be removing this attribute after all.
2016-04-28 10:49:11 +08:00
Paul Adenot
0d3dbc04dc
Bug 996685 - Report an error in the console when a cross-origin media element is used with a Media(ElementAudio|Stream)SourceNode. r=pehrsons
...
MozReview-Commit-ID: 8VP7Sv8unUq
2016-04-26 17:46:31 +02:00
Nicholas Hurley
65e701bed3
Bug 1122642 - Have an error page for H2 INADEQUATE_SECURITY r=mcmanus,bz
2016-04-22 09:56:42 -07:00
Brian Birtles
a9c3d15f51
Bug 1255683 - Rewrite some animation performance string to refer to compositor animations instead of 'Async animations', r=helenvholmes, r=hiro
...
MozReview-Commit-ID: G1p8uCK8sS6
2016-04-22 18:02:35 +09:00
Gerald Squelart
e23866c192
Bug 848994 - p6. Analyze Windows issues - r=cpearce
...
Analyze the diagnostics information gathered so far, and dispatch
notifications as appropriate.
The most important case in this bug is when Widevine is requested but WMF and
Silverlight are missing.
The generic case of WMF missing (when needed to play) is there too.
Note: Currently no notifications are actually sent to the front-end by default,
the following patch will add filtering to allow/prevent targeted notifications.
MozReview-Commit-ID: EB9PKrMgKSr
2016-04-22 13:42:11 +10:00
Gerald Squelart
dd4185be4a
Bug 1248507 - p8. FFMpeg checks: Console message - r=bz
...
MozReview-Commit-ID: 6YTpH7oa4zF
2016-04-19 17:36:19 +10:00
Gerald Squelart
789868d84d
Bug 1248507 - p4. DecoderDoctor base console message - r=bz
...
MozReview-Commit-ID: 6KzDFcwiYjm
2016-04-19 17:36:19 +10:00
Henri Sivonen
be84cb9eff
Bug 1264217 - Adjust the Add-on Manager entry for Widevine. r=spohl
...
--HG--
extra : histedit_source : ca424e55b5252c070bdaff7a9fda9dbc390d09b6
2016-04-13 10:50:18 +03:00
John Dai
970541e62b
Bug 1037725 - Add warning message in the console when worker spawn over limit. r=khuey
2016-04-12 01:41:00 +02:00
johndai1984
4c64e194f9
Bug 682294 - Add an error page for file access denied. r=bz
2016-04-06 08:18:00 +02:00
Kirk Steuber
6b6ea89530
Bug 1245256 - Add support for Widevine to CDM updater. r=spohl
...
MozReview-Commit-ID: JwB4Q6ZEqoV
2016-02-25 14:24:13 -08:00
Andreas Pehrson
f17fbe75df
Bug 1208371 - Check principal per track instead of per stream in MediaRecorder. r=roc
...
MozReview-Commit-ID: ItwZ4tzhsIC
--HG--
extra : rebase_source : 2a1f22e5fa225b7a13d7f46e30f5aaa86c1724e1
2016-02-01 22:47:17 +08:00
John Dai
059fdf21d7
Bug 1220757 - Add report to console when service worker register fails due to mismatching scope path.r=bkelly
...
MozReview-Commit-ID: 9hRBzWtSAd2
--HG--
extra : rebase_source : 8552934879813ac2bd6ca828b3a2ec99b35893df
2016-03-31 23:08:45 -07:00
Kit Cambridge
f57e60c641
Bug 1247089
- Log Web Push decryption errors. r=bkelly
...
MozReview-Commit-ID: HEEq8IPlwBx
--HG--
extra : rebase_source : 8501836fa322b3a09ffec21e83fdb32e4aa3abf5
2016-03-28 13:33:20 -07:00
Christoph Kerschbaumer
39f2d53360
Bug 1122236 - CSP: Implement block-all-mixed-content (r=tanvi,kate,mrbkap)
2016-01-13 20:58:16 -08:00
Hiroyuki Ikezoe
45a7f9a679
Bug 1218620 - Allow opacity animation running on compositor even if the frame has any restricted transforms. r=birtles
...
The type name has been changed and re-ordered.
MozReview-Commit-ID: 78jrJ6a9Pro
--HG--
extra : rebase_source : f47e6bf27d8e48d10b3af123308c2ab89e71d8e1
2016-03-14 09:07:48 +09:00
Christoph Kerschbaumer
5e6ba24562
Bug 1227813 - CSP: Ignore unsafe-inline within style-src if hash or nonce specified. r=kmckinley
2016-03-11 15:35:39 -08:00
Hiroyuki Ikezoe
53fd8ccffb
Bug 1196114 - Part 4: Localize messages for animation performance warnings. r=birtles
...
MozReview-Commit-ID: LPSHU2T3oP4
--HG--
extra : rebase_source : 898e11b02edd3f80452c8c2714b8364288a3fe75
2016-03-04 15:48:50 +09:00
Kyle Machulis
79cb11f843
Bug 1240471 - Possibly remove invalid queries and post console messages on youtube rewrite; r=khuey fb=cpeterson
2016-03-01 14:05:29 -08:00
Ehsan Akhgari
8b94dc47cb
Bug 1251875 - Part 2: Remove the dom.serviceWorkers.interception.opaque.enabled pref; r=bkelly
2016-03-01 09:17:59 -05:00
Francois Marier
cba834e152
Bug 1245992 - Remove unused Safe Browsing strings. r=past
...
MozReview-Commit-ID: IkyO53DJpYs
--HG--
extra : rebase_source : 44e64c0eb3610159b6d57da2f3fedddfdda54841
2016-02-25 21:34:15 -08:00
Francois Marier
53454d8416
Bug 1245992 - Update the Safe Browsing phishing interstitial page. r=flod,past
...
MozReview-Commit-ID: DLC1KDvYbUH
--HG--
extra : rebase_source : 7289c93af47827f8a8dd78285d7beecf31935f3c
2016-02-25 21:34:01 -08:00
Phil Ringnalda
c279cb263c
Back out 2 changesets (bug 1245992) for several browser-chrome failures
...
Backed out changeset 6d9614f87daf (bug 1245992)
Backed out changeset 34e6eea401e3 (bug 1245992)
2016-02-25 19:15:16 -08:00
Francois Marier
57f2a2f2d3
Bug 1245992 - Remove unused Safe Browsing strings. r=past
...
MozReview-Commit-ID: KHy6731OZJd
--HG--
extra : rebase_source : d079442b95f6f01af8b903cb23861552888d0f1f
2016-02-24 16:23:25 -08:00
Francois Marier
b5682aa996
Bug 1245992 - Update the Safe Browsing phishing interstitial page. r=flod,past
...
MozReview-Commit-ID: JnYOqtCIib7
--HG--
extra : rebase_source : 4488fa66efd6a1dd6d1b477836a772549a0424c3
2016-02-24 16:23:25 -08:00
Xidorn Quan
7f068cc774
Bug 743198 part 11 - Update locales string to the new spelling as well as unprefixed API. r=smaug
...
The main motivation of this patch is to fix the prefixed function name
used in one string. But updated string should have different a different
identifier, otherwise it might be ignored. Since we should eventually
prefer using word "fullscreen" over "full-screen", it is easier to just
change all of them together.
--HG--
extra : source : 1e9ab6a7503102b5562475784510581720bd1bad
2016-02-17 08:47:11 +08:00
Xidorn Quan
61f1684757
Bug 743198 part 2 - Add unprefixed Fullscreen API to Document and Element. r=smaug
...
--HG--
extra : source : aaf4d12b511ba25ba93e6135cb849a3264435f7c
2016-02-17 08:47:11 +08:00
Ting-Yu Lin
d6a5df3abe
Bug 1225752 - Localize the description of default summary. r=bz
...
--HG--
extra : commitid : 1fzJyvyuijQ
extra : rebase_source : ec39cfe4c4a147aaaa455071b9b70f008d5fbfe2
2016-02-04 01:48:00 +08:00
Kartikaya Gupta
8565e8a521
Bug 1245245 - Fix typo in error string URL. r=botond
...
--HG--
extra : commitid : GbcqwZqYZzE
2016-02-03 14:07:33 -05:00
Marco Castelluccio
4f9783da3f
Bug 1086997 - Localize developer warnings issued by the manifest processor. r=baku
2016-02-02 16:47:51 -08:00
James Burke
9ea321cf7d
Bug 1139849 - postMessage to incorrect target domain should print a console security error r=bz
2016-01-29 13:32:01 -08:00
Tooru Fujisawa
6c94385f12
Bug 1235159 - Report pattern compliation failure to web console. r=jst,jorendorff
2016-01-16 13:24:52 +09:00
Xidorn Quan
9fc560132a
Bug 1237175 - Fix case of identifier of prefixed visibility API warning. r=smaug
...
--HG--
extra : source : f6bdb716be8108cd610ba75180582df8b9597c7c
2016-01-08 14:34:08 +11:00
Mats Palmgren
5fb03e8500
Bug 1235212 - [css-grid] Use Unicode ellipsis in error messages. r=francesco.lodolo@gmail.com
2016-01-05 21:27:13 +01:00
Mats Palmgren
781441cd1d
Bug 1118820 part 1 (style system part) - [css-grid] Implement the 'auto-fill' and 'auto-fit' keywords in the repeat() function. r=dholbert
2015-12-22 23:03:15 +01:00
Kartikaya Gupta
0dcf99f8a4
Bug 1229052 - Log a warning when we detect a scroll-linked effect based on the scroll event. r=roc
2015-12-14 14:47:24 -05:00
Kartikaya Gupta
6b0c32286a
Back out 5 csets from bug 1229052 on a CLOSED TREE for failing to fix the nonunified build error even after many attempts. r=backout
2015-12-14 15:52:31 -05:00
Kartikaya Gupta
4c9c388520
Bug 1229052 - Update warning message for scroll-linked effects. r=me and DONTBUILD
2015-12-14 15:28:42 -05:00
Kartikaya Gupta
fcb193563c
Bug 1229052 - Log a warning when we detect a scroll-linked effect based on the scroll event. r=roc
2015-12-14 14:47:24 -05:00
Francois Marier
67506f65a6
Bug 1216723 - Add a new -forbid- Safe Browsing list type. r=gcp,r=smaug
2015-11-20 20:24:50 -08:00
Tobias Schneider
1262c58ac3
Bug 1221677 - "[css-grid] Put the 'subgrid' support behind a pref, disabled by default". r=mats
2015-11-13 13:15:00 +01:00
Xidorn Quan
c5533b7389
Bug 1212299 followup - Fix minor grammar issue in locale text. DONTBUILD
...
--HG--
extra : source : dd0f0aba6e80fc9820949dda4f3bfbe81fe2a289
extra : amend_source : a71500457254332582ba1db20902b58ff11ad390
2015-11-18 16:31:07 +11:00
Christoph Kerschbaumer
96f42dd458
Bug 663570 - MetaCSP Part 1: CSP parser changes (r=sicking)
2015-11-14 19:27:59 -08:00
Philip Chee
15076ab0b0
Bug 1204338 Followup to Bug 403800 Refactor netError.dtd/netErrorApp.dtd to simplify per-application overrides r=Pike
...
--HG--
extra : transplant_source : %87%25%B9%D7%8A%F3j%5B%FA%19%2BW%A1E%F0wf%99bY
2015-11-13 23:16:41 +08:00
Michael Layzell
9b275dd822
Bug 1223041 - Emit console warning when document.execCommand('copy'/'cut') is triggered outside of a short-lived user-initiated event, r=bz
2015-11-12 09:36:42 -05:00
Kate McKinley
67f4155fe6
Bug 1045891
- CSP 2 child-src implementation r=ckerschb
2015-10-28 16:32:27 -07:00
Ben Kelly
cd7a409e01
Bug 1219852 P2 Report non-response values passed to FetchEvent.respondWith(). r=bz
2015-10-31 10:34:20 -07:00
Ben Kelly
00f7f89915
Bug 1215140 P7 Remove old service worker interception logging. r=bz
2015-10-29 19:53:25 -07:00
Ben Kelly
b9615b724e
Bug 1215140 P6 Update service worker interception error strings to include detailed parameters. r=bz
2015-10-29 19:53:25 -07:00
Masatoshi Kimura
9621a78c93
Bug 1207137 - Implement weak crypto override UI. r=ttaubert
2015-10-17 09:38:31 +09:00
Andreas Pehrson
419c440d96
Bug 1070216 - Guard against adding a track owned by one MSG to a stream owned by another. r=padenot
...
--HG--
extra : commitid : J9Hj3Lffpg
extra : rebase_source : 83b604c3b8c69c9edf55bdfaaebe67b6f2251c46
2015-10-15 01:08:33 +08:00
Xidorn Quan
57b9d7be94
Bug 1212299 part 1 - Forbid documents inside elements other than iframe from requesting fullscreen. r=smaug
...
--HG--
extra : source : b995b57bc1dd2003eeff6f568f5f22298ff81608
2015-10-12 11:24:23 +11:00
Ehsan Akhgari
1869e89340
Bug 1212636 - Add a better error message for the content corrupcted error caused by the Promise being passed to FetchEvent.respondWith; r=bkelly
2015-10-07 18:06:26 -04:00
Jared Wein
427bd639ca
Bug 1211479 - Errors when parsing substituting variables should include the generated string to help diagnose the issue. r=bz
2015-10-05 14:04:00 +02:00
Andreas Pehrson
0239788481
Bug 1103188 - Deprecate DOMMediaStream::Stop(). r=jib
...
--HG--
extra : commitid : 3I8mAeBB3oL
extra : rebase_source : cc7351a34694b7b0e822bcd0b7025ded0ab54b9d
2015-09-30 09:32:06 +08:00