gecko-dev/widget
Masayuki Nakano 87ca855ece Bug 1603074 - part 1: Make `synthesizePlainDragAndDrop()` synthesize drag events without `DataTransfer` object r=smaug
`synthesizePlainDragAndDrop()` synthesizes drag events with `DataTransfer`
object which is set to `DragEvent.dataTransfer` of `dragstart` after starting
drag session explicitly.  However, this causes
`EventStateManager::DoDefaltDragStart()` does not initialize `nsIDragService`
instance.  Therefore, synthesized drag events cannot work with editor because
`DragEvent::GetMozSourceNode()` returns `nullptr` due to
`nsIDragSession::GetSourceNode()` returning `nullptr`.

On the other hand, synthesized drag events cannot use
`nsIDragService::InvodeDragSession()` normally because of hitting an assertion.
https://searchfox.org/mozilla-central/rev/690e903ef689a4eca335b96bd903580394864a1c/widget/nsBaseDragService.cpp#230-233

This patch does:
- mark drag events caused by synthesized mouse events as "synthesized for tests"
- make `synthesizePlainDragAndDrop()` stop using
  `nsIDragService.startDragSession()`
- make `nsBaseDragService` initialize and start session even for synthesized
  `dragstart` event
- make `synthesizePlainDragAndDrop()` stop synthesizing drag events with
  `DataTransfer` object since it's normal behavior and it'll be initialized
  with `nsIDragService::GetDataTransfer()`
- make `nsBaseDragService` store `effectAllowed` for the session only when
  it's synthesized session because it's required at initializing synthesized
  default `dropEffect` value of `dragenter`, `dragover`, `dragexit` and `drop`
  events' `dataTransfer`
- make all tests which use `nsIDragService.startDragSession()` use new
  API, `nsIDragService.startDragSessionForTests()` to initialize session's
  `effectAllowed` value
- make `EventStateManager::PostHandleEvent()` set drag end point of the test
  session to `eDrop` event's screen point
- make `synthesizePlainDragAndDrop()` set drag end point of the session if
  it does not synthesize `drop` event because following `endDragSession()`
  use it at dispatching `dragend` event on the source element

Additionally, this adds `dumpFunc` new param to `synthesizePlainDragAndDrop()`
because it's really useful to investigate the reason why requesting DnD isn't
performed as expected.

Differential Revision: https://phabricator.services.mozilla.com/D57425

--HG--
extra : moz-landing-system : lando
2019-12-21 12:27:06 +00:00
..
android Bug 1595176 - Don't wait for a window to finish GeckoView startup r=geckoview-reviewers,agi 2019-12-18 20:22:22 +00:00
cocoa Bug 1604962 - use NS_INLINE_DECL_PURE_VIRTUAL_REFCOUNTING to support refcounting for abstrach classes. r=chunmin 2019-12-21 00:05:53 +00:00
crashtests Bug 1582530 - Fix remaining cases that were relying on blockification. r=dao,dholbert 2019-09-28 00:20:32 +00:00
gtk Bug 1570499 - Part 1: Replace MOZ_FALLTHROUGH macro with C++17's [[fallthrough]] attribute. r=froydnj 2019-12-20 07:16:43 +00:00
gtkxtbin Bug 1547143 - Format the tree: Be prescriptive with the pointer style (left) r=Ehsan 2019-05-01 08:47:10 +00:00
headless Backed out 7 changesets (bug 1432856) for build bustages failures in nsWindow.h on a CLOSED TREE 2019-12-16 23:53:35 +02:00
reftests Bug 1453935 - Ensure that we snap within the visible rect with WebRender. r=kvark 2019-02-07 18:05:43 -05:00
tests Bug 1601113, replace URIs ending in vnd.mozilla.xul+xml with xhtml+xml r=bgrins 2019-12-17 00:33:16 +00:00
uikit Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
windows Bug 1605405: Break the MSCOM <-> XPCOM cycle in the alerts service during shutdown. r=jmathies 2019-12-20 19:05:46 +00:00
x11 Bug 1521000 - Part 2: Adjust our clang-format rules to include spaces after the hash for nested preprocessor directives r=sylvestre 2019-01-18 10:16:18 +01:00
BasicEvents.h Bug 1601184 - Make legacy mouse scroll events composed. r=smaug 2019-12-08 21:43:11 +00:00
CommandList.h Bug 1555227 - Make GetInternalCommand() return new commands when the command is "cmd_align" without params r=m_kato 2019-06-04 10:01:31 +00:00
CompositorWidget.cpp Bug 1573343 - Stop using LayoutDevice units in BasicCompositor. r=mattwoodrow 2019-08-19 22:40:55 +00:00
CompositorWidget.h Bug 1597585 - Make LayerManagerComposite use mGL to pass the GL context to PreRender, just like WebRender. r=mattwoodrow 2019-11-20 23:22:58 +00:00
ContentCache.cpp Bug 1600561 - Handle eCompositionCommitAsIs in ContentCacheInParent::OnCompositionEvent. r=masayuki 2019-12-02 15:27:29 +00:00
ContentCache.h Bug 1289211 - Rename InfallibleTArray to nsTArray in widget/ r=jmathies 2019-07-10 03:33:42 +00:00
ContentEvents.h
EventClassList.h
EventForwards.h Bug 1549661 - part 7: Make GetInternalCommand() take nsCommandParams instead of nsAString r=m_kato 2019-05-21 07:47:51 +00:00
EventMessageList.h Bug 1518442 - Part 1: Implement FormDataEvent interface; r=smaug,edgar 2019-09-09 13:53:25 +00:00
FontRange.h
GfxDriverInfo.cpp Bug 1570499 - Part 1: Replace MOZ_FALLTHROUGH macro with C++17's [[fallthrough]] attribute. r=froydnj 2019-12-20 07:16:43 +00:00
GfxDriverInfo.h Bug 1603015 - Backout r=gw 2019-12-13 00:46:18 +00:00
GfxInfoBase.cpp Bug 1570499 - Part 1: Replace MOZ_FALLTHROUGH macro with C++17's [[fallthrough]] attribute. r=froydnj 2019-12-20 07:16:43 +00:00
GfxInfoBase.h Bug 1593725 - cache gfx information so we don't re-read prefs and re-search blocklists for each content process, r=jrmuizel 2019-11-09 02:21:18 +00:00
GfxInfoCollector.cpp Bug 1547143 - Format the tree: Be prescriptive with the pointer style (left) r=Ehsan 2019-05-01 08:47:10 +00:00
GfxInfoCollector.h Bug 1547143 - Format the tree: Be prescriptive with the pointer style (left) r=Ehsan 2019-05-01 08:47:10 +00:00
GfxInfoX11.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
GfxInfoX11.h Bug 1594145 - Add gfx telemetry scalars to geckoview_streaming. r=Dexter,jnicol 2019-11-26 19:42:06 +00:00
IMEData.cpp Bug 1577685 - Move some utility functions from IMEStateManager to widget. r=masayuki 2019-08-30 05:56:58 +00:00
IMEData.h Bug 1577685 - Move some utility functions from IMEStateManager to widget. r=masayuki 2019-08-30 05:56:58 +00:00
InProcessCompositorWidget.cpp Bug 1576390 - Remove now-unused DrawWindowOverlay and WindowOverlayChanged methods. r=mattwoodrow 2019-11-13 02:24:06 +00:00
InProcessCompositorWidget.h Bug 1576390 - Remove now-unused DrawWindowOverlay and WindowOverlayChanged methods. r=mattwoodrow 2019-11-13 02:24:06 +00:00
InputData.cpp Bug 1213601 - implement kinetic/inertial scrolling (fling) for Gtk. r=botond 2019-06-20 16:18:45 -04:00
InputData.h Bug 1519636 - Reformat recent changes to the Google coding style r=Ehsan 2019-07-06 08:18:28 +00:00
LSBUtils.cpp
LSBUtils.h
LookAndFeel.h Bug 1554433 - Move system colors to values::specified::color. r=xidorn 2019-05-26 13:10:00 +00:00
MediaKeysEventSourceFactory.h Bug 1601508 - create a general interface for getting platform-specific media keys event source r=spohl 2019-12-06 20:55:26 +00:00
MiscEvents.h
MouseEvents.h Bug 1603074 - part 1: Make `synthesizePlainDragAndDrop()` synthesize drag events without `DataTransfer` object r=smaug 2019-12-21 12:27:06 +00:00
NativeKeyToDOMCodeName.h Bug 1521000 - Part 2: Adjust our clang-format rules to include spaces after the hash for nested preprocessor directives r=sylvestre 2019-01-18 10:16:18 +01:00
NativeKeyToDOMKeyName.h Bug 1521000 - Part 2: Adjust our clang-format rules to include spaces after the hash for nested preprocessor directives r=sylvestre 2019-01-18 10:16:18 +01:00
PCompositorWidget.ipdl
PlatformWidgetTypes.ipdlh
PluginWidgetProxy.cpp Bug 1553769 - Make nsIWidget::SetFocus infallible, and make it take an enum class. r=NeilDeakin 2019-05-31 22:13:56 +00:00
PluginWidgetProxy.h Bug 1553769 - Make nsIWidget::SetFocus infallible, and make it take an enum class. r=NeilDeakin 2019-05-31 22:13:56 +00:00
ProcInfo.h Bug 1604001 - Add the missing process type of the fork server for tests. r=gsvelto 2019-12-19 15:50:03 +00:00
PuppetBidiKeyboard.cpp
PuppetBidiKeyboard.h
PuppetWidget.cpp Backed out 7 changesets (bug 1432856) for build bustages failures in nsWindow.h on a CLOSED TREE 2019-12-16 23:53:35 +02:00
PuppetWidget.h Backed out 7 changesets (bug 1432856) for build bustages failures in nsWindow.h on a CLOSED TREE 2019-12-16 23:53:35 +02:00
Screen.cpp Bug 1573992 - Convert layout.css.devPixelsPerPx to static pref. r=njn 2019-08-26 21:02:43 +00:00
Screen.h
ScreenManager.cpp Bug 1589601 - Return the fallback to primary monitor on Wayland to not break PIP; r=stransky 2019-11-05 08:14:18 +00:00
ScreenManager.h
SharedWidgetUtils.cpp Bug 1559414 - Rename unaudited pre-fission methods with SameProcess for future audit burndown. r=nika 2019-07-26 16:48:31 +00:00
SystemTimeConverter.h Bug 834505 undef GetCurrentTime() from windows-h-wrapper.template.h r=glandium 2019-09-18 02:52:20 +00:00
TextEventDispatcher.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
TextEventDispatcher.h Bug 1573992 - Convert two dom.keyboardevent.* prefs to staticprefs. r=njn 2019-08-26 20:25:42 +00:00
TextEventDispatcherListener.h
TextEvents.h Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
TextRange.h
TouchEvents.h
VsyncDispatcher.cpp Bug 1542808 - Implement widget-local VsyncSource for Wayland windows. r=stransky,lsalzman 2019-11-27 00:21:33 +00:00
VsyncDispatcher.h Bug 1542808 - Implement widget-local VsyncSource for Wayland windows. r=stransky,lsalzman 2019-11-27 00:21:33 +00:00
WidgetEventImpl.cpp Bug 1603074 - part 1: Make `synthesizePlainDragAndDrop()` synthesize drag events without `DataTransfer` object r=smaug 2019-12-21 12:27:06 +00:00
WidgetMessageUtils.h
WidgetTraceEvent.h
WidgetUtils.cpp Bug 1521000 - Part 2: Adjust our clang-format rules to include spaces after the hash for nested preprocessor directives r=sylvestre 2019-01-18 10:16:18 +01:00
WidgetUtils.h
WindowSurface.h
WindowSurfaceX11SHM.cpp
WindowSurfaceX11SHM.h Bug 1521000 - Part 2: Adjust our clang-format rules to include spaces after the hash for nested preprocessor directives r=sylvestre 2019-01-18 10:16:18 +01:00
moz.build Bug 1601508 - create a general interface for getting platform-specific media keys event source r=spohl 2019-12-06 20:55:26 +00:00
nsAppShellSingleton.h Bug 1545381 - be more defensive in nsAppShellSingleton; r=erahm 2019-07-22 20:52:35 +00:00
nsAutoRollup.cpp Bug 1523969 part 26 - Move method definition inline comments to new line in 'widget/'. r=mstange 2019-02-25 16:13:48 -06:00
nsAutoRollup.h
nsBaseAppShell.cpp Bug 1547143 - Format the tree: Be prescriptive with the pointer style (left) r=Ehsan 2019-05-01 08:47:10 +00:00
nsBaseAppShell.h
nsBaseClipboard.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsBaseClipboard.h
nsBaseDragService.cpp Bug 1603074 - part 1: Make `synthesizePlainDragAndDrop()` synthesize drag events without `DataTransfer` object r=smaug 2019-12-21 12:27:06 +00:00
nsBaseDragService.h Bug 1603074 - part 1: Make `synthesizePlainDragAndDrop()` synthesize drag events without `DataTransfer` object r=smaug 2019-12-21 12:27:06 +00:00
nsBaseFilePicker.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsBaseFilePicker.h Bug 1553603 - Support "capture" attribute in Gecko and expose in GV. r=geckoview-reviewers,smaug,snorp,agi 2019-07-30 18:13:05 +00:00
nsBaseScreen.cpp Bug 1547143 - Format the tree: Be prescriptive with the pointer style (left) r=Ehsan 2019-05-01 08:47:10 +00:00
nsBaseScreen.h Bug 1547143 - Format the tree: Be prescriptive with the pointer style (left) r=Ehsan 2019-05-01 08:47:10 +00:00
nsBaseWidget.cpp Bug 1598330 - Convert dom.w3c_touch_events.enabled to a static pref. r=njn 2019-12-09 00:54:23 +00:00
nsBaseWidget.h Bug 1542808 - Implement widget-local VsyncSource for Wayland windows. r=stransky,lsalzman 2019-11-27 00:21:33 +00:00
nsClipboardHelper.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsClipboardHelper.h
nsClipboardProxy.cpp Bug 1557847. Stop using [array] in nsIClipboard. r=NeilDeakin 2019-06-09 01:06:39 +00:00
nsClipboardProxy.h
nsColorPickerProxy.cpp Bug 1534395 - Rename TabChild to BrowserChild. r=nika 2019-04-09 17:39:01 -05:00
nsColorPickerProxy.h
nsContentProcessWidgetFactory.cpp Bug 1312422 - Web Share Base/DOM implementation r=farre 2019-10-09 10:57:11 +00:00
nsDeviceContextSpecProxy.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsDeviceContextSpecProxy.h
nsDragServiceProxy.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsDragServiceProxy.h
nsFilePickerProxy.cpp Bug 1585284 - Use nsIGlobalObject in any Blob/File CTOR, r=smaug 2019-10-21 05:33:33 +00:00
nsFilePickerProxy.h Bug 1553603 - Support "capture" attribute in Gecko and expose in GV. r=geckoview-reviewers,smaug,snorp,agi 2019-07-30 18:13:05 +00:00
nsGUIEventIPC.h Bug 1601936. Ensure ScrollWheelInput::mAPZAction is transferred over ipc. r=botond 2019-12-06 16:56:36 +00:00
nsHTMLFormatConverter.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsHTMLFormatConverter.h
nsIAppShell.idl
nsIApplicationChooser.idl
nsIBaseWindow.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIBidiKeyboard.idl
nsIClipboard.idl Bug 1557847. Stop using [array] in nsIClipboard. r=NeilDeakin 2019-06-09 01:06:39 +00:00
nsIClipboardHelper.idl
nsIClipboardOwner.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIColorPicker.idl
nsIDeviceContextSpec.h
nsIDisplayInfo.idl
nsIDragService.idl Bug 1603074 - part 1: Make `synthesizePlainDragAndDrop()` synthesize drag events without `DataTransfer` object r=smaug 2019-12-21 12:27:06 +00:00
nsIDragSession.idl Bug 1603074 - part 1: Make `synthesizePlainDragAndDrop()` synthesize drag events without `DataTransfer` object r=smaug 2019-12-21 12:27:06 +00:00
nsIFilePicker.idl Bug 1553603 - Support "capture" attribute in Gecko and expose in GV. r=geckoview-reviewers,smaug,snorp,agi 2019-07-30 18:13:05 +00:00
nsIFormatConverter.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIGfxInfo.idl Bug 1602511 - Blacklist webrender compositor on Intel HD 520 r=gw 2019-12-10 19:16:13 +00:00
nsIGfxInfoDebug.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIGtkTaskbarProgress.idl
nsIIdleService.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIIdleServiceInternal.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIJumpListBuilder.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIJumpListItem.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIKeyEventInPluginCallback.h
nsIMacDockSupport.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIMacFinderProgress.idl Bug 909760 - Show download progress in the MacOS Finder r=spohl,mak 2019-06-19 18:48:49 +00:00
nsIMacSharingService.idl
nsIMacWebAppUtils.idl
nsINativeMenuService.h
nsIPluginWidget.h
nsIPrintDialogService.h Bug 1602125. Remove nsIPrintingPromptService.showPrintDialog's nsIWebBrowserPrint parameter and MockWebBrowserPrint. r=bobowen 2019-12-09 09:04:29 +00:00
nsIPrintSession.idl Bug 1545822 - Clean up some whitespace in XPIDL files. r=froydnj 2019-04-21 01:47:00 +00:00
nsIPrintSettings.idl Bug 1552785. Remove internal code for various frameset printing behaviors. r=bobowen 2019-05-21 16:01:34 +01:00
nsIPrintSettingsService.idl Bug 1602125. Remove nsIPrintingPromptService.showPrintDialog's nsIWebBrowserPrint parameter and MockWebBrowserPrint. r=bobowen 2019-12-09 09:04:29 +00:00
nsIPrintSettingsWin.idl Bug 1550893 - Fix the implicit builtinclassness for some Windows widget interfaces. r=bobowen 2019-05-14 08:19:10 +00:00
nsIPrinterEnumerator.idl Bug 1545822 - Clean up some whitespace in XPIDL files. r=froydnj 2019-04-21 01:47:00 +00:00
nsIRollupListener.h Bug 1543315 - part 13: Mark PresShell::Paint() as MOZ_CAN_RUN_SCRIPT r=smaug 2019-05-06 13:25:35 +00:00
nsIScreen.idl
nsIScreenManager.idl Bug 1581606 - Consider all screens when deciding to turn on WebRender. r=jrmuizel 2019-10-02 18:48:11 +00:00
nsISharePicker.idl Bug 1588420 - Add init() to SharePicker.idl, which provides a means to get to browser parent r=droeh 2019-10-15 00:52:09 +00:00
nsISound.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIStandaloneNativeMenu.idl
nsISystemStatusBar.idl
nsITaskbarOverlayIconController.idl
nsITaskbarPreview.idl
nsITaskbarPreviewButton.idl
nsITaskbarPreviewController.idl
nsITaskbarProgress.idl
nsITaskbarTabPreview.idl Bug 1550893 - Fix the implicit builtinclassness for some Windows widget interfaces. r=bobowen 2019-05-14 08:19:10 +00:00
nsITaskbarWindowPreview.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsITouchBarHelper.idl Bug 1563350 - Add popover to the Touch Bar that displays when the Urlbar has focus. r=mikedeboer,spohl,fluent-reviewers,Pike,flod 2019-10-10 19:57:32 +00:00
nsITouchBarInput.idl Bug 1563349 - Part 2 - Support TouchBarInput children. r=spohl 2019-10-09 15:25:43 +00:00
nsITouchBarUpdater.idl Bug 1563349 - Part 4 - Support NSPopoverTouchBarItem. r=spohl 2019-10-09 17:55:15 +00:00
nsITransferable.idl Bug 1552795 - Remove all trailing whitespaces in idl files r=Ehsan 2019-05-22 22:37:14 +00:00
nsIWidget.h Backed out 7 changesets (bug 1432856) for build bustages failures in nsWindow.h on a CLOSED TREE 2019-12-16 23:53:35 +02:00
nsIWidgetListener.cpp Bug 1586986 - Deliver 'fixed-bottom' offset to the top of the pres context on the foreground tab. r=geckoview-reviewers,tnikkel,snorp 2019-11-21 21:15:46 +00:00
nsIWidgetListener.h Bug 1586986 - Deliver 'fixed-bottom' offset to the top of the pres context on the foreground tab. r=geckoview-reviewers,tnikkel,snorp 2019-11-21 21:15:46 +00:00
nsIWinTaskbar.idl
nsIWindowsUIUtils.idl Bug 1602194: Use the site's icons for the SSB UI window. r=mhowell,Gijs 2019-12-18 16:37:55 +00:00
nsIdleService.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsIdleService.h Bug 1524687: Part 9 - Convert gtk widget module to static registration. r=erahm 2019-01-24 17:27:24 -08:00
nsNativeTheme.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsNativeTheme.h Bug 1578377 - Render dark scrollbars for element with dark background on Windows. r=jmathies 2019-10-23 21:00:28 +00:00
nsPrimitiveHelpers.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsPrimitiveHelpers.h
nsPrintSession.cpp
nsPrintSession.h
nsPrintSettingsImpl.cpp Bug 1552785. Remove internal code for various frameset printing behaviors. r=bobowen 2019-05-21 16:01:34 +01:00
nsPrintSettingsImpl.h Bug 1552785. Remove internal code for various frameset printing behaviors. r=bobowen 2019-05-21 16:01:34 +01:00
nsPrintSettingsService.cpp Bug 1602125. Remove nsIPrintingPromptService.showPrintDialog's nsIWebBrowserPrint parameter and MockWebBrowserPrint. r=bobowen 2019-12-09 09:04:29 +00:00
nsPrintSettingsService.h
nsShmImage.cpp Bug 1521000 - Part 2: Adjust our clang-format rules to include spaces after the hash for nested preprocessor directives r=sylvestre 2019-01-18 10:16:18 +01:00
nsShmImage.h Bug 1521000 - Part 2: Adjust our clang-format rules to include spaces after the hash for nested preprocessor directives r=sylvestre 2019-01-18 10:16:18 +01:00
nsSoundProxy.cpp Bug 1558915 - Use infallible nsIURI::SchemeIs in various places r=Ehsan 2019-08-07 19:49:40 +00:00
nsSoundProxy.h
nsTransferable.cpp Bug 1600545 - Remove useless inclusions of header files generated from IDL files in modules/, netwerk/, parser/, security/, startupcache/, storage/, toolkit/, tools/, uriloader/, widget/, xpcom/ and xpfe/ r=Ehsan 2019-12-06 09:17:57 +00:00
nsTransferable.h
nsWidgetInitData.h Bug 1588484 - Disable Advanced Layers for now when using fission for the window. r=kmag 2019-11-24 20:59:07 +00:00
nsWidgetsCID.h Bug 1312422 - Web Share Base/DOM implementation r=farre 2019-10-09 10:57:11 +00:00
nsXPLookAndFeel.cpp Bug 1592189 - Remove SpecialColorKeyword enum and merge into SystemColor r=emilio 2019-11-14 00:17:23 +00:00
nsXPLookAndFeel.h Bug 1561546 Part 2 - Update theme when nsXPLookAndFeel prefs change. r=dholbert,jmathies 2019-09-19 19:05:01 +00:00