Skip to content

Commit 1e496b3

Browse files
committed
remove request_internet_access experiments
1 parent 0e6a2f9 commit 1e496b3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

js/links.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
window.addEventListener("load", () => {
22
let ul = h("ul");
33
ul.append(
4-
h("li", {}, h("a", {href: "https://delta.chat"}, "Normal link: https://delta.chat (should work if sent in Saved Messages chat due to request_internet_access property set in manifest)")),
4+
h("li", {}, h("a", {href: "https://delta.chat"}, "Normal link: https://delta.chat (should be blocked)")),
55
h("li", {}, h("a", {href: "mailto:[email protected]?body=test+message"}, "Mailto link")),
66
h("li", {}, h("a", {href: "OPENPGP4FPR:571E6FDC22C1605512A1B0C8F7AC9331B82AFB5B#a=delta%40example.org&n=TestContact&i=pHMb3fRw-JV&s=VcWU-pQSEeB"}, "QR verification link")),
77
h("li", {}, h("a", {href: "cabal://cabal.chat"}, "Custom scheme link")),
@@ -27,7 +27,7 @@ window.addEventListener("load", () => {
2727
};
2828
ul.append(h("li", {}, btn3));
2929

30-
const ifrmExplain = h("p", {}, "If this app was sent in the Saved Messages chat, due to request_internet_access set in manifest, the next iframe should load https://delta.chat from Internet:");
30+
const ifrmExplain = h("p", {}, "iframe: should be blocked and not load https://delta.chat from Internet:");
3131
const ifrm = h("iframe", {src: "https://delta.chat"});
3232
ifrm.style.width = "100%";
3333
ifrm.style.height = "auto";

manifest.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
name = "Test Webxdc"
2-
request_internet_access = true
32
source_code_url = "https://github.com/webxdc/webxdc-test"

0 commit comments

Comments
 (0)