| Commit message (Collapse) | Author | Age | Lines |
|
|
|
| |
described in Mozilla bug 378645 involving popup windows that was fixed by Apple.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
- Store the clipboard even if it was set in a GTK dialog.
- Fix a GtkTargetList leak.
- Notify GTK that the data is no longer available for
clipboard_get_cb(), so that GTK will no longer advertise nor attempt to
store the data.
|
|\
| |
| | |
Implement HMTL5 <dialog>
|
| |
| |
| |
| |
| |
| | |
called.
Tag #1343
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Microsoft IME on Windows 10 20H1 (build 19025+) supports IME private
mode by input scope. Although previous Windows versions use an
undocumented API for Edge and IE only, the next Windows 10 release will
use a public API for it.
We pre-empt this potential privacy concern by setting the IS_PRIVATE
flag when in PB mode.
|
| | |
|
|/
|
|
| |
Use AutoTArray to set input scope.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
from IPC process_util.
https://bugzilla.mozilla.org/show_bug.cgi?id=1397928
Was looking into that _POSIX_PATH_MAX/NAME_MAX issue earlier because it didn't make a lot of sense and I was thinking of other approaches besides char arrays, and I wanted to make sure it didn't cause problems after they did it. Turns out that one commit after this was added, Mozilla determined the code I was working on fixing to be dead code as of Firefox 58. I don't know if it's dead code in Pale Moon as well, but given that it compiles fine without it and I can't find any other references to szExeFile in the IPC code, that seems like a safe bet.
Besides, I determined config/pathsub.c already seems to do what this code looks like it's trying to do, and implements the solution of just defining NAME_MAX to 256 and having done with it that I nearly adopted after realizing that even OS/2 and BeOS, let alone Unix/Linux systems, all basically use that value and there's just disagreement on which system header to check for it.
|
|
|
|
|
|
|
|
| |
libevent/IPC junk.
This is mostly ifdefs, but as you can see, Solaris is actually a lot like Linux. They're both more SysV than BSD at core, and most of the differences have more to do with Solaris not using glibc than anything else.
I still need to audit a lot of these changes and understand why they're needed and what the alternative approaches are. After this patch, most of the core functionality needed to build Solaris is here.
|
|
|
|
|
|
|
| |
When Mozilla implemented this initially, only Windows 8 existed.
Because of the strict equal check, 8.1 and 10 didn't get HWA over RDP
while they are perfectly capable of doing so with RemoteFX. This change
allows any version of Windows from 8.0 onwards to use HWA over RDP.
|
| |
|
| |
|
|
|
|
| |
Follow-up to 0b6d9a47051be9ef4d064c6f7c60717da91d0bc2
|
| |
|
|
|
| |
..macOS 10.13+ when scrollbars are always displayed. r=mstange
|
|
|
|
|
| |
In order to get the alpha channel when encoding BMP images from a
surface, we need to supply bmp=32 in the encoder options.
|
|
|
|
|
| |
This gets rid of the old nsImageClipboard widget code in favor of using
the nsBMPDecoder in imglib.
|
| |
|
|
|
|
| |
This resolves #881
|
| |
|
|
|
|
| |
surface.
|
|\
| |
| | |
Bug 1489785: Remove a workaround for gcc
|
| |
| |
| |
| | |
Introduced in bug 678607, that is no longer needed that causes hangs in modal dialogs on macOS 10.14
https://hg.mozilla.org/mozilla-central/rev/3920c858319d
|
| |
| |
| |
| | |
Introduced in bug 678607, that is no longer needed and causes hangs in modal dialogs on macOS 10.14.
https://hg.mozilla.org/mozilla-central/rev/3920c858319d
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
This creates a number of stubs and leaves some surrounding code that may be irrelevant (eg. recorded time stamps, status variables).
Stub resolution/removal should be a follow-up to this.
|
|/
|
|
|
| |
When true, overrides the OS convention to prevent scrolling of content when contextual menus are open.
This resolves #730.
|
|
|
|
|
|
|
| |
Don't use transparency optimization for theme items in Windows 8
or later with a high contrast theme in use.
See MoonchildProductions/Pale-Moon#1591
|
|\
| |
| | |
Undo Mozilla Bug 1302937; Reinstate -moz-mac-lion-theme media query
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
cancelable.
Currently, EventListenerManager calls WidgetEvent::PreventDefault() when the status is nsEventStatus_eConsumeNoDefault.
That causes an unexpected state of events.
To solve this, WidgetEvent should do nothing when it's not cancelable but PreventDefault() is called.
|
|/ |
|
|
|
|
|
| |
--HG--
extra : amend_source : 7b1277a18a3ed4f441deef8b51cb4ec4dde614cc
|
| |
|
|
|
|
|
| |
- Conditionals and code blocks. (MOZ_ENABLE_PROFILER_SPS)
- Stub out several profiler-only functions.
|
|
|
|
| |
Tag #288.
|
|
|
|
| |
Tag #288
|
| |
|
| |
|
| |
|
|\
| |
| | |
DOM - implement animationcancel event
|
| |
| |
| |
| | |
Issue #55
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
part 1 (in the description)
Issue #55
part 1 - Add transitioncancel event handler
part 2 - Add ontransitioncancel EventHandler to WebIDL
part 3 - Add member of active time to ComputedTiming
|