Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(434)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/preload/single_download_preload.html

Issue 2732853003: [preload] Split up media into video, audio and track (Closed)
Patch Set: Added a test that media fails Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/preload/single_download_preload.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/preload/single_download_preload.html b/third_party/WebKit/LayoutTests/http/tests/preload/single_download_preload.html
deleted file mode 100644
index 2f99a13ccd8de801d86fae3099b9f9a808008442..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/preload/single_download_preload.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script>
- var t = async_test('Makes sure that preloaded resources are not downloaded again when used');
-</script>
-<link rel=preload href="../resources/dummy.js" as=script>
-<link rel=preload href="../resources/dummy.css" as=style>
-<link rel=preload href="../resources/square.png" as=image>
-<link rel=preload href="../resources/square.png?background" as=image>
-<link rel=preload href="../resources/Ahem.ttf" as=font crossorigin>
-<link rel=preload href="../resources/test.mp4" as=media>
-<link rel=preload href="../resources/test.oga" as=media>
-<link rel=preload href="../security/resources/captions.vtt" as=track>
-<link rel=preload href="../resources/dummy.xml" as=foobarxmlthing>
-<link rel=preload href="../resources/dummy.xml">
-<script src="../resources/slow-script.pl?delay=200"></script>
-<style>
- #background {
- width: 200px;
- height: 200px;
- background-image: url(../resources/square.png?background);
- }
- @font-face {
- font-family:ahem;
- src: url(../resources/Ahem.ttf);
- }
- span { font-family: ahem, Arial; }
-</style>
-<link rel="stylesheet" href="../resources/dummy.css">
-<script src="../resources/dummy.js"></script>
-<div id="background"></div>
-<img src="../resources/square.png">
-<script src="../resources/slow-script.pl?delay=200"></script>
-<video src="../resources/test.mp4">
- <track kind=subtitles src="../security/resources/captions.vtt" srclang=en>
-</video>
-<audio src="../resources/test.oga"></audio>
-<script>
- var xhr = new XMLHttpRequest();
- xhr.open("GET", "../resources/dummy.xml");
- xhr.send();
-
- window.addEventListener("load", t.step_func(function() {
- // Audio and video show 2 extra requests as the main request is followed by a range request
- assert_equals(performance.getEntriesByType("resource").length, 14);
- t.done();
- }));
-</script>
-<span>PASS - this text is here just so that the browser will download the font.</span

Powered by Google App Engine
This is Rietveld 408576698