summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/performance-timeline/not-restored-reasons
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/performance-timeline/not-restored-reasons')
-rw-r--r--testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.js3
-rw-r--r--testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-iframes-without-attributes.tentative.window.js103
-rw-r--r--testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-navigation-failure.tentative.window.js2
-rw-r--r--testing/web-platform/tests/performance-timeline/not-restored-reasons/test-helper.js6
4 files changed, 108 insertions, 6 deletions
diff --git a/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.js b/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.js
index 42bda12919..2a313fe7b1 100644
--- a/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.js
+++ b/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.js
@@ -53,8 +53,7 @@ promise_test(async t => {
'url': null,
'src': rc1_child_url,
'id': 'test-id',
- // Iframes that are generated by addIframe have an empty name.
- 'name': '',
+ 'name': null,
'reasons': null,
'children': null
}]);
diff --git a/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-iframes-without-attributes.tentative.window.js b/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-iframes-without-attributes.tentative.window.js
new file mode 100644
index 0000000000..cda0ac4394
--- /dev/null
+++ b/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-iframes-without-attributes.tentative.window.js
@@ -0,0 +1,103 @@
+// META: title=RemoteContextHelper navigation using BFCache
+// META: script=./test-helper.js
+// META: script=/common/dispatcher/dispatcher.js
+// META: script=/common/get-host-info.sub.js
+// META: script=/common/utils.js
+// META: script=/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js
+// META: script=/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js
+// META: script=/websockets/constants.sub.js
+// META: timeout=long
+
+'use strict';
+
+// Ensure that empty attributes are reported as empty strings and missing
+// attributes are reported as null.
+promise_test(async t => {
+ const rcHelper = new RemoteContextHelper();
+ // Open a window with noopener so that BFCache will work.
+ const rc1 = await rcHelper.addWindow(
+ /*config=*/ null, /*options=*/ {features: 'noopener'});
+ const rc1_url = await rc1.executeScript(() => {
+ return location.href;
+ });
+ // Add a cross-origin iframe.
+ const rc1_child = await rc1.addIframe(
+ /*extraConfig=*/ {
+ origin: 'HTTP_REMOTE_ORIGIN',
+ scripts: [],
+ headers: [],
+ },
+ /*attributes=*/ {id: '', name: ''},
+ );
+ const rc2_child = await rc1.addIframe(
+ /*extraConfig=*/ {
+ origin: 'HTTP_REMOTE_ORIGIN',
+ scripts: [],
+ headers: [],
+ },
+ /*attributes=*/ {},
+ );
+ const rc3_child = await rc1.addIframe(
+ /*extraConfig=*/ {},
+ /*attributes=*/ {},
+ );
+ const rc4_child = await rc1.addIframe(
+ /*extraConfig=*/ {},
+ /*attributes=*/ {id: '', name: ''},
+ );
+ // Use WebSocket to block BFCache.
+ await useWebSocket(rc1);
+ const rc1_child_url = await rc1_child.executeScript(() => {
+ return location.href;
+ });
+ const rc2_child_url = await rc2_child.executeScript(() => {
+ return location.href;
+ });
+ const rc3_child_url = await rc3_child.executeScript(() => {
+ return location.href;
+ });
+ const rc4_child_url = await rc4_child.executeScript(() => {
+ return location.href;
+ });
+ // Check the BFCache result and the reported reasons.
+ await assertBFCacheEligibility(rc1, /*shouldRestoreFromBFCache=*/ false);
+ await assertNotRestoredReasonsEquals(
+ rc1,
+ /*url=*/ rc1_url,
+ /*src=*/ null,
+ /*id=*/ null,
+ /*name=*/ null,
+ /*reasons=*/[{'reason': 'websocket'}],
+ /*children=*/[{
+ 'url': null,
+ 'src': rc1_child_url,
+ // Id and name should be empty.
+ 'id': '',
+ 'name': '',
+ 'reasons': null,
+ 'children': null
+ }, {
+ 'url': null,
+ 'src': rc2_child_url,
+ // Id and name should be null.
+ 'id': null,
+ 'name': null,
+ 'reasons': null,
+ 'children': null
+ },{
+ 'url': rc3_child_url,
+ 'src': rc3_child_url,
+ // Id and name should be null.
+ 'id': null,
+ 'name': null,
+ 'reasons': [],
+ 'children': []
+ }, {
+ 'url': rc4_child_url,
+ 'src': rc4_child_url,
+ 'id': '',
+ 'name': '',
+ 'reasons': [],
+ 'children': []
+ }]);
+}); \ No newline at end of file
diff --git a/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-navigation-failure.tentative.window.js b/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-navigation-failure.tentative.window.js
index 5812ebb2b3..faa7649bc3 100644
--- a/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-navigation-failure.tentative.window.js
+++ b/testing/web-platform/tests/performance-timeline/not-restored-reasons/performance-navigation-timing-navigation-failure.tentative.window.js
@@ -22,5 +22,5 @@ promise_test(async t => {
// Check the BFCache result and the reported reasons.
await assertBFCacheEligibility(rc1, /*shouldRestoreFromBFCache=*/ false);
- await assertNotRestoredFromBFCache(rc1, ['navigation-failure']);
+ await assertNotRestoredFromBFCache(rc1, ['response-status-not-ok']);
}); \ No newline at end of file
diff --git a/testing/web-platform/tests/performance-timeline/not-restored-reasons/test-helper.js b/testing/web-platform/tests/performance-timeline/not-restored-reasons/test-helper.js
index 826b0ccb2b..ba9a4c0342 100644
--- a/testing/web-platform/tests/performance-timeline/not-restored-reasons/test-helper.js
+++ b/testing/web-platform/tests/performance-timeline/not-restored-reasons/test-helper.js
@@ -27,9 +27,9 @@ function assertReasonsStructEquals(
} else {
for (let j = 0; j < children.length; j++) {
assertReasonsStructEquals(
- result.children[0], children[0].url,
- children[0].src, children[0].id, children[0].name, children[0].reasons,
- children[0].children);
+ result.children[j], children[j].url,
+ children[j].src, children[j].id, children[j].name, children[j].reasons,
+ children[j].children);
}
}
}