| Index: LayoutTests/fast/loader/resource-request-callbacks.html
|
| diff --git a/LayoutTests/platform/chromium/fast/loader/resource-request-callbacks.html b/LayoutTests/fast/loader/resource-request-callbacks.html
|
| similarity index 59%
|
| rename from LayoutTests/platform/chromium/fast/loader/resource-request-callbacks.html
|
| rename to LayoutTests/fast/loader/resource-request-callbacks.html
|
| index 20efdeefbbdbfe667ed7e398423d4bee37657a68..de36f3e3ecf6dd7d98026369c6b5225da544c3f9 100644
|
| --- a/LayoutTests/platform/chromium/fast/loader/resource-request-callbacks.html
|
| +++ b/LayoutTests/fast/loader/resource-request-callbacks.html
|
| @@ -1,7 +1,7 @@
|
| <!DOCTYPE html>
|
| <html>
|
| <head>
|
| -<script src="../../../../fast/js/resources/js-test-pre.js"></script>
|
| +<script src="../js/resources/js-test-pre.js"></script>
|
| <script>
|
| window.jsTestIsAsync = true;
|
| if (window.testRunner) {
|
| @@ -12,20 +12,20 @@ if (window.testRunner) {
|
| }
|
|
|
| function requestMoreResources() {
|
| - document.getElementById("img-changing").src = "../../../../fast/images/resources/mu.png";
|
| + document.getElementById("img-changing").src = "../images/resources/mu.png";
|
|
|
| var createdImage = document.createElement("img");
|
| createdImage.id = "img-created";
|
| - createdImage.src = "../../../../fast/images/resources/oval.png";
|
| + createdImage.src = "../images/resources/oval.png";
|
| document.getElementById("images").appendChild(createdImage);
|
|
|
| - document.getElementById("with-background").style.backgroundImage = "url(../../../../fast/images/resources/palatted-color-png-gamma-one-color-profile.png)";
|
| + document.getElementById("with-background").style.backgroundImage = "url(../images/resources/palatted-color-png-gamma-one-color-profile.png)";
|
|
|
| - document.getElementById("more-images").innerHTML = "<img id='img-created-2' src='../../../../fast/images/resources/png_per_row_alpha.png'>";
|
| + document.getElementById("more-images").innerHTML = "<img id='img-created-2' src='../images/resources/png_per_row_alpha.png'>";
|
|
|
| var createdScript = document.createElement("script");
|
| createdScript.id = "script-created";
|
| - createdScript.src = "../../../../fast/loader/resources/empty-script.js";
|
| + createdScript.src = "../loader/resources/empty-script.js";
|
| document.head.appendChild(createdScript);
|
|
|
| setTimeout(finishTest, 0);
|
| @@ -39,16 +39,16 @@ function finishTest() {
|
| <style>
|
| #with-background
|
| {
|
| - background-image:url("../../../../fast/images/resources/lenna.png");
|
| + background-image:url("../images/resources/lenna.png");
|
| }
|
| body
|
| {
|
| - cursor:url("../../../../fast/events/resources/greenbox-hotspot35-4.cur"), pointer;
|
| + cursor:url("../events/resources/greenbox-hotspot35-4.cur"), pointer;
|
| }
|
| @font-face
|
| {
|
| font-family: custom_font;
|
| - src: url("../../../../fast/text/resources/gw432047.ttf");
|
| + src: url("../text/resources/gw432047.ttf");
|
| }
|
| p
|
| {
|
| @@ -64,14 +64,14 @@ p
|
| </p>
|
| </div>
|
| <div id="images">
|
| -<img id="img-normal" src="../../../../fast/images/resources/dice.png" />
|
| -<img id="img-changing" src="../../../../fast/images/resources/dice.png" />
|
| +<img id="img-normal" src="../images/resources/dice.png" />
|
| +<img id="img-changing" src="../images/resources/dice.png" />
|
| <img id="img-fail" />
|
| <img id="img-not-there" src="not-existing.png" />
|
| </div>
|
| <div id="more-images">
|
| </div>
|
| <div id="console"></div>
|
| -<script src="../../../../fast/js/resources/js-test-post.js"></script>
|
| +<script src="../js/resources/js-test-post.js"></script>
|
| </body>
|
| </html>
|
|
|