mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
Bug 1425769 - Base class for ShadowRoot and Document to manage style state
Tag #1375
This commit is contained in:
parent
9fdf69e567
commit
b8260c664a
16 changed files with 250 additions and 296 deletions
|
|
@ -1334,7 +1334,7 @@ Loader::InsertSheetInDoc(StyleSheet* aSheet,
|
|||
|
||||
// XXX Need to cancel pending sheet loads for this element, if any
|
||||
|
||||
int32_t sheetCount = aDocument->GetNumberOfStyleSheets();
|
||||
int32_t sheetCount = aDocument->SheetCount();
|
||||
|
||||
/*
|
||||
* Start the walk at the _end_ of the list, since in the typical
|
||||
|
|
@ -1346,7 +1346,7 @@ Loader::InsertSheetInDoc(StyleSheet* aSheet,
|
|||
*/
|
||||
int32_t insertionPoint;
|
||||
for (insertionPoint = sheetCount - 1; insertionPoint >= 0; --insertionPoint) {
|
||||
StyleSheet* curSheet = aDocument->GetStyleSheetAt(insertionPoint);
|
||||
StyleSheet* curSheet = aDocument->SheetAt(insertionPoint);
|
||||
NS_ASSERTION(curSheet, "There must be a sheet here!");
|
||||
nsCOMPtr<nsINode> sheetOwner = curSheet->GetOwnerNode();
|
||||
if (sheetOwner && !aLinkingContent) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue