gecko-dev/dom/base
Kris Maglione 5fdcb5a5d2 Bug 1407056: Part 1 - Provide more consistent principal/origin URL to content policies. r=bz,ckerschb
We're currently fairly vague and inconsistent about the values we provide to
content policy implementations for requestOrigin and requestPrincipal. In some
cases they're the triggering principal, sometimes the loading principal,
sometimes the channel principal.

Our existing content policy implementations which require or expect a loading
principal currently retrieve it from the context node. Since no current
callers require the principal to be the loading principal, and some already
expect it to be the triggering principal (which there's currently no other way
to retrieve), I chose to pass the triggering principal whenever possible, but
use the loading principal to determine the origin URL.

As a follow-up, I'd like to change the nsIContentPolicy interface to
explicitly receive loading and triggering principals, or possibly just
LoadInfo instances, rather than poorly-defined request
origin/principal/context args. But since that may cause trouble for
comm-central, I'd rather not do it as part of this bug.

MozReview-Commit-ID: LqD9GxdzMte

--HG--
extra : rebase_source : 41ce439912ae7b895e0a3b0e660fa6ba571eb50f
2017-10-12 15:43:55 -07:00
..
crashtests Bug 1324463. Fix crash when xbl:children is stuck into shadow DOM. r=smaug 2017-10-11 22:19:10 -04:00
test Bug 1406922 - Make CycleCollectedJSContext to handle microtasks and make MutationObserver to use them, r=baku,bevis 2017-10-11 15:31:38 +03:00
AnonymousContent.cpp Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
AnonymousContent.h Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
Attr.cpp Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
Attr.h Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
AutocompleteFieldList.h Bug 1387634 - Update unsupported @autocomplete token list to reflect the autofill MVP. r=smaug 2017-08-04 16:15:31 -07:00
BarProps.cpp
BarProps.h
BodyUtil.cpp Bug 1261841 part 2 - Use encoding_rs instead of uconv. r=emk,mystor. 2017-06-13 13:23:23 +03:00
BodyUtil.h
BorrowedAttrInfo.cpp
BorrowedAttrInfo.h
CORSMode.h
ChildIterator.cpp Bug 1396584 - Remove support for multiple ShadowRoots, r=mrbkap 2017-09-25 18:09:26 +03:00
ChildIterator.h Bug 1396584 - Remove support for multiple ShadowRoots, r=mrbkap 2017-09-25 18:09:26 +03:00
ChromeNodeList.cpp
ChromeNodeList.h
ChromeUtils.cpp Bug 1404652: Part 1 - Add ChromeUtils.idleDispatch helper method. r=ehsan 2017-09-23 22:12:32 -07:00
ChromeUtils.h Bug 1404652: Part 1 - Add ChromeUtils.idleDispatch helper method. r=ehsan 2017-09-23 22:12:32 -07:00
Comment.cpp
Comment.h
Crypto.cpp
Crypto.h
CustomElementRegistry.cpp Bug 1406297 - Fix Document.createElement must report an exception. r=smaug 2017-10-12 04:25:00 -04:00
CustomElementRegistry.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
DOMCursor.cpp Bug 1391005 - Eliminate NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED. r=peterv 2017-08-29 16:02:48 -07:00
DOMCursor.h
DOMError.cpp Backed out changeset 417e576cfa1e (bug 1388391) on developers request 2017-08-16 14:23:09 +02:00
DOMError.h
DOMException.cpp Bug 1389582. Drop classinfo stuff from Exception, since that's exposed via webidl bindings. r=peterv 2017-08-31 09:12:14 -04:00
DOMException.h Bug 1389582. Drop classinfo stuff from Exception, since that's exposed via webidl bindings. r=peterv 2017-08-31 09:12:14 -04:00
DOMImplementation.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
DOMImplementation.h
DOMIntersectionObserver.cpp Bug 1406102 - [intersection-observer] Calculate areas using int64_t. r=dholbert 2017-10-09 15:08:41 -07:00
DOMIntersectionObserver.h Bug 1399603 - [intersection-observer] Stop observing a target when intersection root is deleted. r=mrbkap 2017-10-06 07:39:54 -07:00
DOMMatrix.cpp Bug 1276186. Stop using the locale-sensitive AppendPrintf in code that is supposed to always use '.' as a decimal separator. r=dbaron 2017-03-14 23:16:32 -04:00
DOMMatrix.h Bug 1355675 Part 2: Extend DOMMatrixReadOnly to allow instantiation with a Matrix4x4. r=mattwoodrow 2017-05-09 14:29:42 -07:00
DOMParser.cpp Bug 1398619 - Correctly inherit backend for document created by DOMParser, and add test for it. r=bholley 2017-09-12 14:28:27 +10:00
DOMParser.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
DOMPoint.cpp
DOMPoint.h
DOMQuad.cpp Bug 1391005 - Eliminate NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED. r=peterv 2017-08-29 16:02:48 -07:00
DOMQuad.h
DOMRect.cpp Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
DOMRect.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
DOMRequest.cpp Bug 1401848. Remove NS_IMPL_EVENT_HANDLER and its consumers. r=smaug 2017-09-22 18:07:05 -04:00
DOMRequest.h Bug 1120178 - Migrate DOMError to DOMExtension in FileReader, IndexedDB, DOMRequest and so on, r=smaug 2017-08-06 20:47:00 +03:00
DOMRequestHelper.jsm Bug 1355056 - replace (function(args) { /* do stuff using this */ }).bind(this) with arrow functions, r=jaws. 2017-04-27 00:25:45 +02:00
DOMStringList.cpp
DOMStringList.h
DOMTokenListSupportedTokens.h
DirectionalityUtils.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
DirectionalityUtils.h Bug 1391803 - Use nsStringFwd.h for forward declaring string classes. r=froydnj 2017-08-16 16:48:52 -07:00
DispatcherTrait.cpp Bug 1378930 - Part 2: Remove the aName parameter from SchedulerGroup/DocGroup/DispatcherTrait. r=billm 2017-07-26 16:13:35 +08:00
DispatcherTrait.h Bug 1378930 - Part 2: Remove the aName parameter from SchedulerGroup/DocGroup/DispatcherTrait. r=billm 2017-07-26 16:13:35 +08:00
DocGroup.cpp Bug 1378930 - Part 2: Remove the aName parameter from SchedulerGroup/DocGroup/DispatcherTrait. r=billm 2017-07-26 16:13:35 +08:00
DocGroup.h Bug 1378930 - Part 2: Remove the aName parameter from SchedulerGroup/DocGroup/DispatcherTrait. r=billm 2017-07-26 16:13:35 +08:00
DocumentFragment.cpp Bug 1396584 - Remove support for multiple ShadowRoots, r=mrbkap 2017-09-25 18:09:26 +03:00
DocumentFragment.h Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
DocumentType.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
DocumentType.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
Element.cpp Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
Element.h Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
ElementInlines.h Bug 1389385 - Rearrange dirty noting to operate on the element rather than the parent. r=emilio 2017-08-11 18:18:22 -07:00
EventSource.cpp Bug 1391005 - Eliminate NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED. r=peterv 2017-08-29 16:02:48 -07:00
EventSource.h Bug 1261841 part 2 - Use encoding_rs instead of uconv. r=emk,mystor. 2017-06-13 13:23:23 +03:00
FeedWriterEnabled.h
FlushType.h Bug 1361067 Part2: Coalesce mouse move events to be once per refresh cycle. r=smaug. 2017-08-11 14:58:08 +08:00
FormData.cpp Bug 1398733 - HTMLFormSubmission should pass the size of the post data inputStream if known, r=smaug 2017-09-22 08:12:03 +02:00
FormData.h Bug 1398733 - HTMLFormSubmission should pass the size of the post data inputStream if known, r=smaug 2017-09-22 08:12:03 +02:00
FragmentOrElement.cpp merge mozilla-central to autoland. r=merge a=merge 2017-10-07 10:52:29 +02:00
FragmentOrElement.h Bug 1316277 - Move intersection observer list from DOMSlots to a property. r=mrbkap 2017-10-05 20:42:55 -07:00
FromParser.h
FuzzingFunctions.cpp Bug 1322400 - Add content-exposed GC and CC functions to fuzzing builds. r=smaug 2017-02-22 11:05:50 -08:00
FuzzingFunctions.h Bug 1322400 - Add content-exposed GC and CC functions to fuzzing builds. r=smaug 2017-02-22 11:05:50 -08:00
GroupedSHistory.cpp Bug 1341809 - Fix unified build bustage in GroupedHistory.{h,cpp}. r=Ehsan 2017-02-22 13:32:06 -08:00
GroupedSHistory.h Bug 1341809 - Fix unified build bustage in GroupedHistory.{h,cpp}. r=Ehsan 2017-02-22 13:32:06 -08:00
HTMLSplitOnSpacesTokenizer.h
IDTracker.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
IDTracker.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
IdleDeadline.cpp Bug 1404652: Part 1 - Add ChromeUtils.idleDispatch helper method. r=ehsan 2017-09-23 22:12:32 -07:00
IdleDeadline.h Bug 1404652: Part 1 - Add ChromeUtils.idleDispatch helper method. r=ehsan 2017-09-23 22:12:32 -07:00
IdleRequest.cpp Bug 1313864 - Use the timeout handle to cancel rIC timeout. r=bkelly 2017-02-01 16:16:36 +01:00
IdleRequest.h Bug 1366750 - Rename nsIIncrementalRunnable to nsIIdleRunnable. r=smaug 2017-05-23 13:24:25 +02:00
IframeSandboxKeywordList.h
ImageEncoder.cpp Backed out changeset d6ab8156f858 (bug 967895) 2017-10-09 19:18:17 +02:00
ImageEncoder.h Backed out changeset d6ab8156f858 (bug 967895) 2017-10-09 19:18:17 +02:00
ImageTracker.cpp Bug 1372317 part 2 - Replace LookupRemoveIf() calls with Lookup() + entry.Remove() where needed. r=froydnj 2017-06-18 17:07:54 +02:00
ImageTracker.h
IndexedDBHelper.jsm Bug 1355161 - script-generated patch to replace .{currentThread,mainThread}.dispatch(..., Ci.nsIThread.DISPATCH_NORMAL) with .dispatchToMainThread(...), r=froydnj. 2017-04-14 18:29:12 +02:00
IntlUtils.cpp Bug 1346084 - Expose mozIntl.getLocaleInfo to ChromeOrXBL. r=smaug 2017-03-14 20:38:00 +01:00
IntlUtils.h Bug 1346084 - Expose mozIntl.getLocaleInfo to ChromeOrXBL. r=smaug 2017-03-14 20:38:00 +01:00
Link.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
Link.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
Location.cpp Bug 1368327 - Do not assert aDocShell in Location, since it's actually possible to be nullptr. r=smaug 2017-08-28 17:12:47 +08:00
Location.h Bug 1363429 - Get rid of nsIDOMLocation, r=bz, r=honza, f=ochameau 2017-05-11 07:26:08 +02:00
NameSpaceConstants.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
Navigator.cpp Bug 1399590 - Modify the argument of nsICookiePermission::CanAccess for changing nsIURI to nsIPrincipal. r=jdm 2017-10-03 14:37:11 +08:00
Navigator.h Bug 1382955 (part 1) - Remove MozPowerManager and related things. r=bz,gsvelto. 2017-08-02 10:04:36 +10:00
NodeInfo.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
NodeInfo.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
NodeInfoInlines.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
NodeIterator.cpp Bug 651120 - Remove index argument from content removed/appended/inserted notifications. r=peterv 2017-10-03 11:09:08 +01:00
NodeIterator.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
OrderedTimeoutIterator.h Bug 1370537 P2 Remove TimeoutManager::RunTimeout()'s last expired timeout reference. r=ehsan 2017-06-08 05:51:59 -07:00
PartialSHistory.cpp
PartialSHistory.h
Pose.cpp
Pose.h
PostMessageEvent.cpp Bug 1359017 - onmessageerror for WindowEventHandlers in case StructuredClone algorithm fails when deserializing, r=masayuki, r=smaug 2017-09-13 05:59:06 +02:00
PostMessageEvent.h Bug 1359017 - onmessageerror for WindowEventHandlers in case StructuredClone algorithm fails when deserializing, r=masayuki, r=smaug 2017-09-13 05:59:06 +02:00
ProcessGlobal.cpp Bug 1365086, part 3 - Make nsMessageManagerScriptExecutor::mGlobal into a raw pointer. r=smaug 2017-05-15 13:46:28 -07:00
ProcessGlobal.h Bug 1365086, part 3 - Make nsMessageManagerScriptExecutor::mGlobal into a raw pointer. r=smaug 2017-05-15 13:46:28 -07:00
ProcessSelector.js Bug 1349363 - Use a centralized function to tell if e10s-multi is on. r=Felipe 2017-04-17 14:58:52 -07:00
ProcessSelector.manifest Bug 1333799: MinTabSelector for process selection. r=mrbkap 2017-03-07 20:00:28 +01:00
RangeBoundary.h Bug 1399626 - Part 6: Stop asserting that RangeBoundary objects are valid as they are created, r=masayuki 2017-10-02 11:58:00 -04:00
ResponsiveImageSelector.cpp Bug 1406278: Part 2c - Use subject principal as triggering principal in <img> "srcset" attribute. r=bz 2017-10-02 21:30:34 -07:00
ResponsiveImageSelector.h Bug 1406278: Part 2c - Use subject principal as triggering principal in <img> "srcset" attribute. r=bz 2017-10-02 21:30:34 -07:00
SameProcessMessageQueue.cpp
SameProcessMessageQueue.h
ScreenOrientation.cpp Bug 1391005 - Eliminate NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED. r=peterv 2017-08-29 16:02:48 -07:00
ScreenOrientation.h
Selection.cpp Bug 1405039 - Avoid using nsINode::GetChildAt() in HTMLEditor::GetSelectedElement(); r=masayuki 2017-10-02 14:22:57 -04:00
Selection.h Bug 1405039 - Avoid using nsINode::GetChildAt() in HTMLEditor::GetSelectedElement(); r=masayuki 2017-10-02 14:22:57 -04:00
SelectionChangeListener.cpp Bug 1377989 - part6: Rename mEndParent of nsRange and similar members of similar objects to mEndContainer r=smaug 2017-07-11 22:57:55 +09:00
SelectionChangeListener.h Bug 1377989 - part6: Rename mEndParent of nsRange and similar members of similar objects to mEndContainer r=smaug 2017-07-11 22:57:55 +09:00
ShadowRoot.cpp Bug 1324463. Fix crash when xbl:children is stuck into shadow DOM. r=smaug 2017-10-11 22:19:10 -04:00
ShadowRoot.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
SlowScriptDebug.js
SlowScriptDebug.manifest
StructuredCloneBlob.cpp Bug 1382645: Part 1 - Add memory reporter for StructuredCloneHolder binding implementation. r=billm 2017-07-25 14:53:41 -07:00
StructuredCloneBlob.h Bug 1382645: Part 1 - Add memory reporter for StructuredCloneHolder binding implementation. r=billm 2017-07-25 14:53:41 -07:00
StructuredCloneHolder.cpp Bug 1351488 - Avoid temporary RefPtr to silence rooting hazard (r=sfink) 2017-08-29 10:38:49 -05:00
StructuredCloneHolder.h Bug 1382645: Part 1 - Add memory reporter for StructuredCloneHolder binding implementation. r=billm 2017-07-25 14:53:41 -07:00
StructuredCloneTags.h Bug 1356546: Part 1 - Add a StructuredCloneHolder JS helper to hold opaque structured clone blobs. r=billm 2017-05-20 15:09:24 -07:00
StyleSheetList.cpp
StyleSheetList.h
SubtleCrypto.cpp Bug 1353762 - Revert RTCCertificate changes and remove unnecessary null-check r=keeler 2017-08-31 16:14:37 +02:00
SubtleCrypto.h Bug 1333140 - Collect telemetry about (non-)HTTPS usage of crypto.subtle r=keeler data-r=bsmedberg 2017-05-31 10:35:37 +02:00
TabGroup.cpp Bug 1372733 - EventTargetFor should return an nsISerialEventTarget (r=bkelly) 2017-06-15 20:16:25 -07:00
TabGroup.h Bug 1383328 - Use TabGroup as event target for browser-status-filter (r=smaug) 2017-07-28 13:11:59 -07:00
Text.cpp
Text.h
TextInputProcessor.cpp Bug 1217700 part.3 Expose text change, selection change and position change notifications to nsITextInputProcessorCallback with nsITextInputProcessorNotification r=smaug 2017-04-20 20:17:03 +09:00
TextInputProcessor.h Bug 1296220 Rename nsIMEUpdatePreference to mozilla::widget::IMEUpdatePreference r=m_kato 2017-04-11 21:24:55 +09:00
ThirdPartyUtil.cpp Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
ThirdPartyUtil.h
Timeout.cpp Bug 1378586 P3 Reorder Timeout members to improve binary packing. No functional change. r=farre 2017-07-25 08:35:12 -07:00
Timeout.h Bug 1378586 P3 Reorder Timeout members to improve binary packing. No functional change. r=farre 2017-07-25 08:35:12 -07:00
TimeoutBudgetManager.cpp Bug 1362322 - Throttle background timeouts using budget. r=bkelly 2017-07-02 18:02:38 +02:00
TimeoutBudgetManager.h Bug 1362322 - Throttle background timeouts using budget. r=bkelly 2017-07-02 18:02:38 +02:00
TimeoutExecutor.cpp Bug 1403345, part 5 - Fix unified build bustage by adding missing includes to TimeoutExecutor.cpp. r=me 2017-09-08 10:02:05 +01:00
TimeoutExecutor.h Bug 1403345, part 2 - Add missing includes and class declarations to TimeoutExecutor.h. r=me 2017-09-08 10:02:05 +01:00
TimeoutHandler.cpp Bug 1373536 - Add missing includes due to added file. r=smaug 2017-06-21 12:14:01 +02:00
TimeoutHandler.h Bug 1373536 - Add missing includes due to added file. r=smaug 2017-06-21 12:14:01 +02:00
TimeoutManager.cpp Bug 1403586 - Don't disble budget throttling due to gUM. r=smaug,padenot 2017-09-29 15:21:45 +02:00
TimeoutManager.h Bug 1385238 - Reset execution budget when background state changes. r=bkelly 2017-07-28 09:31:00 -04:00
TreeWalker.cpp
TreeWalker.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
UseCounter.h Bug 1175033 - Support custom use counters that can be incremented from C++; r=froydnj 2017-08-08 17:01:27 +03:00
UseCounters.conf Bug 1391633: Integrate use counters in the JavaScript engine; r=jonco, r=froydnj, data-review=francois 2017-08-18 15:48:49 +02:00
WebKitCSSMatrix.cpp Bug 1353654 - Include missing nsPresContext.h to fix broken --enable-fuzzing enabled builds. r=smaug 2017-04-06 00:29:05 +02:00
WebKitCSSMatrix.h
WebSocket.cpp Bug 1407056: Part 1 - Provide more consistent principal/origin URL to content policies. r=bz,ckerschb 2017-10-12 15:43:55 -07:00
WebSocket.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
WindowNamedPropertiesHandler.cpp Bug 1360523 - Define number of reserved slots explicitly for each proxy js::Class. r=bz 2017-04-29 14:41:49 +02:00
WindowNamedPropertiesHandler.h
WindowOrientationObserver.cpp
WindowOrientationObserver.h
XPathGenerator.cpp Bug 870698 - Part 10: Replace Append(NS_LITERAL_STRING("")) with AppendLiteral(u""). r=erahm 2017-09-07 18:32:54 -07:00
XPathGenerator.h Backed out changeset a4230d2eab5f (bug 1362330) for failing asan-fuzzing (Bof) job, undeclared identifier TaskCategory at nsContentPolicy.cpp:142. r=backout 2017-06-19 17:43:39 +02:00
contentAreaDropListener.js Bug 1370843 - Provide correct triggeringPrincipal for dropLinks. r=smaug,tooru 2017-08-22 10:07:03 +02:00
contentAreaDropListener.manifest
domerr.msg Bug 1397151 - Remove the support for moz-chunk-text type in XHR, r=smaug 2017-09-22 07:18:49 +02:00
gen-usecounters.py Bug 1175033 - Support custom use counters that can be incremented from C++; r=froydnj 2017-08-08 17:01:27 +03:00
moz.build Bug 1403516 - Export dom/base/nsDOMTokenList.h and dom/base/nsStyleLinkElement.h. r=bz 2017-09-27 07:40:00 -04:00
mozAutoDocUpdate.h
mozIDOMWindow.idl
nsAtomListUtils.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAtomListUtils.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAttrAndChildArray.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAttrAndChildArray.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAttrName.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAttrValue.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAttrValue.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAttrValueInlines.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsAttrValueOrString.cpp
nsAttrValueOrString.h Bug 1365092 - Moves side effects of nsGenericHTMLElement and Element's SetAttr, UnsetAttr, and ParseAttribute functions to the corresponding BeforeSetAttr and AfterSetAttr functions r=bz 2017-05-31 11:01:47 -07:00
nsCCUncollectableMarker.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsCCUncollectableMarker.h
nsCaseTreatment.h
nsChildContentList.h Bug 1384661 - Part 2: Add class nsParentNodeChildContentList. r=smaug 2017-08-21 16:11:56 +08:00
nsContentAreaDragDrop.cpp Bug 1389650 - Remove nsIDOMHTMLAnchorElement; r=bz 2017-09-26 11:41:28 -07:00
nsContentAreaDragDrop.h
nsContentCID.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsContentCreatorFunctions.h
nsContentIterator.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsContentList.cpp Bug 651120 - Remove index argument from content removed/appended/inserted notifications. r=peterv 2017-10-03 11:09:08 +01:00
nsContentList.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsContentListDeclarations.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsContentPermissionHelper.cpp Bug 1392195 - Label PContentPermissionRequest actor. r=billm 2017-08-21 17:06:05 +08:00
nsContentPermissionHelper.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsContentPolicy.cpp Bug 1331740: Pass correct context for TYPE_DOCUMENT loads within docshell. r=smaug 2017-09-05 18:01:07 +02:00
nsContentPolicy.h Bug 1361579 - Remove nsISimpleContentPolicy. r=Ehsan 2017-08-03 17:50:00 +09:00
nsContentPolicyUtils.h Bug 1407056: Part 1 - Provide more consistent principal/origin URL to content policies. r=bz,ckerschb 2017-10-12 15:43:55 -07:00
nsContentSink.cpp Bug 1406278: Part 8b - Use subject principal as triggering principal in style <link> "href" attribute. r=bz 2017-10-05 19:40:48 -07:00
nsContentSink.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsContentTypeParser.h
nsContentUtils.cpp Bug 1407056: Part 1 - Provide more consistent principal/origin URL to content policies. r=bz,ckerschb 2017-10-12 15:43:55 -07:00
nsContentUtils.h Bug 1406278: Part 2b - Use subject principal as triggering principal in <img> "src" attribute. r=bz 2017-10-02 20:28:32 -07:00
nsCopySupport.cpp Bug 1398883 - Disable the DataTransfer::Protected state for Firefox 57, r=baku 2017-09-13 11:45:48 -04:00
nsCopySupport.h Bug 1391803 - Use nsStringFwd.h for forward declaring string classes. r=froydnj 2017-08-16 16:48:52 -07:00
nsDOMAttributeMap.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsDOMAttributeMap.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsDOMCID.h Bug 1362735 - Clean up nsIPKCS11 implementation. r=keeler 2017-05-19 00:57:46 +08:00
nsDOMCaretPosition.cpp
nsDOMCaretPosition.h
nsDOMClassInfo.cpp Bug 1401710 - Remove unused unsafe code from nsDOMClassInfo. r=bz 2017-09-20 13:01:48 -07:00
nsDOMClassInfo.h Bug 1401710 - Remove unused unsafe code from nsDOMClassInfo. r=bz 2017-09-20 13:01:48 -07:00
nsDOMClassInfoID.h Bug 1252211 - Convert TreeContentView to WebIDL. r=bz. 2017-06-08 21:04:02 +02:00
nsDOMDataChannel.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsDOMDataChannel.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsDOMDataChannelDeclarations.h
nsDOMJSUtils.h
nsDOMMutationObserver.cpp Bug 1406922 - Make CycleCollectedJSContext to handle microtasks and make MutationObserver to use them, r=baku,bevis 2017-10-11 15:31:38 +03:00
nsDOMMutationObserver.h Bug 1406922 - Make CycleCollectedJSContext to handle microtasks and make MutationObserver to use them, r=baku,bevis 2017-10-11 15:31:38 +03:00
nsDOMNavigationTiming.cpp Bug 1403868 (part 4) - Reduce tools/profiler/public/*.h to almost nothing in non-MOZ_GECKO_PROFILER builds. r=mstange. 2017-10-04 09:11:18 +11:00
nsDOMNavigationTiming.h Bug 1403926 - Make sure PerformanceNavigationTiming timestamps are correct r=baku 2017-10-04 04:05:39 +02:00
nsDOMSerializer.cpp Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsDOMSerializer.h
nsDOMString.h
nsDOMTokenList.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsDOMTokenList.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsDOMWindowList.cpp Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsDOMWindowList.h
nsDOMWindowUtils.cpp Bug 1403077 - add two test-only helper functions to access the stylo blocklist. r=heycam 2017-10-09 12:07:04 +08:00
nsDOMWindowUtils.h Bug 1375497 - Hook up the testing APIs in DOMWindowUtils. r=pchang 2017-06-27 20:29:06 -04:00
nsDataDocumentContentPolicy.cpp Bug 1380227 - Avoid many UTF16toUTF8 and UTF8toUTF16 conversions in nsStringBundle. r=emk. 2017-07-12 15:13:37 +10:00
nsDataDocumentContentPolicy.h
nsDeprecatedOperationList.h Bug 1406493 - Remove the rest of the attribute deprecation warnings; r=baku f=annevk 2017-10-09 18:26:11 -04:00
nsDocElementCreatedNotificationRunner.h Bug 1372405 - Provide names for all runnables in the tree (r=froydnj) 2017-06-26 14:19:58 -07:00
nsDocument.cpp merge mozilla-central to mozilla-inbound. r=merge a=merge 2017-10-11 00:01:28 +02:00
nsDocument.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsDocumentEncoder.cpp Bug 1395828 (part 4) - Remove nsIParserService/nsParserService. r=mrbkap. 2017-09-05 20:19:06 +10:00
nsDocumentWarningList.h Bug 1399853 - Identify the ID of the elements involved in SVG reference loops in the Web Console error messages. r=longsonr 2017-09-11 17:02:35 +01:00
nsFocusManager.cpp Bug 1369072 - part3: nsXBLPrototypeHandler::DispatchXBLCommand() should use controller of visible window r=smaug 2017-09-07 22:54:49 +09:00
nsFocusManager.h Bug 1369072 - part3: nsXBLPrototypeHandler::DispatchXBLCommand() should use controller of visible window r=smaug 2017-09-07 22:54:49 +09:00
nsFrameLoader.cpp Bug 1305237 LoadInfo changes to include all ancestors principals and window IDs, r=bz,mystor 2017-10-10 09:54:00 -07:00
nsFrameLoader.h Bug 1406278: Part 4 - Use subject principal as triggering principal in <iframe>/<frame> "src" attribute r=bz 2017-10-04 22:59:44 -07:00
nsFrameMessageManager.cpp Backed out changeset 759a43ebc6bf (bug 1405541) for asserting in devtools/client/performance/test/browser_perf-console-record-03.js on Windows 7. r=backout 2017-10-11 13:15:26 +02:00
nsFrameMessageManager.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsGenConImageContent.cpp Bug 1347639. Add nsImageLoadingContent::AsContent to make getting the relevant nsIContent* faster. r=qdot 2017-03-16 17:43:34 -04:00
nsGenericDOMDataNode.cpp Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
nsGenericDOMDataNode.h Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
nsGkAtomList.h Bug 1406631: Remove the color-picker-available system metric. r=xidorn 2017-10-07 14:06:44 +02:00
nsGkAtoms.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsGkAtoms.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsGlobalWindow.cpp Bug 1407103 - Convert wstring attributes to AString in widget/nsIPrint*.idl. r=bobowen. 2017-10-09 10:08:09 +11:00
nsGlobalWindow.h Bug 1405798 - Move IsInSyncOperation to nsIGlobalObject, r=baku 2017-10-05 16:45:26 +03:00
nsGlobalWindowCommands.cpp Bug 1390428 (part 1) - Remove many nsXPIDLCString local variables. r=erahm. 2017-08-16 13:58:35 +10:00
nsGlobalWindowCommands.h Bug 1351783 part 3 - Add a KeyboardScrollAction type. r=kats,masayuki 2017-06-05 18:17:30 -05:00
nsHTMLContentSerializer.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsHTMLContentSerializer.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsHistory.cpp
nsHistory.h
nsIAnimationObserver.h
nsIAttribute.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsIContent.h Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
nsIContentInlines.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsIContentIterator.h Bug 1399626 - Part 4: Allow initializing nsIContentIterator with RangeBoundaries, r=masayuki 2017-10-02 11:58:00 -04:00
nsIContentPolicy.idl Bug 1407056: Part 1 - Provide more consistent principal/origin URL to content policies. r=bz,ckerschb 2017-10-12 15:43:55 -07:00
nsIContentSerializer.h Bug 1391803 - Use nsStringFwd.h for forward declaring string classes. r=froydnj 2017-08-16 16:48:52 -07:00
nsIDOMClassInfo.h Bug 1390159 - Remove throw-on-set setProperty hooks on WrappedNatives. r=mrbkap 2017-08-16 09:01:56 +02:00
nsIDOMDOMCursor.idl
nsIDOMDOMRequest.idl Bug 1401848. Remove NS_IMPL_EVENT_HANDLER and its consumers. r=smaug 2017-09-22 18:07:05 -04:00
nsIDOMDataChannel.idl Bug 1401848. Remove NS_IMPL_EVENT_HANDLER and its consumers. r=smaug 2017-09-22 18:07:05 -04:00
nsIDOMFormData.idl
nsIDOMParser.idl
nsIDOMSerializer.idl
nsIDocument.h Bug 1407864: Do not thrash the selector cache when parsing the same selector with different backend. r=heycam 2017-10-12 10:07:25 +02:00
nsIDocumentEncoder.idl Bug 1048191 - Remove capability to generate entities other than quot, amp, gt, lt and nbsp. r=emk. 2017-08-04 12:37:53 +03:00
nsIDocumentInlines.h Bug 1403712: Make some assertions not assert for conditions that may happen mid-unbind. r=bholley 2017-09-28 22:24:08 +02:00
nsIDocumentObserver.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsIDroppedLinkHandler.idl Bug 1370843 - Provide correct triggeringPrincipal for dropLinks. r=smaug,tooru 2017-08-22 10:07:03 +02:00
nsIFrameLoader.idl Bug 1391110: Part 1 - Convert FrameLoader bindings to WebIDL. r=smaug 2017-08-19 00:55:00 -07:00
nsIGlobalObject.cpp Bug 1372405 - Provide names for all runnables in the tree (r=froydnj) 2017-06-26 14:19:58 -07:00
nsIGlobalObject.h Bug 1405798 - Move IsInSyncOperation to nsIGlobalObject, r=baku 2017-10-05 16:45:26 +03:00
nsIImageLoadingContent.idl Bug 1359833 - Part 6. nsImageLoadingContent should not associate scripted and XPCOM observers with the same document. r=tnikkel 2017-07-19 14:15:11 -04:00
nsIMessageManager.idl Bug 1390010: Part 2 - Allow JS callers to retrieve remoteType of message managers. r=krizsa 2017-08-13 18:58:23 -07:00
nsIMutationObserver.h Bug 651120 - Remove index argument from content removed/appended/inserted notifications. r=peterv 2017-10-03 11:09:08 +01:00
nsINode.cpp Bug 1407864: Do not thrash the selector cache when parsing the same selector with different backend. r=heycam 2017-10-12 10:07:25 +02:00
nsINode.h Bug 1404897: followup: Fixup documentation of nsINode::WithSelectorList. r=me 2017-10-05 01:52:09 +02:00
nsINodeList.h
nsIObjectLoadingContent.idl Bug 1335368 part 7. Mostly stop using IsCallerChrome in nsObjectLoadingContent. r=bholley 2017-02-01 15:43:36 -05:00
nsIRemoteWindowContext.idl
nsIScriptChannel.idl
nsIScriptContext.h
nsIScriptGlobalObject.h
nsIScriptNameSpaceManager.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsIScriptObjectPrincipal.h
nsIScriptTimeoutHandler.h
nsISelection.idl Bug 1386411 - Part 2: Devirtualize and inline nsISelection::AsSelection(); r=bzbarsky 2017-08-03 17:05:17 -04:00
nsISelectionController.idl Bug 1393348 - part2: nsISelectionController::SELECTION_* should be sequential integer values r=smaug 2017-08-24 19:14:04 +09:00
nsISelectionDisplay.idl
nsISelectionListener.idl
nsISelectionPrivate.idl Bug 1216885 - Make nsISelectionPrivate not inherit from nsISelection. r=smaug 2017-09-11 15:19:22 -07:00
nsISizeOfEventTarget.h
nsISlowScriptDebug.idl
nsIStyleSheetLinkingElement.h
nsITimeoutHandler.h
nsIdentifierMapEntry.h Bug 1405348 - eliminate extraneous AddRef when moving nsIdentifierMapEntry; r=mystor 2017-10-03 15:56:26 -04:00
nsImageLoadingContent.cpp Bug 1406278: Part 2a - Rename LoadingPrincipal to TriggeringPrincipal in imgLoader. r=bz 2017-10-02 20:38:30 -07:00
nsImageLoadingContent.h Bug 1406278: Part 2b - Use subject principal as triggering principal in <img> "src" attribute. r=bz 2017-10-02 20:28:32 -07:00
nsInProcessTabChildGlobal.cpp Backed out changeset 9b5b03b2114d (bug 1401379) 2017-10-02 19:57:33 +02:00
nsInProcessTabChildGlobal.h Bug 1383328 - Use TabGroup as event target for browser-status-filter (r=smaug) 2017-07-28 13:11:59 -07:00
nsJSEnvironment.cpp Backed out changeset 759a43ebc6bf (bug 1405541) for asserting in devtools/client/performance/test/browser_perf-console-record-03.js on Windows 7. r=backout 2017-10-11 13:15:26 +02:00
nsJSEnvironment.h Bug 1377131 - Try to trigger collector slices at times which disturb page js less (at least with iframes loaded after the top level page has been loaded), r=mccr8,bz 2017-09-06 18:18:11 +01:00
nsJSTimeoutHandler.cpp Bug 1406819 - Remove various bits of dead code from dom/. r=baku 2017-10-11 10:09:13 +01:00
nsJSUtils.cpp Bug 1403868 (part 4) - Reduce tools/profiler/public/*.h to almost nothing in non-MOZ_GECKO_PROFILER builds. r=mstange. 2017-10-04 09:11:18 +11:00
nsJSUtils.h Bug 1403868 (part 4) - Reduce tools/profiler/public/*.h to almost nothing in non-MOZ_GECKO_PROFILER builds. r=mstange. 2017-10-04 09:11:18 +11:00
nsLineBreaker.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsLineBreaker.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsMappedAttributeElement.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsMappedAttributeElement.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsMappedAttributes.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsMappedAttributes.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsMimeTypeArray.cpp
nsMimeTypeArray.h
nsNameSpaceManager.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsNameSpaceManager.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsNoDataProtocolContentPolicy.cpp
nsNoDataProtocolContentPolicy.h
nsNodeInfoManager.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsNodeInfoManager.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsNodeUtils.cpp Bug 1407375. Make sure to call NodeInfoChanged whenever we change the nodeinfo on a node. r=peterv 2017-10-11 22:19:06 -04:00
nsNodeUtils.h Bug 651120 - Remove index argument from content removed/appended/inserted notifications. r=peterv 2017-10-03 11:09:08 +01:00
nsObjectLoadingContent.cpp Bug 1407056: Part 1 - Provide more consistent principal/origin URL to content policies. r=bz,ckerschb 2017-10-12 15:43:55 -07:00
nsObjectLoadingContent.h Bug 1398071 - Rewrite youtube embeds that use enablejsapi; r=cpeterson 2017-09-08 12:59:52 -07:00
nsOpenURIInFrameParams.cpp Bug 1357589: Part 1 - Use the correct default remote type for content-created tabs/windows. r=mconley r=mystor 2017-08-16 15:11:59 -07:00
nsOpenURIInFrameParams.h Bug 1357589: Part 1 - Use the correct default remote type for content-created tabs/windows. r=mconley r=mystor 2017-08-16 15:11:59 -07:00
nsPIDOMWindow.h Backed out changeset 4249adc2593a (bug 1401379) 2017-10-02 19:57:27 +02:00
nsPIDOMWindowInlines.h Bug 1396368 - Update mTopInnerWindow before unlinking it. r=bkelly 2017-09-07 10:15:48 +02:00
nsPIWindowRoot.h Bug 1369072 - part3: nsXBLPrototypeHandler::DispatchXBLCommand() should use controller of visible window r=smaug 2017-09-07 22:54:49 +09:00
nsPlainTextSerializer.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsPlainTextSerializer.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsPluginArray.cpp Bug 1384835 (part 3, attempt 2) - Remove the Preferences::Get*CString() variants that return nsAdoptingCString. r=froydnj. 2017-07-31 14:28:48 +10:00
nsPluginArray.h
nsPropertyTable.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsPropertyTable.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsQueryContentEventResult.cpp Bug 1387514: Upgrade BaseRect (derived classes) width and height direct member variable use to instead use Width()/SetWidth() and Height()/SetHeight() in dom/*. r=overholt 2017-08-14 08:30:10 -04:00
nsQueryContentEventResult.h
nsRange.cpp Bug 1402251 - Assert ranges our not added to multiple common ancestor lists. r=smaug 2017-10-10 12:10:00 +01:00
nsRange.h Bug 1405771 - Run the selection listeners after Range mutation observers have finished running to make sure no stale Ranges are observable from the listeners; r=smaug 2017-10-06 15:54:39 -04:00
nsSandboxFlags.h Bug 1279218 - Additional applet tag logic removal; r=bz 2017-07-28 16:44:39 -07:00
nsScreen.cpp Bug 1391005 - Eliminate NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION_INHERITED. r=peterv 2017-08-29 16:02:48 -07:00
nsScreen.h Bug 1387514: Upgrade BaseRect (derived classes) width and height direct member variable use to instead use Width()/SetWidth() and Height()/SetHeight() in dom/*. r=overholt 2017-08-14 08:30:10 -04:00
nsScriptNameSpaceManager.cpp Bug 1390428 (part 9) - Remove nsXPIDLCString. r=erahm. 2017-08-17 15:29:03 +10:00
nsScriptNameSpaceManager.h Bug 1389168 - Remove unnecessary IBM license text. r=gerv 2017-08-16 16:10:56 -05:00
nsStructuredCloneContainer.cpp Bug 1387903 - Use the fallible variant of CopyASCIItoUTF16 to avoid OOM large crash. r=baku 2017-08-29 15:14:41 +08:00
nsStructuredCloneContainer.h
nsStubAnimationObserver.cpp
nsStubAnimationObserver.h
nsStubDocumentObserver.cpp
nsStubDocumentObserver.h
nsStubMutationObserver.cpp
nsStubMutationObserver.h
nsStyleLinkElement.cpp Bug 1406278: Part 8b - Use subject principal as triggering principal in style <link> "href" attribute. r=bz 2017-10-05 19:40:48 -07:00
nsStyleLinkElement.h Bug 1406278: Part 8b - Use subject principal as triggering principal in style <link> "href" attribute. r=bz 2017-10-05 19:40:48 -07:00
nsStyledElement.cpp Bug 1406278: Part 1 - Pass subject principal to SetAttribute and friends. r=bz 2017-10-09 14:33:38 -07:00
nsStyledElement.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsSyncLoadService.cpp Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsSyncLoadService.h
nsTextFragment.cpp Bug 1393232, use nsStringBuffer for nsTextFragment::m2b r=ehsan 2017-08-31 14:48:07 +03:00
nsTextFragment.h Bug 1394719 - Optimize HasRTLChars usage and reduce malloc/free, r=ehsan 2017-08-31 14:54:46 +03:00
nsTextFragmentImpl.h
nsTextFragmentSSE2.cpp
nsTextNode.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsTextNode.h
nsTraversal.cpp
nsTraversal.h Bug 1378712 - Remove all trailing whitespaces r=Ehsan 2017-07-06 14:00:35 +02:00
nsTreeSanitizer.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsTreeSanitizer.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsViewportInfo.cpp
nsViewportInfo.h
nsWindowMemoryReporter.cpp Bug 1401456 - Streamline nsWindowMemoryReporter. r=erahm. 2017-09-25 09:59:50 +10:00
nsWindowMemoryReporter.h Bug 1376038 - Part 3: Combine ghost window reporter with window reporter. r=njn 2017-09-06 16:06:58 -07:00
nsWindowRoot.cpp Bug 1369072 - part3: nsXBLPrototypeHandler::DispatchXBLCommand() should use controller of visible window r=smaug 2017-09-07 22:54:49 +09:00
nsWindowRoot.h Bug 1369072 - part3: nsXBLPrototypeHandler::DispatchXBLCommand() should use controller of visible window r=smaug 2017-09-07 22:54:49 +09:00
nsWindowSizes.h Bug 1400078 - Measure the UA cache. r=njn. 2017-09-19 09:25:00 +10:00
nsWrapperCache.cpp Bug 1189822 part 5. Remove the now-unnecessary DOMProxyHandler::ClearExternalRefsForWrapperRelease function. r=peterv 2017-05-17 00:52:53 -04:00
nsWrapperCache.h Bug 1383332 - Track the restyle root and use it to do less work during the traversal. r=emilio 2017-08-22 21:19:24 -07:00
nsWrapperCacheInlines.h Bug 1352430 - Add barrier to wrapper cache to clear dying objects that have not yet been finalized r=bz r=sfink 2017-04-26 11:18:39 +01:00
nsXHTMLContentSerializer.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsXHTMLContentSerializer.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsXMLContentSerializer.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsXMLContentSerializer.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsXMLNameSpaceMap.cpp Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
nsXMLNameSpaceMap.h Bug 1400460 - Rename nsIAtom as nsAtom. r=hiro. 2017-10-03 09:05:19 +11:00
usecounters.py Bug 1175033 - Support custom use counters that can be incremented from C++; r=froydnj 2017-08-08 17:01:27 +03:00