Bug 718711 - Don't return selections for documents that don't have them; r=smaug draft
authorAryeh Gregor <ayg@aryeh.name>
Sun, 13 Aug 2017 14:17:28 +0300
changeset 645575 067fc6b148d7ce39d13e86780c32c55861c93e8a
parent 645574 58a39faf52ab0f7d79a11fee44626a0c00f0c37e
child 725924 4bf6a9a4131e6598733062654e1c1279aa96b76a
push id73783
push userbmo:ayg@aryeh.name
push dateSun, 13 Aug 2017 11:23:08 +0000
reviewerssmaug
bugs718711
milestone57.0a1
Bug 718711 - Don't return selections for documents that don't have them; r=smaug Per spec, getSelection() should return null when the document is not associated with a browsing context. MozReview-Commit-ID: B6QbLWVmfcF
dom/base/nsDocument.cpp
testing/web-platform/meta/selection/getSelection.html.ini
--- a/dom/base/nsDocument.cpp
+++ b/dom/base/nsDocument.cpp
@@ -13605,17 +13605,17 @@ nsIDocument::ClearStaleServoDataFromDocu
     ServoRestyleManager::ClearServoDataFromSubtree(root);
   }
   mMightHaveStaleServoData = false;
 }
 
 Selection*
 nsIDocument::GetSelection(ErrorResult& aRv)
 {
-  nsCOMPtr<nsPIDOMWindowInner> window = do_QueryInterface(GetScopeObject());
+  nsCOMPtr<nsPIDOMWindowInner> window = GetInnerWindow();
   if (!window) {
     return nullptr;
   }
 
   NS_ASSERTION(window->IsInnerWindow(), "Should have inner window here!");
   if (!window->IsCurrentInnerWindow()) {
     return nullptr;
   }
--- a/testing/web-platform/meta/selection/getSelection.html.ini
+++ b/testing/web-platform/meta/selection/getSelection.html.ini
@@ -1,17 +1,8 @@
 [getSelection.html]
   type: testharness
-  [getSelection() on HTML document with null defaultView must be null]
-    expected: FAIL
-
-  [getSelection() on XML document with null defaultView must be null]
-    expected: FAIL
-
-  [getSelection() on HTML document with null defaultView must be null inside an iframe onload]
-    expected: FAIL
-
   [window.getSelection() instanceof Selection in an iframe immediately after appendChild]
     expected: FAIL
 
   [document.getSelection() instanceof Selection in an iframe immediately after appendChild]
     expected: FAIL