зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1359312 - don't use data: URI for calling storage.setItem. r=janv
To call localStorage.setItem or sessionStorage.setItem, using NullPrincipal will be denied. So we replace data URI with srcdoc.
This commit is contained in:
Родитель
685ea79422
Коммит
7755fa4c51
|
@ -34,7 +34,7 @@ function runTests() {
|
|||
storage = t.storage;
|
||||
|
||||
var ifr = document.getElementById("iframe");
|
||||
ifr.src = "data:text/html,<script>" + t.key + ".setItem(\"a\",\"b\");</" + "script>";
|
||||
ifr.srcdoc = "<script>"+ t.key + ".setItem(\"a\",\"b\");</"+"script>";
|
||||
}
|
||||
|
||||
SimpleTest.waitForExplicitFinish();
|
||||
|
|
Загрузка…
Ссылка в новой задаче