1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/thumbnails/test/browser_thumbnails_bg_no_alert.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,13 @@ 1.4 +/* Any copyright is dedicated to the Public Domain. 1.5 + * http://creativecommons.org/publicdomain/zero/1.0/ */ 1.6 + 1.7 +function runTests() { 1.8 + let url = "data:text/html,<script>try { alert('yo!'); } catch (e) {}</script>"; 1.9 + ok(!thumbnailExists(url), "Thumbnail file should not already exist."); 1.10 + 1.11 + let capturedURL = yield bgCapture(url); 1.12 + is(capturedURL, url, "Captured URL should be URL passed to capture."); 1.13 + ok(thumbnailExists(url), 1.14 + "Thumbnail file should exist even though it alerted."); 1.15 + removeThumbnail(url); 1.16 +}