Jared Wein
5a181760cc
Bug 1348068 - Enable the key-spacing rule for eslint and fix the related issues. r=standard8
...
Running eslint with --fix didn't fix many of the issues. The majority here had to be fixed by hand but a significant majority of the issues were related to a few files that I was able to use find-and-replace with. I regret not making this in to separate commits of the hand-fixes and the fixes from --fix but I don't recall --fix fixing any of the issues.
MozReview-Commit-ID: ANyg2qfo3Qx
2017-03-21 14:29:43 -04:00
Masatoshi Kimura
4f2e64ad3d
Bug 1342144 - Remove version parameter from the type attribute of script elements. r=jmaher
...
This patch is generated by the following sed script:
find . ! -wholename '*/.hg*' -type f \( -iname '*.html' -o -iname '*.xhtml' -o -iname '*.xul' -o -iname '*.js' \) -exec sed -i -e 's/\(\(text\|application\)\/javascript\);version=1.[0-9]/\1/g' {} \;
MozReview-Commit-ID: AzhtdwJwVNg
2017-02-23 06:10:07 +09:00
Florian Quèze
91f7a2ef3a
Bug 1331599 - script-generated patch to replace removeEventListener calls with the once option when possible, r=jaws.
2017-01-25 07:01:52 +01:00
Jared Wein
0c2dd4fa35
Bug 1329017 - Enable the no-useless-return rule for eslint and use eslint --fix to autofix the errors. r=standard8
...
MozReview-Commit-ID: 2MhpvzUDgtK
2017-01-06 12:09:28 -05:00
Khaled Hosny
b9cb09b476
Bug 1269186 - [RTL] Search field in New Tab and about:home is not RTL'd. r=adw
2017-01-05 18:17:16 -08:00
Jared Wein
242ab87626
Bug 1326511 - Enable brace-style and no-multi-spaces eslint rules for toolkit. r=MattN
...
MozReview-Commit-ID: FuVu8skcqOe
2016-12-30 21:47:25 -05:00
Jared Wein
e3149c378f
Bug 1325464 - Enable object-shorthand rule and run 'mach eslint --fix' with the rule enabled. r=MattN
...
MozReview-Commit-ID: 7E7LPorrEje
2016-12-29 18:34:54 -05:00
Wes Kocher
2d7553dcfd
Backed out 3 changesets (bug 1325464) for xpcshell failures a=backout
...
Backed out changeset 562ddc32cc21 (bug 1325464)
Backed out changeset cd10db6087dd (bug 1325464)
Backed out changeset 4079437c4648 (bug 1325464)
2016-12-29 14:05:44 -08:00
Jared Wein
34e228f767
Bug 1325464 - Enable object-shorthand rule and run 'mach eslint --fix' with the rule enabled. r=MattN
...
MozReview-Commit-ID: 8WoGr8i6oCR
2016-12-29 15:20:47 -05:00
Jared Wein
ef8b1e86ca
Bug 1316870 - Enable no-shadow eslint rule for browser/. r=mossop
2016-11-15 22:58:30 -05:00
Dave Townsend
4e295aa48d
Bug 1316882: Turn on space-before-function-paren eslint rule (browser). r=jaws
...
MozReview-Commit-ID: 2ZvTiZDHchz
2016-11-11 08:10:51 -08:00
Mark Banner
c0170c9aa4
Bug 1311315 - General small fixes for no-undef eslint issues in browser/. r=jaws
...
Drop linting of the .eslintrc.js config files.
Fix some minor errors in the code (missing let/const, undefined vars).
Let eslint know that some files get their globals from other places (typically via xul script tags).
MozReview-Commit-ID: CwxuwPtRUr6
2016-10-18 12:34:35 +01:00
Dão Gottwald
d4f322403c
Bug 1301086 - about:home and about:newtab search submit label needs to be a left pointing triangle for RTL locales. r=mak
2016-09-09 17:18:57 +02:00
Thomas Wisniewski
a1a4c002e4
Bug 918751 - Throw NetworkErrors instead of failures where appropriate for some XHR web platform tests. r=bz, r=keeler, r=Mossop, r=paul
2016-09-03 18:45:08 -04:00
Dão Gottwald
c7dfd3a9e7
Bug 1022588 - Set a tooltip and use a Unicode arrow as the label for high contrast mode on the about:home and about:newtab search submit buttons. r=mak
2016-09-07 16:22:57 +02:00
Jared Wein
4518d81cb5
Bug 1292042 - Enable the keyword-spacing rule for eslint. Most of this patch was autogenerated by 'eslint --fix'. Files with .xml extension needed to be changed by hand due to limitations of custom plugin. r=markh
...
MozReview-Commit-ID: EMjJ3yWt9Wt
2016-08-04 03:28:58 -04:00
Dão Gottwald
4acfabc477
Bug 1279476 - Fix search arrow background styling in about:home and about:newtab. r=florian
2016-06-10 18:25:50 +02:00
Florian Quèze
ee1ed38269
Bug 1206709 - [RTL] mispositioned separators between one-off buttons in the searchbar panel, original patch by johngraciliano, r=adw.
2016-06-10 09:52:19 +02:00
Florian Quèze
270a5e0f93
Bug 1278546 - [RTL] The search go arrow should point left, r=dao.
2016-06-10 09:52:00 +02:00
L. David Baron
50ddd15ed9
Bug 1111440 - Replace -moz- prefixed logical margin/padding/border properties with their standard versions. r=heycam
...
This patch was generated by the command:
find . -name "*.css" -exec sed -i -f mozpropsub {} \;
in the root of a mozilla-central tree, with the file mozpropsub
containing the contents:
s/-moz-padding-end\>/padding-inline-end/g
s/-moz-padding-start\>/padding-inline-start/g
s/-moz-margin-end\>/margin-inline-end/g
s/-moz-margin-start\>/margin-inline-start/g
s/-moz-border-end\>/border-inline-end/g
s/-moz-border-end-color\>/border-inline-end-color/g
s/-moz-border-end-style\>/border-inline-end-style/g
s/-moz-border-end-width\>/border-inline-end-width/g
s/-moz-border-start\>/border-inline-start/g
s/-moz-border-start-color\>/border-inline-start-color/g
s/-moz-border-start-style\>/border-inline-start-style/g
s/-moz-border-start-width\>/border-inline-start-width/g
While I didn't manually review all the changes, I did review the list of
files, and manually reviewed the changes in the files that I thought
were more interesting.
Note that there are a few tests that should be fixed up as well, but
I'll do that in a later patch.
MozReview-Commit-ID: EiQTuuV0MNQ
2016-05-12 22:19:58 -07: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
Gijs Kruitbosch
4686ef561d
Bug 1256165 - fit to width again after the restore session button is added, r=Felipe
...
MozReview-Commit-ID: 8suUhHQTRmz
2016-04-04 12:55:15 +01:00
Mike de Boer
28972ae5d2
Bug 1093153: enabled and re-factored browser_aboutHome.js to work correctly in e10s mode. r=mak
2016-03-15 11:09:34 +01:00
Sebastian Hengst
7fc42e5e74
Backed out changeset 5fa79c7ea7ae (bug 1093153)
2016-03-14 17:44:37 +01:00
Mike de Boer
eb00d2588a
Bug 1093153: enabled and re-factored browser_aboutHome.js to work correctly in e10s mode. r=mak
2016-03-14 14:35:48 +01:00
Xidorn Quan
c13e5464df
Bug 1244221 - about:home wrapping is broken. r=Enn
...
Test by Felipe
2016-02-10 19:02:23 -02:00
Gijs Kruitbosch
34f6876ec0
Bug 1134126 - add 'alt text' for the empty link using aria-label, r=jaws
2016-01-26 14:35:00 +00:00
Gijs Kruitbosch
61d6fddb10
Bug 1237350 - don't steal focus for the search box if another piece of non-button/non-input UI has focus, r=jaws,giorgos
2016-01-11 11:57:36 +00:00
Dão Gottwald
5627e022d3
Bug 1207422 - Remove Apps link from about:home. r=gijs
2016-01-06 12:22:49 +01:00
Xidorn Quan
33146e9023
Bug 962249 part 3 - Add Window.scrollMin{X,Y} (chrome-only) and convert most of scrollMaxX uses and part of scrollMaxY uses to combinations with the new properties. r=roc,bz
2015-10-27 13:38:02 +09:00
Steffen Wilberg
eb1fb5d29d
Bug 1204836: In about:home, make any searchable keypress focus the search box. ui-review=philipp, r=gijs
2015-09-20 17:59:53 +02:00
Shu-yu Guo
37989840cd
Bug 1202902 - Mass replace toplevel 'let' with 'var' in preparation for global lexical scope. (rs=jorendorff)
2015-09-15 11:19:45 -07:00
Steffen Wilberg
f00d5cb952
Bug 1195038 - In about:home, make accel+f focus the search box instead of invoking the find bar. r=gijs, ui-review=philipp
2015-08-15 21:51:54 +02:00
Nihanth Subramanya
5eb9f64f71
Bug 1171344 - [implement] One-off searches on about:home and about:newtab. r=adw
2015-06-29 13:52:20 -07:00
Ryan VanderMeulen
08581626f9
Backed out changesets 7f2ddcfe4537 and e88770aa2160 (bug 1171344) for intermittent OSX browser_tabopen_reflows.js failures.
2015-07-16 21:42:22 -04:00
Nihanth Subramanya
0882080e27
Bug 1171344 - [implement] One-off searches on about:home and about:newtab. r=adw
2015-06-29 13:52:20 -07:00
Baptiste Emmanuel
c2b89e62d6
Bug 1166596 - Rename "Marketplace" link on about:home to "Apps". r=adw
2015-06-02 09:34:30 +02:00
Nihanth Subramanya
5de64494fd
Bug 1166465 - about:home and about:newtab search suggestions should use openUILink. r=adw
2015-05-19 16:13:40 -07:00
shreyas
d88436f2e7
Bug 1071558 - Correctly handle middle- and right-clicks on search suggestions in about:home and about:newtab. r=adw
2015-02-20 11:05:39 -08:00
Gavin Sharp
de6cc7c8a1
Bug 1046297: change frequency of about:home snippets requests to once every 4 hours, r=mak
2015-01-21 13:09:44 -08:00
Tim Nguyen
28303e8df2
Bug 738646 - Show apps button by default on about:home and remove hidden pref related to it. r=jaws
2014-12-05 15:46:00 -05:00
Dão Gottwald
8162618c13
Bug 1106238 - about:home search icon has a solid background, should be transparent. r=felipe
2014-12-04 20:38:12 +01:00
Carsten "Tomcat" Book
80652058b7
Merge mozilla-central to mozilla-inbound
2014-11-28 14:23:52 +01:00
Jan Varga
748d734cae
Bug 1083927 - IndexedDB: Subdomain Quota Management; r=bent,ehsan
2014-11-28 09:44:12 +01:00
Dave Townsend
4576012b86
Bug 1101122 - Update about:home search styling. r=felipe
2014-11-24 08:40:22 -02:00
Blake Winton
a11771473b
Bug 1036908 - Log search suggestion selections from about:home. r=mak
2014-09-05 16:43:28 -04:00
Carsten "Tomcat" Book
a8a149df2d
Backed out changeset b556a4fdfe52 (bug 1036908) for bc1 test errors
2014-09-08 10:19:50 +02:00
Blake Winton
cf9ecf0cdb
Bug 1036908 - Log search suggestion selections from about:home. r=mak
2014-09-05 16:43:28 -04:00
Chris Peterson
21c2e198ae
Bug 1054630 - Collect telemetry on usage of SpiderMonkey's deprecated language extensions: for-each, destructuring for-in, legacy generators, and expression closures. r=till
2014-08-24 11:56:08 -07:00
Nigel Babu
0a704a7868
Backed out 6 changesets (bug 1054630) for hazards bustage ON A CLOSED TREE
...
Backed out changeset 684b95601155 (bug 1054630)
Backed out changeset e656c61ecd70 (bug 1054630)
Backed out changeset fa6d52a0cfea (bug 1054630)
Backed out changeset 19d115a44912 (bug 1054630)
Backed out changeset 0bceb044a4de (bug 1054630)
Backed out changeset be39ba3aa672 (bug 1054630)
2014-08-24 16:33:36 +05:30