Backed out changeset 8378f26b0730 (bug 1061469)

This commit is contained in:
Carsten "Tomcat" Book 2014-10-02 13:59:55 +02:00
Родитель d306472784
Коммит 4621fb4867
5 изменённых файлов: 2 добавлений и 41 удалений

Просмотреть файл

@ -2243,8 +2243,7 @@ public:
void SetDir(const nsAString& aDirection);
nsIDOMWindow* GetDefaultView() const
{
// For Imports the defaultView is always null.
return mMasterDocument ? nullptr : GetWindow();
return GetWindow();
}
Element* GetActiveElement();
bool HasFocus(mozilla::ErrorResult& rv) const;
@ -2739,8 +2738,6 @@ protected:
uint32_t mBlockDOMContentLoaded;
bool mDidFireDOMContentLoaded:1;
nsCOMPtr<nsIDocument> mMasterDocument;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDocument, NS_IDOCUMENT_IID)

Просмотреть файл

@ -1773,6 +1773,7 @@ private:
CSPErrorQueue mCSPWebConsoleErrorQueue;
nsCOMPtr<nsIDocument> mMasterDocument;
nsRefPtr<mozilla::dom::ImportManager> mImportManager;
nsTArray<nsCOMPtr<nsINode> > mSubImportLinks;

Просмотреть файл

@ -1,4 +0,0 @@
<!DOCTYPE html>
<head>
</head>
<body>Simple import</body>

Просмотреть файл

@ -36,7 +36,6 @@ support-files =
file_cycle_5_C.html
file_cycle_5_D.html
file_encoding.html
file_simple_import.html
[test_cycle_1.html]
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
@ -49,4 +48,3 @@ skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
[test_cycle_5.html]
skip-if = toolkit == 'gonk' # nested imports fail on b2g emulator
[test_encoding.html]
[test_defaultView.html]

Просмотреть файл

@ -1,31 +0,0 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1061469
-->
<head>
<title>Test for Bug 1061469</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1061469">Mozilla Bug 1061469</a>
<script type="text/javascript">
SimpleTest.waitForExplicitFinish();
var success = false;
function loaded() {
success = true;
}
function failed() {
ok(false, "Import loading failed");
}
</script>
<link rel="import" href="file_simple_import.html" id="import" onload="loaded()" onerror="failed()"></link>
<script type="text/javascript">
document.defaultView;
is(document.getElementById("import").import.defaultView, null, "defaultView is always null for imports");
SimpleTest.finish();
</script>
</body>
</html>