Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Sync disabled state of number control regardless of appearance. | wolfbeast | 2018-08-29 | -2/+2 |
| | ||||
* | Avoid using memset on a not-trivial type like nsTabSizes | trav90 | 2018-08-18 | -1/+6 |
| | | | | | | nsTabSizes is non-trivial only because of the user-defined constructor. The idea desired here is certainly to zero all the members without listing them -- but the very act of doing so with a user-defined constructor, makes the idea impossible. Arguably this is something that is permissible in the language, and that the warning should be tailored to permit. I don't think this falls afoul of any of the issues flagged in https://gcc.gnu.org/ml/gcc-patches/2017-06/msg01527.html for example. In the meantime, just explicitly zeroing the three member fields is easy and fixes the warnings. | |||
* | Bug 958714 Remove obsolete assertion & comment | janekptacijarabaci | 2018-07-20 | -12/+1 |
| | | | | + Used "mFrame->GetType()" instead of "mFrame->Type()" | |||
* | Bug 958714 Simplify percent-margin/padding resolution code to pass around a ↵ | janekptacijarabaci | 2018-07-20 | -66/+30 |
| | | | | single length as the percent basis | |||
* | Bug 958714 Remove special case for flex & grid items' percent block-axis ↵ | janekptacijarabaci | 2018-07-20 | -51/+30 |
| | | | | margin/padding resolution, to align with other browsers | |||
* | Bug 1434380: Rewrite parts of reftest reference case ↵ | janekptacijarabaci | 2018-07-20 | -28/+19 |
| | | | | grid-auto-min-sizing-definite-001-ref.html to be easier to understand & adjust | |||
* | Add pref to control CanOptimizeToImageLayer for large downscale factors. | wolfbeast | 2018-07-14 | -0/+5 |
| | | | | This resolves #626 | |||
* | Merge pull request #628 from janekptacijarabaci/build_bustage_debug_1 | Moonchild | 2018-07-13 | -1/+1 |
|\ | | | | | Fix Build Bustage - with "--enable-debug" | |||
| * | Fix Build Bustage - with "--enable-debug" | janekptacijarabaci | 2018-07-12 | -1/+1 |
| | | ||||
* | | Bug 1346501. Don't mark every image as visible when a frame is created for it | janekptacijarabaci | 2018-07-12 | -0/+12 |
|/ | ||||
* | Merge pull request #567 from SpockMan02/moz-mac-lion-theme | Moonchild | 2018-06-30 | -8/+24 |
|\ | | | | | Undo Mozilla Bug 1302937; Reinstate -moz-mac-lion-theme media query | |||
| * | Undo Mozilla Bug 1302937; Reinstate -moz-mac-lion-theme media query | SpockMan02 | 2018-06-27 | -8/+24 |
| | | ||||
* | | Remove unnecessary GCC version checks | trav90 | 2018-06-29 | -1/+1 |
|/ | ||||
* | Remove SPS profiler. | wolfbeast | 2018-05-24 | -47/+0 |
| | | | | | - Conditionals and code blocks. (MOZ_ENABLE_PROFILER_SPS) - Stub out several profiler-only functions. | |||
* | Bug 1379762 part 2. Use a more reliable test to figure out when we can skip ↵ | janekptacijarabaci | 2018-05-15 | -1/+14 |
| | | | | | | firing onload in nsDocumentViewer::LoadComplete Issue #357 | |||
* | Bug 1379762 part 1. Don't call MediaFeaturesChanged if our override device ↵ | janekptacijarabaci | 2018-05-15 | -4/+9 |
| | | | | | | pixel ratio is set to its current value Issue #357 | |||
* | Remove other gonk widget conditionals and unused files. | wolfbeast | 2018-05-13 | -25/+4 |
| | | | | Tag #288. | |||
* | Remove MOZ_WIDGET_GONK [1/2] | wolfbeast | 2018-05-12 | -95/+1 |
| | | | | Tag #288 | |||
* | Remove MOZ_B2G leftovers and some dead B2G-only components. | wolfbeast | 2018-05-12 | -117/+3 |
| | ||||
* | Issue #325 Part 13: Remove Mozilla implementation of the bidi engine ↵ | wolfbeast | 2018-05-04 | -3010/+182 |
| | | | | completely and use ICU. | |||
* | Issue #325 Part 9: Remove non-Intl legacy code paths from nsNumberControlFrame. | wolfbeast | 2018-05-04 | -4/+0 |
| | ||||
* | Building with "--enable-debug" - fix some warnings | janekptacijarabaci | 2018-05-02 | -2/+3 |
| | | | | | https://github.com/MoonchildProductions/moebius/pull/146 https://github.com/MoonchildProductions/Pale-Moon/pull/1400 | |||
* | Bug 1216885 - Make nsISelectionPrivate not inherit from nsISelection | janekptacijarabaci | 2018-04-30 | -2/+3 |
| | ||||
* | Merge pull request #297 from janekptacijarabaci/css_text-justify_1 | Moonchild | 2018-04-29 | -9/+285 |
|\ | | | | | CSS - implement text-justify property | |||
| * | moebius#90: CSS - implement text-justify property | janekptacijarabaci | 2018-04-01 | -9/+285 |
| | | ||||
* | | Merge pull request #296 from janekptacijarabaci/js_dom_animationcancel_1 | Moonchild | 2018-04-29 | -144/+389 |
|\ \ | | | | | | | DOM - implement animationcancel event | |||
| * | | Bug 1264125: Fire transitioncancel event when a transition is canceled ↵ | janekptacijarabaci | 2018-03-14 | -3/+67 |
| | | | | | | | | | | | | | | | | | | (added tests + style clean up) Issue #55 | |||
| * | | Bug 1202333: AnimationEvent elapsedTime should reflect playbackRate (added ↵ | janekptacijarabaci | 2018-03-14 | -10/+16 |
| | | | | | | | | | | | | | | | | | | tests) Issue #55 | |||
| * | | moebius#89: DOM - implement animationcancel event | janekptacijarabaci | 2018-03-14 | -69/+79 |
| | | | | | | | | | | | | Issue #55 | |||
| * | | Bug 1264125: Queue CSS related event when setting null target effect | janekptacijarabaci | 2018-03-14 | -13/+45 |
| | | | | | | | | | | | | Issue #55 | |||
| * | | Bug 1264125: Call the queueing events when canceling transition via Style or ↵ | janekptacijarabaci | 2018-03-14 | -7/+20 |
| | | | | | | | | | | | | | | | | | | Script Issue #55 | |||
| * | | Bug 1264125: Queue transitioncancel when animation status is idle | janekptacijarabaci | 2018-03-14 | -31/+45 |
| | | | | | | | | | | | | Issue #55 | |||
| * | | Revert - Bug 1324985: Disable firing the transitionrun and transitionstart ↵ | janekptacijarabaci | 2018-03-14 | -21/+107 |
| | | | | | | | | | | | | | | | | | | on Aurora 52 Issue #55 | |||
| * | | Bug 1202333: AnimationEvent elapsedTime should reflect playbackRate (without ↵ | janekptacijarabaci | 2018-03-14 | -73/+93 |
| | | | | | | | | | | | | | | | | | | tests) Issue #55 | |||
* | | | moebius#138: Optimize operations on root of deeply-nested frame tree | janekptacijarabaci | 2018-04-24 | -38/+610 |
| | | | | | | | | | | | | https://github.com/MoonchildProductions/moebius/pull/138 | |||
* | | | Bug 1338053: Make nsFlexContainerFrame::MarkIntrinsicISizesDirty() also call ↵ | janekptacijarabaci | 2018-04-24 | -0/+174 |
| | | | | | | | | | | | | its parent class's method | |||
* | | | Bug 1336708: Reftest | janekptacijarabaci | 2018-04-24 | -0/+65 |
| | | | ||||
* | | | Bug 1336708: Don't reuse cached flex-item reflow measurements if the item's ↵ | janekptacijarabaci | 2018-04-24 | -23/+39 |
| | | | | | | | | | | | | computed height has changed | |||
* | | | Bug 1209697: Cache flex measuring reflows to avoid exponential behavior | janekptacijarabaci | 2018-04-24 | -39/+114 |
| | | | ||||
* | | | Bug 1209697: Clear ancestor intrinsic sizes when our block size changes | janekptacijarabaci | 2018-04-24 | -1/+6 |
| | | | ||||
* | | | moebius#195: DOM - PointerEvent - improvements | janekptacijarabaci | 2018-04-23 | -0/+2 |
| | | | | | | | | | | | | https://github.com/MoonchildProductions/moebius/pull/195 | |||
* | | | moebius#121: DOM - Selection API - getSelection() should exist on ↵ | janekptacijarabaci | 2018-04-23 | -0/+15 |
| | | | | | | | | | | | | | | | | | | XMLDocument / Selection.type https://github.com/MoonchildProductions/moebius/pull/121 | |||
* | | | moebius#71: DOM - Pointer Events - improvements | janekptacijarabaci | 2018-04-20 | -367/+95 |
| | | | | | | | | | | | | https://github.com/MoonchildProductions/moebius/pull/71 | |||
* | | | Bug 1453339 - Make it harder to mess up Promise::All. r=peterv, a=RyanVM | Boris Zbarsky | 2018-04-19 | -11/+1 |
| | | | | | | | | | | | | MozReview-Commit-ID: UO4wssYHj7 | |||
* | | | Bug 1448774. r=dholbert, a=RyanVM | Robert Longson | 2018-04-19 | -2/+2 |
| | | | | | | | | | | | | | | | | | | --HG-- extra : source : edfd9ffbd7208ef0a59f40a0d77d8dd53c905cb9 extra : intermediate-source : 3784b22ec536b08ce95201d73ae8806340c18b8c | |||
* | | | Bug 1443092 - Avoid calling SVGAnimatedEnumeration::AnimVal() from ↵ | Botond Ballo | 2018-04-19 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | nsSVGUtils::GetBBox(). r=jwatt, a=RyanVM AnimVal() is a DOM getter, and it flushes animations, which we don't want in GetBBox() which is called from display list building cide and FrameLayerBuilder. MozReview-Commit-ID: DWgm7wAV7C0 | |||
* | | | Use natural border width rounding. | wolfbeast | 2018-04-18 | -6/+9 |
| | | | | | | | | | | | | | | | | | | | | | Round subpixel border widths to nearest integer instead of nearest-below integer. Split caret widths off from border widths and continue to use rounding to nearest-below integer for that. Bump Goanna version for visual rendering change. | |||
* | | | Merge branch 'html_input_datetime_1' | wolfbeast | 2018-04-15 | -3/+175 |
|\ \ \ | | | | | | | | | | | | | This is almost everything needed for #162. | |||
| * | | | moebius#92: HTML - input - datetime | janekptacijarabaci | 2018-03-30 | -0/+166 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + native in moebius: Bug 1317600: https://bugzilla.mozilla.org/show_bug.cgi?id=1317600 A note - not implemented: Bug 1282768: https://bugzilla.mozilla.org/show_bug.cgi?id=1282768 *.css: filter: url("chrome://global/skin/filters.svg#fill");, fill: Bug 1283385: https://bugzilla.mozilla.org/show_bug.cgi?id=1283385 Bug 1323109: https://bugzilla.mozilla.org/show_bug.cgi?id=1323109 Bug 1314544: https://bugzilla.mozilla.org/show_bug.cgi?id=1314544 Bug 1286182: https://bugzilla.mozilla.org/show_bug.cgi?id=1286182 Bug 1325922: https://bugzilla.mozilla.org/show_bug.cgi?id=1325922 A note - not implemented: Bug 1282768: https://bugzilla.mozilla.org/show_bug.cgi?id=1282768 *.css: filter: url("chrome://global/skin/filters.svg#fill");, fill: Bug 1320225: https://bugzilla.mozilla.org/show_bug.cgi?id=1320225 Bug 1341190: https://bugzilla.mozilla.org/show_bug.cgi?id=1341190 | |||
| * | | | Merge branch 'master' of https://github.com/MoonchildProductions/UXP into ↵ | janekptacijarabaci | 2018-03-30 | -107/+2286 |
| |\ \ \ | | | |/ | | |/| | | | | | html_input_datetime_1 |