From d6ea4b60a4c251b5aa655fa9a503c3f5b98a5881 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Fri, 5 Feb 2016 14:39:24 -0500 Subject: [PATCH] Make location_reload.html not trigger resource exhaustion. --- .../history/the-location-interface/location_reload.html.ini | 3 --- .../history/the-location-interface/location_reload.html | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 tests/wpt/metadata/html/browsers/history/the-location-interface/location_reload.html.ini diff --git a/tests/wpt/metadata/html/browsers/history/the-location-interface/location_reload.html.ini b/tests/wpt/metadata/html/browsers/history/the-location-interface/location_reload.html.ini deleted file mode 100644 index 59434c1ae16..00000000000 --- a/tests/wpt/metadata/html/browsers/history/the-location-interface/location_reload.html.ini +++ /dev/null @@ -1,3 +0,0 @@ -[location_reload.html] - type: testharness - expected: CRASH diff --git a/tests/wpt/web-platform-tests/html/browsers/history/the-location-interface/location_reload.html b/tests/wpt/web-platform-tests/html/browsers/history/the-location-interface/location_reload.html index 513b60afd00..2972abf41a0 100644 --- a/tests/wpt/web-platform-tests/html/browsers/history/the-location-interface/location_reload.html +++ b/tests/wpt/web-platform-tests/html/browsers/history/the-location-interface/location_reload.html @@ -21,6 +21,7 @@ assert_equals(url, innerURL, "iframe url (" + pingCount + ")"); pingCount++; if (pingCount == 5) { + iframe.src = 'about:blank'; t.done(); } });