JS Test Harness: Insert the stylesheet dynamically
https://bugs.webkit.org/show_bug.cgi?id=70432

Reviewed by Ojan Vafai.

This injects the js-test-style.css file dynamically so that the test files can be simpler.
This patch also removes the markup from the existing files in LayoutTests/fast/

* fast/*.html: Remove <link rel=:"stylesheet" href="...js-test-style.css">
* fast/js/resources/js-test-pre.js: Inject the stylesheet dynamically.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@97881 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 07785b1..32c70cb 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,16 @@
+2011-10-19  Erik Arvidsson  <arv@chromium.org>
+
+        JS Test Harness: Insert the stylesheet dynamically
+        https://bugs.webkit.org/show_bug.cgi?id=70432
+
+        Reviewed by Ojan Vafai.
+
+        This injects the js-test-style.css file dynamically so that the test files can be simpler.
+        This patch also removes the markup from the existing files in LayoutTests/fast/
+
+        * fast/*.html: Remove <link rel=:"stylesheet" href="...js-test-style.css">
+        * fast/js/resources/js-test-pre.js: Inject the stylesheet dynamically.
+
 2011-10-19  Daniel Cheng  <dcheng@chromium.org>
 
         Add missing expectations updates for r97878.
diff --git a/LayoutTests/fast/animation/request-animation-frame-cancel.html b/LayoutTests/fast/animation/request-animation-frame-cancel.html
index 5ea1f33..4fc7533 100644
--- a/LayoutTests/fast/animation/request-animation-frame-cancel.html
+++ b/LayoutTests/fast/animation/request-animation-frame-cancel.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame-cancel2.html b/LayoutTests/fast/animation/request-animation-frame-cancel2.html
index 9a18d64..64a94d2 100644
--- a/LayoutTests/fast/animation/request-animation-frame-cancel2.html
+++ b/LayoutTests/fast/animation/request-animation-frame-cancel2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame-display.html b/LayoutTests/fast/animation/request-animation-frame-display.html
index af74351..176cd13 100644
--- a/LayoutTests/fast/animation/request-animation-frame-display.html
+++ b/LayoutTests/fast/animation/request-animation-frame-display.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame-during-modal.html b/LayoutTests/fast/animation/request-animation-frame-during-modal.html
index f32b09a..b48115f 100644
--- a/LayoutTests/fast/animation/request-animation-frame-during-modal.html
+++ b/LayoutTests/fast/animation/request-animation-frame-during-modal.html
@@ -1,6 +1,5 @@
 <!DOCTYPE html>
 <html>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <body>
 
diff --git a/LayoutTests/fast/animation/request-animation-frame-iframe.html b/LayoutTests/fast/animation/request-animation-frame-iframe.html
index ee2f49d..66ef155 100644
--- a/LayoutTests/fast/animation/request-animation-frame-iframe.html
+++ b/LayoutTests/fast/animation/request-animation-frame-iframe.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame-missing-arguments.html b/LayoutTests/fast/animation/request-animation-frame-missing-arguments.html
index 571e229..5f34894 100644
--- a/LayoutTests/fast/animation/request-animation-frame-missing-arguments.html
+++ b/LayoutTests/fast/animation/request-animation-frame-missing-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame-timestamps-advance.html b/LayoutTests/fast/animation/request-animation-frame-timestamps-advance.html
index 182f0e9..3201626 100644
--- a/LayoutTests/fast/animation/request-animation-frame-timestamps-advance.html
+++ b/LayoutTests/fast/animation/request-animation-frame-timestamps-advance.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame-timestamps.html b/LayoutTests/fast/animation/request-animation-frame-timestamps.html
index 5201d30..9fff6e2 100644
--- a/LayoutTests/fast/animation/request-animation-frame-timestamps.html
+++ b/LayoutTests/fast/animation/request-animation-frame-timestamps.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame-within-callback.html b/LayoutTests/fast/animation/request-animation-frame-within-callback.html
index ba5c1cd..8158142 100644
--- a/LayoutTests/fast/animation/request-animation-frame-within-callback.html
+++ b/LayoutTests/fast/animation/request-animation-frame-within-callback.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/request-animation-frame.html b/LayoutTests/fast/animation/request-animation-frame.html
index 30cf08a..8986881 100644
--- a/LayoutTests/fast/animation/request-animation-frame.html
+++ b/LayoutTests/fast/animation/request-animation-frame.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/script-tests/TEMPLATE.html b/LayoutTests/fast/animation/script-tests/TEMPLATE.html
index fe209e6..b512855 100644
--- a/LayoutTests/fast/animation/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/animation/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/animation/script-tests/request-animation-frame-subframe.html b/LayoutTests/fast/animation/script-tests/request-animation-frame-subframe.html
index 0a76aab..96db828 100644
--- a/LayoutTests/fast/animation/script-tests/request-animation-frame-subframe.html
+++ b/LayoutTests/fast/animation/script-tests/request-animation-frame-subframe.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/multiple-backgrounds-computed-style.html b/LayoutTests/fast/backgrounds/multiple-backgrounds-computed-style.html
index 45e2b61..968badb 100644
--- a/LayoutTests/fast/backgrounds/multiple-backgrounds-computed-style.html
+++ b/LayoutTests/fast/backgrounds/multiple-backgrounds-computed-style.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/repeat/background-repeat-shorthand.html b/LayoutTests/fast/backgrounds/repeat/background-repeat-shorthand.html
index 748f811..eb22e56 100644
--- a/LayoutTests/fast/backgrounds/repeat/background-repeat-shorthand.html
+++ b/LayoutTests/fast/backgrounds/repeat/background-repeat-shorthand.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <link rel="stylesheet" href="resources/background-repeat-shorthand.css">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/repeat/margin-shorthand.html b/LayoutTests/fast/backgrounds/repeat/margin-shorthand.html
index fae64c2..3cd575b 100644
--- a/LayoutTests/fast/backgrounds/repeat/margin-shorthand.html
+++ b/LayoutTests/fast/backgrounds/repeat/margin-shorthand.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <link rel="stylesheet" href="resources/margin-shorthand.css">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/repeat/parsing-background-repeat.html b/LayoutTests/fast/backgrounds/repeat/parsing-background-repeat.html
index 5fe76f3..a5cf391 100644
--- a/LayoutTests/fast/backgrounds/repeat/parsing-background-repeat.html
+++ b/LayoutTests/fast/backgrounds/repeat/parsing-background-repeat.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/repeat/script-tests/TEMPLATE.html b/LayoutTests/fast/backgrounds/repeat/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/backgrounds/repeat/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/backgrounds/repeat/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/script-tests/TEMPLATE.html b/LayoutTests/fast/backgrounds/script-tests/TEMPLATE.html
index e4f992b..fd31b93 100644
--- a/LayoutTests/fast/backgrounds/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/backgrounds/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/size/parsing-background-size-values.html b/LayoutTests/fast/backgrounds/size/parsing-background-size-values.html
index b6f448a..57c1ba7 100644
--- a/LayoutTests/fast/backgrounds/size/parsing-background-size-values.html
+++ b/LayoutTests/fast/backgrounds/size/parsing-background-size-values.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <style type="text/css"></style>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/backgrounds/size/parsing-inherit.html b/LayoutTests/fast/backgrounds/size/parsing-inherit.html
index 19ff6b3..a19de5c 100644
--- a/LayoutTests/fast/backgrounds/size/parsing-inherit.html
+++ b/LayoutTests/fast/backgrounds/size/parsing-inherit.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <style type="text/css"></style>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/block/positioning/hittest-on-relative-positioned-children.html b/LayoutTests/fast/block/positioning/hittest-on-relative-positioned-children.html
index 23d1a39..a18ebc6 100644
--- a/LayoutTests/fast/block/positioning/hittest-on-relative-positioned-children.html
+++ b/LayoutTests/fast/block/positioning/hittest-on-relative-positioned-children.html
@@ -2,7 +2,6 @@
 <html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/borders/border-width-percent.html b/LayoutTests/fast/borders/border-width-percent.html
index fe26759..8e842c2 100644
--- a/LayoutTests/fast/borders/border-width-percent.html
+++ b/LayoutTests/fast/borders/border-width-percent.html
@@ -1,7 +1,6 @@
 <!doctype html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/2d.composite.globalAlpha.fillPath.html b/LayoutTests/fast/canvas/2d.composite.globalAlpha.fillPath.html
index bc6fc06..e5dfd43 100644
--- a/LayoutTests/fast/canvas/2d.composite.globalAlpha.fillPath.html
+++ b/LayoutTests/fast/canvas/2d.composite.globalAlpha.fillPath.html
@@ -4,7 +4,6 @@
   -->
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-2d-imageData-create-nonfinite.html b/LayoutTests/fast/canvas/canvas-2d-imageData-create-nonfinite.html
index 8c5095c..f2c8f9a 100644
--- a/LayoutTests/fast/canvas/canvas-2d-imageData-create-nonfinite.html
+++ b/LayoutTests/fast/canvas/canvas-2d-imageData-create-nonfinite.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-ImageData-behaviour.html b/LayoutTests/fast/canvas/canvas-ImageData-behaviour.html
index 8f6edb6..92de050 100644
--- a/LayoutTests/fast/canvas/canvas-ImageData-behaviour.html
+++ b/LayoutTests/fast/canvas/canvas-ImageData-behaviour.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-alphaImageData-behavior.html b/LayoutTests/fast/canvas/canvas-alphaImageData-behavior.html
index c914476..ae29848 100644
--- a/LayoutTests/fast/canvas/canvas-alphaImageData-behavior.html
+++ b/LayoutTests/fast/canvas/canvas-alphaImageData-behavior.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-arc-360-winding.html b/LayoutTests/fast/canvas/canvas-arc-360-winding.html
index d49bb0f..6d48c8c 100644
--- a/LayoutTests/fast/canvas/canvas-arc-360-winding.html
+++ b/LayoutTests/fast/canvas/canvas-arc-360-winding.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-arc-connecting-line.html b/LayoutTests/fast/canvas/canvas-arc-connecting-line.html
index f92372d..106d944 100644
--- a/LayoutTests/fast/canvas/canvas-arc-connecting-line.html
+++ b/LayoutTests/fast/canvas/canvas-arc-connecting-line.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-clearRect.html b/LayoutTests/fast/canvas/canvas-clearRect.html
index 41d9062..3e8a255 100644
--- a/LayoutTests/fast/canvas/canvas-clearRect.html
+++ b/LayoutTests/fast/canvas/canvas-clearRect.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-closePath-single-point.html b/LayoutTests/fast/canvas/canvas-closePath-single-point.html
index 3a9f337..eb9ee61 100644
--- a/LayoutTests/fast/canvas/canvas-closePath-single-point.html
+++ b/LayoutTests/fast/canvas/canvas-closePath-single-point.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-color-clamping.html b/LayoutTests/fast/canvas/canvas-color-clamping.html
index 14c2248..7ed56fe 100644
--- a/LayoutTests/fast/canvas/canvas-color-clamping.html
+++ b/LayoutTests/fast/canvas/canvas-color-clamping.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-color-serialization.html b/LayoutTests/fast/canvas/canvas-color-serialization.html
index 4e96430..de1da5e 100644
--- a/LayoutTests/fast/canvas/canvas-color-serialization.html
+++ b/LayoutTests/fast/canvas/canvas-color-serialization.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-copyPixels.html b/LayoutTests/fast/canvas/canvas-copyPixels.html
index 67d9d6a..6719172 100644
--- a/LayoutTests/fast/canvas/canvas-copyPixels.html
+++ b/LayoutTests/fast/canvas/canvas-copyPixels.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-createImageData.html b/LayoutTests/fast/canvas/canvas-createImageData.html
index 9e9e1f3..614dc74 100644
--- a/LayoutTests/fast/canvas/canvas-createImageData.html
+++ b/LayoutTests/fast/canvas/canvas-createImageData.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-createPattern-fillRect-shadow.html b/LayoutTests/fast/canvas/canvas-createPattern-fillRect-shadow.html
index f14b1af..09bfea0 100644
--- a/LayoutTests/fast/canvas/canvas-createPattern-fillRect-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-createPattern-fillRect-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-currentColor.html b/LayoutTests/fast/canvas/canvas-currentColor.html
index 45f2e61..cae2e98 100644
--- a/LayoutTests/fast/canvas/canvas-currentColor.html
+++ b/LayoutTests/fast/canvas/canvas-currentColor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-draw-canvas-on-canvas-shadow.html b/LayoutTests/fast/canvas/canvas-draw-canvas-on-canvas-shadow.html
index f5cd989..1a15161 100644
--- a/LayoutTests/fast/canvas/canvas-draw-canvas-on-canvas-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-draw-canvas-on-canvas-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-drawImage-incomplete.html b/LayoutTests/fast/canvas/canvas-drawImage-incomplete.html
index 3a1653a..796a2a1 100644
--- a/LayoutTests/fast/canvas/canvas-drawImage-incomplete.html
+++ b/LayoutTests/fast/canvas/canvas-drawImage-incomplete.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-drawImage-shadow.html b/LayoutTests/fast/canvas/canvas-drawImage-shadow.html
index cc4c990..816c4b9 100644
--- a/LayoutTests/fast/canvas/canvas-drawImage-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-drawImage-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-fillPath-alpha-shadow.html b/LayoutTests/fast/canvas/canvas-fillPath-alpha-shadow.html
index aa50cb4..c395de4 100644
--- a/LayoutTests/fast/canvas/canvas-fillPath-alpha-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-fillPath-alpha-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-fillPath-gradient-shadow.html b/LayoutTests/fast/canvas/canvas-fillPath-gradient-shadow.html
index 9536338..38f582d 100644
--- a/LayoutTests/fast/canvas/canvas-fillPath-gradient-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-fillPath-gradient-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-fillPath-pattern-shadow.html b/LayoutTests/fast/canvas/canvas-fillPath-pattern-shadow.html
index fe4d5f4..5ea78ad 100644
--- a/LayoutTests/fast/canvas/canvas-fillPath-pattern-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-fillPath-pattern-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-fillPath-shadow.html b/LayoutTests/fast/canvas/canvas-fillPath-shadow.html
index bb2c0bf..b63e900 100644
--- a/LayoutTests/fast/canvas/canvas-fillPath-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-fillPath-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-fillRect-gradient-shadow.html b/LayoutTests/fast/canvas/canvas-fillRect-gradient-shadow.html
index 9ba9f96..4e9ee7b 100644
--- a/LayoutTests/fast/canvas/canvas-fillRect-gradient-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-fillRect-gradient-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-fillRect-shadow.html b/LayoutTests/fast/canvas/canvas-fillRect-shadow.html
index 60b2049..cd1c198 100644
--- a/LayoutTests/fast/canvas/canvas-fillRect-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-fillRect-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-fillRect.html b/LayoutTests/fast/canvas/canvas-fillRect.html
index cb406c9..fbf34b2 100644
--- a/LayoutTests/fast/canvas/canvas-fillRect.html
+++ b/LayoutTests/fast/canvas/canvas-fillRect.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html b/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html
index d64b118..d39c7cc9 100644
--- a/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html
+++ b/LayoutTests/fast/canvas/canvas-font-ex-units-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-getContext-invalid.html b/LayoutTests/fast/canvas/canvas-getContext-invalid.html
index 5565702..7ff5d7a 100644
--- a/LayoutTests/fast/canvas/canvas-getContext-invalid.html
+++ b/LayoutTests/fast/canvas/canvas-getContext-invalid.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-getImageData-invalid.html b/LayoutTests/fast/canvas/canvas-getImageData-invalid.html
index 3182357..69b9d72 100644
--- a/LayoutTests/fast/canvas/canvas-getImageData-invalid.html
+++ b/LayoutTests/fast/canvas/canvas-getImageData-invalid.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-getImageData-negative-source.html b/LayoutTests/fast/canvas/canvas-getImageData-negative-source.html
index dac5e8c..23fb128 100644
--- a/LayoutTests/fast/canvas/canvas-getImageData-negative-source.html
+++ b/LayoutTests/fast/canvas/canvas-getImageData-negative-source.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-getImageData-rounding.html b/LayoutTests/fast/canvas/canvas-getImageData-rounding.html
index 3332a1d..e6bd994 100644
--- a/LayoutTests/fast/canvas/canvas-getImageData-rounding.html
+++ b/LayoutTests/fast/canvas/canvas-getImageData-rounding.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-gradient-addStop-error.html b/LayoutTests/fast/canvas/canvas-gradient-addStop-error.html
index 51c360e..0ca9537 100644
--- a/LayoutTests/fast/canvas/canvas-gradient-addStop-error.html
+++ b/LayoutTests/fast/canvas/canvas-gradient-addStop-error.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-gradient-without-path.html b/LayoutTests/fast/canvas/canvas-gradient-without-path.html
index 86cb63a..05ac7b6 100644
--- a/LayoutTests/fast/canvas/canvas-gradient-without-path.html
+++ b/LayoutTests/fast/canvas/canvas-gradient-without-path.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-invalid-fillstyle.html b/LayoutTests/fast/canvas/canvas-invalid-fillstyle.html
index 35e855c..e6b692b 100644
--- a/LayoutTests/fast/canvas/canvas-invalid-fillstyle.html
+++ b/LayoutTests/fast/canvas/canvas-invalid-fillstyle.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-invalid-strokestyle.html b/LayoutTests/fast/canvas/canvas-invalid-strokestyle.html
index ea63a44..09b620b 100644
--- a/LayoutTests/fast/canvas/canvas-invalid-strokestyle.html
+++ b/LayoutTests/fast/canvas/canvas-invalid-strokestyle.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-invalid-values.html b/LayoutTests/fast/canvas/canvas-invalid-values.html
index 6c59363..bdc78ef 100644
--- a/LayoutTests/fast/canvas/canvas-invalid-values.html
+++ b/LayoutTests/fast/canvas/canvas-invalid-values.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-lineWidth-intact-after-strokeRect.html b/LayoutTests/fast/canvas/canvas-lineWidth-intact-after-strokeRect.html
index 8f7922f..af5f67b 100644
--- a/LayoutTests/fast/canvas/canvas-lineWidth-intact-after-strokeRect.html
+++ b/LayoutTests/fast/canvas/canvas-lineWidth-intact-after-strokeRect.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-lineWidth.html b/LayoutTests/fast/canvas/canvas-lineWidth.html
index b5390b9..e0c20c8 100644
--- a/LayoutTests/fast/canvas/canvas-lineWidth.html
+++ b/LayoutTests/fast/canvas/canvas-lineWidth.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-longlived-context.html b/LayoutTests/fast/canvas/canvas-longlived-context.html
index 534a5c7..1c79d0d 100644
--- a/LayoutTests/fast/canvas/canvas-longlived-context.html
+++ b/LayoutTests/fast/canvas/canvas-longlived-context.html
@@ -1,4 +1,4 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
+
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="canvas-longlived-context.js"></script>
 <script src="../js/resources/js-test-post.js"></script>
diff --git a/LayoutTests/fast/canvas/canvas-modify-emptyPath.html b/LayoutTests/fast/canvas/canvas-modify-emptyPath.html
index 827e41f..71b4873 100644
--- a/LayoutTests/fast/canvas/canvas-modify-emptyPath.html
+++ b/LayoutTests/fast/canvas/canvas-modify-emptyPath.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-negative-size.html b/LayoutTests/fast/canvas/canvas-negative-size.html
index 74979c6..55e82d2 100644
--- a/LayoutTests/fast/canvas/canvas-negative-size.html
+++ b/LayoutTests/fast/canvas/canvas-negative-size.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-drawImage.html b/LayoutTests/fast/canvas/canvas-overloads-drawImage.html
index 0e6147a..57b2c14 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-drawImage.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-drawImage.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-drawImageFromRect.html b/LayoutTests/fast/canvas/canvas-overloads-drawImageFromRect.html
index cf91587..116ffaf 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-drawImageFromRect.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-drawImageFromRect.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-fillText.html b/LayoutTests/fast/canvas/canvas-overloads-fillText.html
index d84f65b..fd8d52d 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-fillText.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-fillText.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-setFillColor.html b/LayoutTests/fast/canvas/canvas-overloads-setFillColor.html
index 242bcf9..b61ef55 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-setFillColor.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-setFillColor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-setShadow.html b/LayoutTests/fast/canvas/canvas-overloads-setShadow.html
index 16e7e9f..7dc0df8 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-setShadow.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-setShadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-setStrokeColor.html b/LayoutTests/fast/canvas/canvas-overloads-setStrokeColor.html
index ba18492..e424523 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-setStrokeColor.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-setStrokeColor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-strokeRect.html b/LayoutTests/fast/canvas/canvas-overloads-strokeRect.html
index 2465646..6f2f1d6 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-strokeRect.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-strokeRect.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-overloads-strokeText.html b/LayoutTests/fast/canvas/canvas-overloads-strokeText.html
index 63160c5..28732f8 100644
--- a/LayoutTests/fast/canvas/canvas-overloads-strokeText.html
+++ b/LayoutTests/fast/canvas/canvas-overloads-strokeText.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-pattern-behaviour.html b/LayoutTests/fast/canvas/canvas-pattern-behaviour.html
index 01e6801..3d139d42 100644
--- a/LayoutTests/fast/canvas/canvas-pattern-behaviour.html
+++ b/LayoutTests/fast/canvas/canvas-pattern-behaviour.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="canvas-pattern-behaviour.js"></script>
 <script src="../js/resources/js-test-post.js"></script>
diff --git a/LayoutTests/fast/canvas/canvas-pattern-modify.html b/LayoutTests/fast/canvas/canvas-pattern-modify.html
index 04b0f4a..064db53 100644
--- a/LayoutTests/fast/canvas/canvas-pattern-modify.html
+++ b/LayoutTests/fast/canvas/canvas-pattern-modify.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="canvas-pattern-modify.js"></script>
 <script src="../js/resources/js-test-post.js"></script>
diff --git a/LayoutTests/fast/canvas/canvas-pattern-transform.html b/LayoutTests/fast/canvas/canvas-pattern-transform.html
index 9116b42..73af7c2 100644
--- a/LayoutTests/fast/canvas/canvas-pattern-transform.html
+++ b/LayoutTests/fast/canvas/canvas-pattern-transform.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-putImageData.html b/LayoutTests/fast/canvas/canvas-putImageData.html
index 3a1b9b8..4558234 100644
--- a/LayoutTests/fast/canvas/canvas-putImageData.html
+++ b/LayoutTests/fast/canvas/canvas-putImageData.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <canvas id="canvas" width="100" height="100"></canvas><br/>
 <script src="canvas-putImageData.js"></script>
diff --git a/LayoutTests/fast/canvas/canvas-radial-gradient-spreadMethod.html b/LayoutTests/fast/canvas/canvas-radial-gradient-spreadMethod.html
index 84e64e3..e04e445 100644
--- a/LayoutTests/fast/canvas/canvas-radial-gradient-spreadMethod.html
+++ b/LayoutTests/fast/canvas/canvas-radial-gradient-spreadMethod.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-save-restore-with-path.html b/LayoutTests/fast/canvas/canvas-save-restore-with-path.html
index 4190fde..0713841 100644
--- a/LayoutTests/fast/canvas/canvas-save-restore-with-path.html
+++ b/LayoutTests/fast/canvas/canvas-save-restore-with-path.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="canvas-save-restore-with-path.js"></script>
 <script src="../js/resources/js-test-post.js"></script>
diff --git a/LayoutTests/fast/canvas/canvas-scale-drawImage-shadow.html b/LayoutTests/fast/canvas/canvas-scale-drawImage-shadow.html
index 0ae42a4..0d6d4e1 100644
--- a/LayoutTests/fast/canvas/canvas-scale-drawImage-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-scale-drawImage-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-scale-fillPath-shadow.html b/LayoutTests/fast/canvas/canvas-scale-fillPath-shadow.html
index 58c93ae..9b4ee73 100644
--- a/LayoutTests/fast/canvas/canvas-scale-fillPath-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-scale-fillPath-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-scale-fillRect-shadow.html b/LayoutTests/fast/canvas/canvas-scale-fillRect-shadow.html
index 2b253f7..7686a1d 100644
--- a/LayoutTests/fast/canvas/canvas-scale-fillRect-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-scale-fillRect-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-scale-shadowBlur.html b/LayoutTests/fast/canvas/canvas-scale-shadowBlur.html
index 77893a4..d3938b9 100644
--- a/LayoutTests/fast/canvas/canvas-scale-shadowBlur.html
+++ b/LayoutTests/fast/canvas/canvas-scale-shadowBlur.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-scale-strokePath-shadow.html b/LayoutTests/fast/canvas/canvas-scale-strokePath-shadow.html
index 32339a5..7583f0b 100644
--- a/LayoutTests/fast/canvas/canvas-scale-strokePath-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-scale-strokePath-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-set-properties-with-non-invertible-ctm.html b/LayoutTests/fast/canvas/canvas-set-properties-with-non-invertible-ctm.html
index 883000f..6f70720 100644
--- a/LayoutTests/fast/canvas/canvas-set-properties-with-non-invertible-ctm.html
+++ b/LayoutTests/fast/canvas/canvas-set-properties-with-non-invertible-ctm.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-setTransform.html b/LayoutTests/fast/canvas/canvas-setTransform.html
index 844f413..55a22ad 100644
--- a/LayoutTests/fast/canvas/canvas-setTransform.html
+++ b/LayoutTests/fast/canvas/canvas-setTransform.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-shadow.html b/LayoutTests/fast/canvas/canvas-shadow.html
index 364ef02..cbc91f4 100644
--- a/LayoutTests/fast/canvas/canvas-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-state-intact-after-putImageData.html b/LayoutTests/fast/canvas/canvas-state-intact-after-putImageData.html
index f36f524..af5864d 100644
--- a/LayoutTests/fast/canvas/canvas-state-intact-after-putImageData.html
+++ b/LayoutTests/fast/canvas/canvas-state-intact-after-putImageData.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-stroke-empty-fill.html b/LayoutTests/fast/canvas/canvas-stroke-empty-fill.html
index 8a87f2e..27d85ea 100644
--- a/LayoutTests/fast/canvas/canvas-stroke-empty-fill.html
+++ b/LayoutTests/fast/canvas/canvas-stroke-empty-fill.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-strokePath-alpha-shadow.html b/LayoutTests/fast/canvas/canvas-strokePath-alpha-shadow.html
index dfa3fc3..33c9733 100644
--- a/LayoutTests/fast/canvas/canvas-strokePath-alpha-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-strokePath-alpha-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-strokePath-gradient-shadow.html b/LayoutTests/fast/canvas/canvas-strokePath-gradient-shadow.html
index 45e83a8..2f1bba5 100644
--- a/LayoutTests/fast/canvas/canvas-strokePath-gradient-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-strokePath-gradient-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-strokePath-shadow.html b/LayoutTests/fast/canvas/canvas-strokePath-shadow.html
index efa6415..8437bf4 100644
--- a/LayoutTests/fast/canvas/canvas-strokePath-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-strokePath-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-strokeRect-alpha-shadow.html b/LayoutTests/fast/canvas/canvas-strokeRect-alpha-shadow.html
index 2bcc7a8..91149ac 100644
--- a/LayoutTests/fast/canvas/canvas-strokeRect-alpha-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-strokeRect-alpha-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-strokeRect-gradient-shadow.html b/LayoutTests/fast/canvas/canvas-strokeRect-gradient-shadow.html
index 1706387..d93a41f 100644
--- a/LayoutTests/fast/canvas/canvas-strokeRect-gradient-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-strokeRect-gradient-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-strokeRect.html b/LayoutTests/fast/canvas/canvas-strokeRect.html
index e211e6b..c4e77a2 100644
--- a/LayoutTests/fast/canvas/canvas-strokeRect.html
+++ b/LayoutTests/fast/canvas/canvas-strokeRect.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-strokeText-strokes-shadow.html b/LayoutTests/fast/canvas/canvas-strokeText-strokes-shadow.html
index bebe059..523c43a 100644
--- a/LayoutTests/fast/canvas/canvas-strokeText-strokes-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-strokeText-strokes-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-style-intact-after-text.html b/LayoutTests/fast/canvas/canvas-style-intact-after-text.html
index 547b8d2..eaf0504 100644
--- a/LayoutTests/fast/canvas/canvas-style-intact-after-text.html
+++ b/LayoutTests/fast/canvas/canvas-style-intact-after-text.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-to-canvas.html b/LayoutTests/fast/canvas/canvas-to-canvas.html
index e728104..3d0510e 100644
--- a/LayoutTests/fast/canvas/canvas-to-canvas.html
+++ b/LayoutTests/fast/canvas/canvas-to-canvas.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-toDataURL-case-insensitive-mimetype.html b/LayoutTests/fast/canvas/canvas-toDataURL-case-insensitive-mimetype.html
index a86a9cc..e3ab17d 100644
--- a/LayoutTests/fast/canvas/canvas-toDataURL-case-insensitive-mimetype.html
+++ b/LayoutTests/fast/canvas/canvas-toDataURL-case-insensitive-mimetype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-transforms-fillRect-shadow.html b/LayoutTests/fast/canvas/canvas-transforms-fillRect-shadow.html
index 4ffbcbe..abb4b5c 100644
--- a/LayoutTests/fast/canvas/canvas-transforms-fillRect-shadow.html
+++ b/LayoutTests/fast/canvas/canvas-transforms-fillRect-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-transparency-and-composite.html b/LayoutTests/fast/canvas/canvas-transparency-and-composite.html
index 722299f..37256a9 100644
--- a/LayoutTests/fast/canvas/canvas-transparency-and-composite.html
+++ b/LayoutTests/fast/canvas/canvas-transparency-and-composite.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-webkitLineDash-invalid.html b/LayoutTests/fast/canvas/canvas-webkitLineDash-invalid.html
index 9783d8a..97858de 100644
--- a/LayoutTests/fast/canvas/canvas-webkitLineDash-invalid.html
+++ b/LayoutTests/fast/canvas/canvas-webkitLineDash-invalid.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-webkitLineDash.html b/LayoutTests/fast/canvas/canvas-webkitLineDash.html
index 2c87cd9..1a0bdf9 100644
--- a/LayoutTests/fast/canvas/canvas-webkitLineDash.html
+++ b/LayoutTests/fast/canvas/canvas-webkitLineDash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/canvas-with-illegal-args.html b/LayoutTests/fast/canvas/canvas-with-illegal-args.html
index ebae134..324e792 100644
--- a/LayoutTests/fast/canvas/canvas-with-illegal-args.html
+++ b/LayoutTests/fast/canvas/canvas-with-illegal-args.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/drawImage-with-negative-source-destination.html b/LayoutTests/fast/canvas/drawImage-with-negative-source-destination.html
index f00fd1a..649d0dd 100644
--- a/LayoutTests/fast/canvas/drawImage-with-negative-source-destination.html
+++ b/LayoutTests/fast/canvas/drawImage-with-negative-source-destination.html
@@ -4,7 +4,6 @@
   -->
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/fillText-shadow.html b/LayoutTests/fast/canvas/fillText-shadow.html
index a8d884c..4c12f77 100644
--- a/LayoutTests/fast/canvas/fillText-shadow.html
+++ b/LayoutTests/fast/canvas/fillText-shadow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/gradient-addColorStop-with-invalid-color.html b/LayoutTests/fast/canvas/gradient-addColorStop-with-invalid-color.html
index da48704..631d2a4 100644
--- a/LayoutTests/fast/canvas/gradient-addColorStop-with-invalid-color.html
+++ b/LayoutTests/fast/canvas/gradient-addColorStop-with-invalid-color.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/gradient-with-clip.html b/LayoutTests/fast/canvas/gradient-with-clip.html
index 54f5947..f59d7a8 100644
--- a/LayoutTests/fast/canvas/gradient-with-clip.html
+++ b/LayoutTests/fast/canvas/gradient-with-clip.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/linearGradient-infinite-values.html b/LayoutTests/fast/canvas/linearGradient-infinite-values.html
index fe34c3c..641ae7b 100644
--- a/LayoutTests/fast/canvas/linearGradient-infinite-values.html
+++ b/LayoutTests/fast/canvas/linearGradient-infinite-values.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/pattern-with-transform.html b/LayoutTests/fast/canvas/pattern-with-transform.html
index 19e42d0..8f518a6 100644
--- a/LayoutTests/fast/canvas/pattern-with-transform.html
+++ b/LayoutTests/fast/canvas/pattern-with-transform.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/pointInPath.html b/LayoutTests/fast/canvas/pointInPath.html
index 38a2ec0..ca8bca8 100644
--- a/LayoutTests/fast/canvas/pointInPath.html
+++ b/LayoutTests/fast/canvas/pointInPath.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/radialGradient-infinite-values.html b/LayoutTests/fast/canvas/radialGradient-infinite-values.html
index f1e5609..d953905 100644
--- a/LayoutTests/fast/canvas/radialGradient-infinite-values.html
+++ b/LayoutTests/fast/canvas/radialGradient-infinite-values.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/rgba-parsing.html b/LayoutTests/fast/canvas/rgba-parsing.html
index 39fa16c..9fa1c9f 100644
--- a/LayoutTests/fast/canvas/rgba-parsing.html
+++ b/LayoutTests/fast/canvas/rgba-parsing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/script-tests/TEMPLATE.html b/LayoutTests/fast/canvas/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/canvas/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/canvas/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/set-colors.html b/LayoutTests/fast/canvas/set-colors.html
index 64a25d8..00b03e9 100644
--- a/LayoutTests/fast/canvas/set-colors.html
+++ b/LayoutTests/fast/canvas/set-colors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/text-globalAlpha.html b/LayoutTests/fast/canvas/text-globalAlpha.html
index 2b2d29a..02d246c 100644
--- a/LayoutTests/fast/canvas/text-globalAlpha.html
+++ b/LayoutTests/fast/canvas/text-globalAlpha.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/translate-text.html b/LayoutTests/fast/canvas/translate-text.html
index 261b1f5..bfa7e54 100644
--- a/LayoutTests/fast/canvas/translate-text.html
+++ b/LayoutTests/fast/canvas/translate-text.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/webgl/WebGLContextEvent.html b/LayoutTests/fast/canvas/webgl/WebGLContextEvent.html
index 3598f8e..11dcbc2 100644
--- a/LayoutTests/fast/canvas/webgl/WebGLContextEvent.html
+++ b/LayoutTests/fast/canvas/webgl/WebGLContextEvent.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/array-buffer-crash.html b/LayoutTests/fast/canvas/webgl/array-buffer-crash.html
index 54e63b5..b5cdd4f 100644
--- a/LayoutTests/fast/canvas/webgl/array-buffer-crash.html
+++ b/LayoutTests/fast/canvas/webgl/array-buffer-crash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/array-buffer-view-crash.html b/LayoutTests/fast/canvas/webgl/array-buffer-view-crash.html
index a5449fe..388e9ab 100644
--- a/LayoutTests/fast/canvas/webgl/array-buffer-view-crash.html
+++ b/LayoutTests/fast/canvas/webgl/array-buffer-view-crash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/array-get-and-set-method-removal.html b/LayoutTests/fast/canvas/webgl/array-get-and-set-method-removal.html
index 80ae714..045fee7 100644
--- a/LayoutTests/fast/canvas/webgl/array-get-and-set-method-removal.html
+++ b/LayoutTests/fast/canvas/webgl/array-get-and-set-method-removal.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/array-get-out-of-bounds.html b/LayoutTests/fast/canvas/webgl/array-get-out-of-bounds.html
index dfed84f..565f3a0 100644
--- a/LayoutTests/fast/canvas/webgl/array-get-out-of-bounds.html
+++ b/LayoutTests/fast/canvas/webgl/array-get-out-of-bounds.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/array-message-passing.html b/LayoutTests/fast/canvas/webgl/array-message-passing.html
index de52f5e..c2d80c1 100644
--- a/LayoutTests/fast/canvas/webgl/array-message-passing.html
+++ b/LayoutTests/fast/canvas/webgl/array-message-passing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/array-set-out-of-bounds.html b/LayoutTests/fast/canvas/webgl/array-set-out-of-bounds.html
index c7bf479..95908d7 100644
--- a/LayoutTests/fast/canvas/webgl/array-set-out-of-bounds.html
+++ b/LayoutTests/fast/canvas/webgl/array-set-out-of-bounds.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/array-setters.html b/LayoutTests/fast/canvas/webgl/array-setters.html
index 58e6f52..b336e07 100644
--- a/LayoutTests/fast/canvas/webgl/array-setters.html
+++ b/LayoutTests/fast/canvas/webgl/array-setters.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/array-unit-tests.html b/LayoutTests/fast/canvas/webgl/array-unit-tests.html
index 9451a5a..76d7565 100644
--- a/LayoutTests/fast/canvas/webgl/array-unit-tests.html
+++ b/LayoutTests/fast/canvas/webgl/array-unit-tests.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/bad-arguments-test.html b/LayoutTests/fast/canvas/webgl/bad-arguments-test.html
index 328fd46..d06f7b8 100644
--- a/LayoutTests/fast/canvas/webgl/bad-arguments-test.html
+++ b/LayoutTests/fast/canvas/webgl/bad-arguments-test.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/buffer-bind-test.html b/LayoutTests/fast/canvas/webgl/buffer-bind-test.html
index 1c1a688..31c9d59 100644
--- a/LayoutTests/fast/canvas/webgl/buffer-bind-test.html
+++ b/LayoutTests/fast/canvas/webgl/buffer-bind-test.html
@@ -3,7 +3,6 @@
 <html>
   <head>
     <title>WebGL BindBuffer conformance test.</title>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="resources/webgl-test.js"> </script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/buffer-data-array-buffer.html b/LayoutTests/fast/canvas/webgl/buffer-data-array-buffer.html
index ba76ffe..4e0649e 100644
--- a/LayoutTests/fast/canvas/webgl/buffer-data-array-buffer.html
+++ b/LayoutTests/fast/canvas/webgl/buffer-data-array-buffer.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/canvas-test.html b/LayoutTests/fast/canvas/webgl/canvas-test.html
index 9d8e80c..e653120 100644
--- a/LayoutTests/fast/canvas/webgl/canvas-test.html
+++ b/LayoutTests/fast/canvas/webgl/canvas-test.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL Canvas Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/canvas-zero-size.html b/LayoutTests/fast/canvas/webgl/canvas-zero-size.html
index 79896c3..8fbe617 100644
--- a/LayoutTests/fast/canvas/webgl/canvas-zero-size.html
+++ b/LayoutTests/fast/canvas/webgl/canvas-zero-size.html
@@ -3,7 +3,6 @@
   <head>
   <meta charset="utf-8">
     <title>Zero Size Canvas Test</title>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="resources/webgl-test.js"> </script>
     <script src="resources/webgl-test-utils.js"> </script>
diff --git a/LayoutTests/fast/canvas/webgl/constants.html b/LayoutTests/fast/canvas/webgl/constants.html
index 1845bad..921f93a 100644
--- a/LayoutTests/fast/canvas/webgl/constants.html
+++ b/LayoutTests/fast/canvas/webgl/constants.html
@@ -7,7 +7,6 @@
 -->
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL Constants Test</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias.html b/LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias.html
index 1ff55cb..c079bbb 100644
--- a/LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias.html
+++ b/LayoutTests/fast/canvas/webgl/context-attributes-alpha-depth-stencil-antialias.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script id="vshader" type="x-shader/x-vertex">
diff --git a/LayoutTests/fast/canvas/webgl/context-lost-restored.html b/LayoutTests/fast/canvas/webgl/context-lost-restored.html
index 660766f..cd4b546 100644
--- a/LayoutTests/fast/canvas/webgl/context-lost-restored.html
+++ b/LayoutTests/fast/canvas/webgl/context-lost-restored.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/context-lost.html b/LayoutTests/fast/canvas/webgl/context-lost.html
index d150256..e6744bb 100644
--- a/LayoutTests/fast/canvas/webgl/context-lost.html
+++ b/LayoutTests/fast/canvas/webgl/context-lost.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d.html b/LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d.html
index 2246c77..751717d 100644
--- a/LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d.html
+++ b/LayoutTests/fast/canvas/webgl/copy-tex-image-and-sub-image-2d.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script id="vshader" type="x-shader/x-vertex">
diff --git a/LayoutTests/fast/canvas/webgl/data-view-crash.html b/LayoutTests/fast/canvas/webgl/data-view-crash.html
index 8cd0d26..3e595f7 100644
--- a/LayoutTests/fast/canvas/webgl/data-view-crash.html
+++ b/LayoutTests/fast/canvas/webgl/data-view-crash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/webgl/data-view-test.html b/LayoutTests/fast/canvas/webgl/data-view-test.html
index 6890b0c..03ec121 100644
--- a/LayoutTests/fast/canvas/webgl/data-view-test.html
+++ b/LayoutTests/fast/canvas/webgl/data-view-test.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds.html b/LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds.html
index c242b0a47..9bb7075 100644
--- a/LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds.html
+++ b/LayoutTests/fast/canvas/webgl/draw-arrays-out-of-bounds.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds.html b/LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds.html
index bf0e3d7..df3e63b 100644
--- a/LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds.html
+++ b/LayoutTests/fast/canvas/webgl/draw-elements-out-of-bounds.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/drawingbuffer-test.html b/LayoutTests/fast/canvas/webgl/drawingbuffer-test.html
index ba7e37c..2a80454 100644
--- a/LayoutTests/fast/canvas/webgl/drawingbuffer-test.html
+++ b/LayoutTests/fast/canvas/webgl/drawingbuffer-test.html
@@ -3,7 +3,6 @@
 <head>
 <meta charset="utf-8">
 <title>WebGL Canvas Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/error-reporting.html b/LayoutTests/fast/canvas/webgl/error-reporting.html
index 29888a0..f66b19b 100644
--- a/LayoutTests/fast/canvas/webgl/error-reporting.html
+++ b/LayoutTests/fast/canvas/webgl/error-reporting.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/framebuffer-object-attachment.html b/LayoutTests/fast/canvas/webgl/framebuffer-object-attachment.html
index 19e6037..257f898 100644
--- a/LayoutTests/fast/canvas/webgl/framebuffer-object-attachment.html
+++ b/LayoutTests/fast/canvas/webgl/framebuffer-object-attachment.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/framebuffer-test.html b/LayoutTests/fast/canvas/webgl/framebuffer-test.html
index 19fcb6a..7245a07 100644
--- a/LayoutTests/fast/canvas/webgl/framebuffer-test.html
+++ b/LayoutTests/fast/canvas/webgl/framebuffer-test.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL Framebuffer Test</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/get-active-test.html b/LayoutTests/fast/canvas/webgl/get-active-test.html
index 4e728bd..a971380 100644
--- a/LayoutTests/fast/canvas/webgl/get-active-test.html
+++ b/LayoutTests/fast/canvas/webgl/get-active-test.html
@@ -1,7 +1,6 @@
 
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test.html b/LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test.html
index ca3e3c7..0a70b10 100644
--- a/LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test.html
+++ b/LayoutTests/fast/canvas/webgl/gl-bind-attrib-location-test.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL BindAttribLocation Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/gl-enable-enum-test.html b/LayoutTests/fast/canvas/webgl/gl-enable-enum-test.html
index 4e7da62..e9a31b2 100644
--- a/LayoutTests/fast/canvas/webgl/gl-enable-enum-test.html
+++ b/LayoutTests/fast/canvas/webgl/gl-enable-enum-test.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL gl.ENABLE enums Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/gl-enum-tests.html b/LayoutTests/fast/canvas/webgl/gl-enum-tests.html
index 604a422..2978a0a 100644
--- a/LayoutTests/fast/canvas/webgl/gl-enum-tests.html
+++ b/LayoutTests/fast/canvas/webgl/gl-enum-tests.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL gl enums Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/gl-get-calls.html b/LayoutTests/fast/canvas/webgl/gl-get-calls.html
index 4091a1a..0587423 100644
--- a/LayoutTests/fast/canvas/webgl/gl-get-calls.html
+++ b/LayoutTests/fast/canvas/webgl/gl-get-calls.html
@@ -3,7 +3,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL gl calls Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/gl-getshadersource.html b/LayoutTests/fast/canvas/webgl/gl-getshadersource.html
index eb853f1..9af305b 100644
--- a/LayoutTests/fast/canvas/webgl/gl-getshadersource.html
+++ b/LayoutTests/fast/canvas/webgl/gl-getshadersource.html
@@ -4,7 +4,6 @@
 <head>
 <meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
    <title>WebGL getShaderSource conformance test.</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 <script src="resources/webgl-test-utils.js"> </script>
diff --git a/LayoutTests/fast/canvas/webgl/gl-getstring.html b/LayoutTests/fast/canvas/webgl/gl-getstring.html
index a824a02..a72f183 100644
--- a/LayoutTests/fast/canvas/webgl/gl-getstring.html
+++ b/LayoutTests/fast/canvas/webgl/gl-getstring.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL gl.getParameter Strings Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/gl-object-get-calls.html b/LayoutTests/fast/canvas/webgl/gl-object-get-calls.html
index 92a7ecb..e3f0d90 100644
--- a/LayoutTests/fast/canvas/webgl/gl-object-get-calls.html
+++ b/LayoutTests/fast/canvas/webgl/gl-object-get-calls.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/gl-pixelstorei.html b/LayoutTests/fast/canvas/webgl/gl-pixelstorei.html
index 654baed..5cfe807a9c 100644
--- a/LayoutTests/fast/canvas/webgl/gl-pixelstorei.html
+++ b/LayoutTests/fast/canvas/webgl/gl-pixelstorei.html
@@ -3,7 +3,6 @@
 <html>
 <head>
 <title>WebGL pixelStorei Test</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
diff --git a/LayoutTests/fast/canvas/webgl/gl-teximage.html b/LayoutTests/fast/canvas/webgl/gl-teximage.html
index b75294d..34ec7e66 100644
--- a/LayoutTests/fast/canvas/webgl/gl-teximage.html
+++ b/LayoutTests/fast/canvas/webgl/gl-teximage.html
@@ -3,7 +3,6 @@
 <html>
 <head>
 <title>WebGL texImage2D conformance test.</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 <script src="resources/webgl-test-utils.js"> </script>
diff --git a/LayoutTests/fast/canvas/webgl/gl-uniform-arrays.html b/LayoutTests/fast/canvas/webgl/gl-uniform-arrays.html
index 226de37..789af0b 100644
--- a/LayoutTests/fast/canvas/webgl/gl-uniform-arrays.html
+++ b/LayoutTests/fast/canvas/webgl/gl-uniform-arrays.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL uniform array Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv.html b/LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv.html
index c568a17..3fbdebd 100644
--- a/LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv.html
+++ b/LayoutTests/fast/canvas/webgl/gl-uniformmatrix4fv.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL uniformMatrix Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues.html b/LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues.html
index 0fc289e..e540397 100644
--- a/LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues.html
+++ b/LayoutTests/fast/canvas/webgl/gl-vertex-attrib-zero-issues.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>WebGL Enable Vertex Attrib Zero Test</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 <script src="resources/webgl-test-utils.js"> </script>
diff --git a/LayoutTests/fast/canvas/webgl/gl-vertex-attrib.html b/LayoutTests/fast/canvas/webgl/gl-vertex-attrib.html
index 39f94b3..bd2d6e5 100644
--- a/LayoutTests/fast/canvas/webgl/gl-vertex-attrib.html
+++ b/LayoutTests/fast/canvas/webgl/gl-vertex-attrib.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL vertexAttrib Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/gl-vertexattribpointer.html b/LayoutTests/fast/canvas/webgl/gl-vertexattribpointer.html
index 22f30f0..6dae49b 100644
--- a/LayoutTests/fast/canvas/webgl/gl-vertexattribpointer.html
+++ b/LayoutTests/fast/canvas/webgl/gl-vertexattribpointer.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL vertexAttribPointer Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="resources/desktop-gl-constants.js" type="text/javascript"></script>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/glsl-conformance.html b/LayoutTests/fast/canvas/webgl/glsl-conformance.html
index 38d18f8..78b97d0 100644
--- a/LayoutTests/fast/canvas/webgl/glsl-conformance.html
+++ b/LayoutTests/fast/canvas/webgl/glsl-conformance.html
@@ -4,7 +4,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL GLSL Conformance Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour.html b/LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour.html
index 77c2997..00d2dff 100644
--- a/LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour.html
+++ b/LayoutTests/fast/canvas/webgl/incorrect-context-object-behaviour.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/index-validation-copies-indices.html b/LayoutTests/fast/canvas/webgl/index-validation-copies-indices.html
index 8d7f999..94654e0 100644
--- a/LayoutTests/fast/canvas/webgl/index-validation-copies-indices.html
+++ b/LayoutTests/fast/canvas/webgl/index-validation-copies-indices.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data.html b/LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data.html
index a985b12..4f0b2e14 100644
--- a/LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data.html
+++ b/LayoutTests/fast/canvas/webgl/index-validation-crash-with-buffer-sub-data.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices.html b/LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices.html
index 09f9c4f..eed8277 100644
--- a/LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices.html
+++ b/LayoutTests/fast/canvas/webgl/index-validation-verifies-too-many-indices.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer.html b/LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer.html
index 7b99017..401f637 100644
--- a/LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer.html
+++ b/LayoutTests/fast/canvas/webgl/index-validation-with-resized-buffer.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/index-validation.html b/LayoutTests/fast/canvas/webgl/index-validation.html
index f3139e8..b23a20f 100644
--- a/LayoutTests/fast/canvas/webgl/index-validation.html
+++ b/LayoutTests/fast/canvas/webgl/index-validation.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/instanceof-test.html b/LayoutTests/fast/canvas/webgl/instanceof-test.html
index 812e56f..8560d7c 100644
--- a/LayoutTests/fast/canvas/webgl/instanceof-test.html
+++ b/LayoutTests/fast/canvas/webgl/instanceof-test.html
@@ -3,7 +3,6 @@
 <html>

 <head>

 <title>WebGL instanceof test.</title>

-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>

 <script src="../../js/resources/js-test-pre.js"></script>

 <script src="resources/webgl-test.js"> </script>

 <script src="resources/webgl-test-utils.js"> </script>

diff --git a/LayoutTests/fast/canvas/webgl/invalid-UTF-16.html b/LayoutTests/fast/canvas/webgl/invalid-UTF-16.html
index 16511d1..8c75ffd 100644
--- a/LayoutTests/fast/canvas/webgl/invalid-UTF-16.html
+++ b/LayoutTests/fast/canvas/webgl/invalid-UTF-16.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/invalid-passed-params.html b/LayoutTests/fast/canvas/webgl/invalid-passed-params.html
index 0bac52b..c13c75c 100644
--- a/LayoutTests/fast/canvas/webgl/invalid-passed-params.html
+++ b/LayoutTests/fast/canvas/webgl/invalid-passed-params.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/desktop-gl-constants.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/is-object.html b/LayoutTests/fast/canvas/webgl/is-object.html
index ccfb9ae..cdbd843 100644
--- a/LayoutTests/fast/canvas/webgl/is-object.html
+++ b/LayoutTests/fast/canvas/webgl/is-object.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/null-object-behaviour.html b/LayoutTests/fast/canvas/webgl/null-object-behaviour.html
index 70c4fb6..eef7cf9 100644
--- a/LayoutTests/fast/canvas/webgl/null-object-behaviour.html
+++ b/LayoutTests/fast/canvas/webgl/null-object-behaviour.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/null-uniform-location.html b/LayoutTests/fast/canvas/webgl/null-uniform-location.html
index cfae63e..a345e69 100644
--- a/LayoutTests/fast/canvas/webgl/null-uniform-location.html
+++ b/LayoutTests/fast/canvas/webgl/null-uniform-location.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/object-deletion-behaviour.html b/LayoutTests/fast/canvas/webgl/object-deletion-behaviour.html
index 02053ff..16fec45 100644
--- a/LayoutTests/fast/canvas/webgl/object-deletion-behaviour.html
+++ b/LayoutTests/fast/canvas/webgl/object-deletion-behaviour.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/point-size.html b/LayoutTests/fast/canvas/webgl/point-size.html
index 242d44a..6f2ea3f 100644
--- a/LayoutTests/fast/canvas/webgl/point-size.html
+++ b/LayoutTests/fast/canvas/webgl/point-size.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script id="vshader" type="x-shader/x-vertex">
diff --git a/LayoutTests/fast/canvas/webgl/premultiplyalpha-test.html b/LayoutTests/fast/canvas/webgl/premultiplyalpha-test.html
index 3bf449a..34eb7a0 100644
--- a/LayoutTests/fast/canvas/webgl/premultiplyalpha-test.html
+++ b/LayoutTests/fast/canvas/webgl/premultiplyalpha-test.html
@@ -3,7 +3,6 @@
 <head>
 <meta charset="utf-8">
 <title>Test the WebGL premultipledAlpha context creation flag.</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 <script src="resources/webgl-test-utils.js"> </script>
diff --git a/LayoutTests/fast/canvas/webgl/program-test.html b/LayoutTests/fast/canvas/webgl/program-test.html
index 9b4575a..ca17deb 100644
--- a/LayoutTests/fast/canvas/webgl/program-test.html
+++ b/LayoutTests/fast/canvas/webgl/program-test.html
@@ -3,7 +3,6 @@
 <head>
 <meta charset="utf-8">
 <title>WebGL Program Compiling/Linking Conformance Test</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js" type="text/javascript"></script>
 <script src="resources/webgl-test.js" type="text/javascript"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment.html b/LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment.html
index 1973bcd..8f82374 100644
--- a/LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment.html
+++ b/LayoutTests/fast/canvas/webgl/read-pixels-pack-alignment.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script id="vshader" type="x-shader/x-vertex">
diff --git a/LayoutTests/fast/canvas/webgl/read-pixels-test.html b/LayoutTests/fast/canvas/webgl/read-pixels-test.html
index 082a87f..d4aee4e 100644
--- a/LayoutTests/fast/canvas/webgl/read-pixels-test.html
+++ b/LayoutTests/fast/canvas/webgl/read-pixels-test.html
@@ -3,7 +3,6 @@
 <html>
 <head>
 <title>WebGL ReadPixels conformance test.</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 <script src="resources/webgl-test-utils.js"> </script>
diff --git a/LayoutTests/fast/canvas/webgl/renderbuffer-initialization.html b/LayoutTests/fast/canvas/webgl/renderbuffer-initialization.html
index d2d317c..f0bce0e 100644
--- a/LayoutTests/fast/canvas/webgl/renderbuffer-initialization.html
+++ b/LayoutTests/fast/canvas/webgl/renderbuffer-initialization.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script>
diff --git a/LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings.html b/LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings.html
index ceef8e1..7448abf 100644
--- a/LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings.html
+++ b/LayoutTests/fast/canvas/webgl/renderer-and-vendor-strings.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/shader-deleted-by-accessor.html b/LayoutTests/fast/canvas/webgl/shader-deleted-by-accessor.html
index 6bfc2c9..ec3d629 100644
--- a/LayoutTests/fast/canvas/webgl/shader-deleted-by-accessor.html
+++ b/LayoutTests/fast/canvas/webgl/shader-deleted-by-accessor.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view.html b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view.html
index 1467223..5823101 100644
--- a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view.html
+++ b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-array-buffer-view.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data.html b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data.html
index ab25a15..071eca4 100644
--- a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data.html
+++ b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image-data.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image.html b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image.html
index 2fbee65..be5c6f2 100644
--- a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image.html
+++ b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-image.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html
index 0189c63..86cb814 100644
--- a/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html
+++ b/LayoutTests/fast/canvas/webgl/tex-image-and-sub-image-2d-with-video.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs.html b/LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs.html
index 411576d..1de12ee 100644
--- a/LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs.html
+++ b/LayoutTests/fast/canvas/webgl/tex-image-and-uniform-binding-bugs.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/tex-image-with-format-and-type.html b/LayoutTests/fast/canvas/webgl/tex-image-with-format-and-type.html
index ebad95b..35ee372 100644
--- a/LayoutTests/fast/canvas/webgl/tex-image-with-format-and-type.html
+++ b/LayoutTests/fast/canvas/webgl/tex-image-with-format-and-type.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/pnglib.js"></script>
 <script src="resources/webgl-test.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-input-validation.html b/LayoutTests/fast/canvas/webgl/tex-input-validation.html
index 7a5ec88..a182487 100644
--- a/LayoutTests/fast/canvas/webgl/tex-input-validation.html
+++ b/LayoutTests/fast/canvas/webgl/tex-input-validation.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args.html b/LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args.html
index 254a9a6..4551471 100644
--- a/LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args.html
+++ b/LayoutTests/fast/canvas/webgl/tex-sub-image-2d-bad-args.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/tex-sub-image-2d.html b/LayoutTests/fast/canvas/webgl/tex-sub-image-2d.html
index ac4aab3..ccd51fc 100644
--- a/LayoutTests/fast/canvas/webgl/tex-sub-image-2d.html
+++ b/LayoutTests/fast/canvas/webgl/tex-sub-image-2d.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/texImageTest.html b/LayoutTests/fast/canvas/webgl/texImageTest.html
index 75e09b5..bdf9171 100644
--- a/LayoutTests/fast/canvas/webgl/texImageTest.html
+++ b/LayoutTests/fast/canvas/webgl/texImageTest.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/texture-active-bind.html b/LayoutTests/fast/canvas/webgl/texture-active-bind.html
index 2520004..797c59a 100644
--- a/LayoutTests/fast/canvas/webgl/texture-active-bind.html
+++ b/LayoutTests/fast/canvas/webgl/texture-active-bind.html
@@ -3,7 +3,6 @@
 <html>
   <head>
     <title>WebGL ActiveTexture BindTexture conformance test.</title>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="resources/webgl-test.js"> </script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/texture-complete.html b/LayoutTests/fast/canvas/webgl/texture-complete.html
index d0bbda5..d46e5ed 100644
--- a/LayoutTests/fast/canvas/webgl/texture-complete.html
+++ b/LayoutTests/fast/canvas/webgl/texture-complete.html
@@ -3,7 +3,6 @@
 <html>
 <head>
 <title>WebGL "Texture Complete" texture conformance test.</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/texture-npot.html b/LayoutTests/fast/canvas/webgl/texture-npot.html
index fde02fc..633ae0d 100644
--- a/LayoutTests/fast/canvas/webgl/texture-npot.html
+++ b/LayoutTests/fast/canvas/webgl/texture-npot.html
@@ -3,7 +3,6 @@
 <html>
 <head>
 <title>WebGL Non-Power of 2 texture conformance test.</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"> </script>
 <script src="resources/webgl-test-utils.js"> </script>
diff --git a/LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized.html b/LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized.html
index f74961c..06c909c 100644
--- a/LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized.html
+++ b/LayoutTests/fast/canvas/webgl/texture-transparent-pixels-initialized.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/triangle.html b/LayoutTests/fast/canvas/webgl/triangle.html
index ed635f6..1acb89a 100644
--- a/LayoutTests/fast/canvas/webgl/triangle.html
+++ b/LayoutTests/fast/canvas/webgl/triangle.html
@@ -3,7 +3,6 @@
 <html>
   <head>
     <title>Rendering Test</title>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="resources/webgl-test.js"> </script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/type-conversion-test.html b/LayoutTests/fast/canvas/webgl/type-conversion-test.html
index 85a087c..f61a9ab 100644
--- a/LayoutTests/fast/canvas/webgl/type-conversion-test.html
+++ b/LayoutTests/fast/canvas/webgl/type-conversion-test.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/canvas/webgl/uniform-array-length-overflow.html b/LayoutTests/fast/canvas/webgl/uniform-array-length-overflow.html
index 2618bd7..0487a6f 100644
--- a/LayoutTests/fast/canvas/webgl/uniform-array-length-overflow.html
+++ b/LayoutTests/fast/canvas/webgl/uniform-array-length-overflow.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/uniform-location.html b/LayoutTests/fast/canvas/webgl/uniform-location.html
index 060d43f..ce89618 100644
--- a/LayoutTests/fast/canvas/webgl/uniform-location.html
+++ b/LayoutTests/fast/canvas/webgl/uniform-location.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/uninitialized-test.html b/LayoutTests/fast/canvas/webgl/uninitialized-test.html
index 18eb165..8679efd 100644
--- a/LayoutTests/fast/canvas/webgl/uninitialized-test.html
+++ b/LayoutTests/fast/canvas/webgl/uninitialized-test.html
@@ -3,7 +3,6 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 <title>WebGL Uninitialized GL Resources Tests</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize.html b/LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize.html
index dc50f92..feeeeb48 100644
--- a/LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize.html
+++ b/LayoutTests/fast/canvas/webgl/viewport-unchanged-upon-resize.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script id="vshader" type="x-shader/x-vertex">
diff --git a/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html b/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html
index 4d445a5..af8a41c 100644
--- a/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html
+++ b/LayoutTests/fast/canvas/webgl/webgl-array-invalid-ranges.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 </head>
diff --git a/LayoutTests/fast/canvas/webgl/webgl-specific.html b/LayoutTests/fast/canvas/webgl/webgl-specific.html
index 5afd7c0..f54f2dd 100644
--- a/LayoutTests/fast/canvas/webgl/webgl-specific.html
+++ b/LayoutTests/fast/canvas/webgl/webgl-specific.html
@@ -3,7 +3,6 @@
 <head>
 <meta charset="utf-8">
 <title>WebGL GLES2 difference test.</title>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/webgl-test.js"></script>
 <script src="resources/webgl-test-utils.js"></script>
diff --git a/LayoutTests/fast/cookies/local-file-can-set-cookies.html b/LayoutTests/fast/cookies/local-file-can-set-cookies.html
index 0f964c3..3e02be5 100644
--- a/LayoutTests/fast/cookies/local-file-can-set-cookies.html
+++ b/LayoutTests/fast/cookies/local-file-can-set-cookies.html
@@ -1,7 +1,6 @@
 <html>
 <head>
 <title>Local File Can Set Cookies</title>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 
diff --git a/LayoutTests/fast/css/CSSPrimitiveValue-exceptions.html b/LayoutTests/fast/css/CSSPrimitiveValue-exceptions.html
index ba24415..7e8ab8b 100644
--- a/LayoutTests/fast/css/CSSPrimitiveValue-exceptions.html
+++ b/LayoutTests/fast/css/CSSPrimitiveValue-exceptions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/background-clip-text.html b/LayoutTests/fast/css/background-clip-text.html
index b61bd85..c0b7f2b 100644
--- a/LayoutTests/fast/css/background-clip-text.html
+++ b/LayoutTests/fast/css/background-clip-text.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/border-start-end.html b/LayoutTests/fast/css/border-start-end.html
index 2f89e1e..7dfc39b 100644
--- a/LayoutTests/fast/css/border-start-end.html
+++ b/LayoutTests/fast/css/border-start-end.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/box-sizing-backwards-compat-prefix.html b/LayoutTests/fast/css/box-sizing-backwards-compat-prefix.html
index b0e2c86..57ba2eb 100644
--- a/LayoutTests/fast/css/box-sizing-backwards-compat-prefix.html
+++ b/LayoutTests/fast/css/box-sizing-backwards-compat-prefix.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/button-height.html b/LayoutTests/fast/css/button-height.html
index b08d2e0..f311eec 100644
--- a/LayoutTests/fast/css/button-height.html
+++ b/LayoutTests/fast/css/button-height.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #button3, #button5 { height: 40px; }
diff --git a/LayoutTests/fast/css/counters/2displays-expected.txt b/LayoutTests/fast/css/counters/2displays-expected.txt
index 52d7c5c..f111228 100644
--- a/LayoutTests/fast/css/counters/2displays-expected.txt
+++ b/LayoutTests/fast/css/counters/2displays-expected.txt
@@ -1,6 +1,10 @@
 This test passes if both the first and the second counter are 1000.
 
-PASS layoutTestController.counterValueForElementById('testView') is '1000 1000'
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+PASS successfullyParsed is true
 
 TEST COMPLETE
+PASS layoutTestController.counterValueForElementById('testView') is '1000 1000'
 
diff --git a/LayoutTests/fast/css/counters/2displays.html b/LayoutTests/fast/css/counters/2displays.html
index 0e4507a..365e9a0 100644
--- a/LayoutTests/fast/css/counters/2displays.html
+++ b/LayoutTests/fast/css/counters/2displays.html
@@ -1,47 +1,50 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
 <html>
- <head>
-  <title>2 renderers 1 counter reset failure.</title>
-  <meta name="assert" content="When a Counter node is destroyed all its
-display renderers must be reset.">
-  <style type="text/css">
-   #testView:before {
-    content: "First Counter:" counters(test, ".") " Second Counter:" counters(test, ".");
-   }
-   .counter1 {
-    counter-reset: test 1;
-   }
-   .counter1000 {
-    counter-reset: test 1000;
-   }
-  </style>
-  <script src="../../js/resources/js-test-pre.js"></script>
-  <script type="text/javascript">
+<head>
+<title>2 renderers 1 counter reset failure.</title>
+<meta name="assert" content="When a Counter node is destroyed all its display renderers must be reset.">
+<style type="text/css">
 
-  if (window.layoutTestController) {
-      layoutTestController.dumpAsText();
-      layoutTestController.waitUntilDone();
-  }
+#testView:before {
+  content: "First Counter:" counters(test, ".") " Second Counter:" counters(test, ".");
+}
+.counter1 {
+  counter-reset: test 1;
+}
+.counter1000 {
+  counter-reset: test 1000;
+}
 
-  function run()
-  {
-      document.getElementById("testView").setAttribute("class", "counter1000");
-      if (!window.layoutTestController)
-          return;
-      shouldBe("layoutTestController.counterValueForElementById('testView')", "'1000 1000'");
+</style>
+<script src="../../js/resources/js-test-pre.js"></script>
+<script type="text/javascript">
 
-      debug('');
-      debug('TEST COMPLETE');
-      if (window.layoutTestController)
-          layoutTestController.notifyDone();
-  }
-  </script>
- </head>
+description("This test passes if both the first and the second counter are 1000.");
 
- <body onload="setTimeout('run()', 0);">
- <p>This test passes if both the first and the second counter are 1000.</p>
- <div id="testView" class="counter1">
- </div>
- <div id="console"></div>
- </body>
+if (window.layoutTestController) {
+    layoutTestController.dumpAsText();
+    layoutTestController.waitUntilDone();
+}
+
+function run()
+{
+    document.getElementById("testView").setAttribute("class", "counter1000");
+    if (!window.layoutTestController)
+        return;
+    shouldBe("layoutTestController.counterValueForElementById('testView')", "'1000 1000'");
+
+    if (window.layoutTestController)
+        layoutTestController.notifyDone();
+}
+
+window.onload = run;
+
+var successfullyParsed = true;
+
+</script>
+</head>
+<body>
+<div id="testView" class="counter1"></div>
+<script src="../../js/resources/js-test-post.js"></script>
+</body>
 </html>
diff --git a/LayoutTests/fast/css/counters/counter-cssText.html b/LayoutTests/fast/css/counters/counter-cssText.html
index a7479e9..a960473 100644
--- a/LayoutTests/fast/css/counters/counter-cssText.html
+++ b/LayoutTests/fast/css/counters/counter-cssText.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel=stylesheet href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 body {
@@ -29,7 +28,7 @@
 <body>
 <script>
 description("Test the cssText output of counter-valued CSSPrimitiveValues");
-var rules = document.styleSheets[1].cssRules;
+var rules = document.styleSheets[0].cssRules;
 shouldBeEqualToString("rules[2].style.cssText", "content: counter(section, decimal); ");
 shouldBeEqualToString("rules[3].style.cssText", "content: counters(section, ':', decimal); ");
 shouldBeEqualToString("rules[4].style.cssText", "content: counter(section, lower-roman); ");
diff --git a/LayoutTests/fast/css/counters/getCounterValue.html b/LayoutTests/fast/css/counters/getCounterValue.html
index bc2fa19..76c0b20 100644
--- a/LayoutTests/fast/css/counters/getCounterValue.html
+++ b/LayoutTests/fast/css/counters/getCounterValue.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel=stylesheet href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 body {
@@ -34,7 +33,7 @@
     return cssRule.style.getPropertyCSSValue('content')[0].getCounterValue();
 }
 
-var rules = document.styleSheets[1].cssRules;
+var rules = document.styleSheets[0].cssRules;
 var counters = [];
 for (var i = 2; i < rules.length; i++) {
     counters.push(getCounter(rules[i]));
diff --git a/LayoutTests/fast/css/css-selector-text.html b/LayoutTests/fast/css/css-selector-text.html
index 940a0db..fdf9605 100644
--- a/LayoutTests/fast/css/css-selector-text.html
+++ b/LayoutTests/fast/css/css-selector-text.html
@@ -1,6 +1,5 @@
 <html>
 <head id="head">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/css-set-selector-text.html b/LayoutTests/fast/css/css-set-selector-text.html
index 9d9eb92..1faa74c 100644
--- a/LayoutTests/fast/css/css-set-selector-text.html
+++ b/LayoutTests/fast/css/css-set-selector-text.html
@@ -1,6 +1,5 @@
 <html>
 <head id="head">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/css3-nth-space.html b/LayoutTests/fast/css/css3-nth-space.html
index a88c372..c55ee7b 100644
--- a/LayoutTests/fast/css/css3-nth-space.html
+++ b/LayoutTests/fast/css/css3-nth-space.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 div.class { background-color: red; }
diff --git a/LayoutTests/fast/css/css3-nth-tokens-script.html b/LayoutTests/fast/css/css3-nth-tokens-script.html
index 81273ad..d87ea48 100644
--- a/LayoutTests/fast/css/css3-nth-tokens-script.html
+++ b/LayoutTests/fast/css/css3-nth-tokens-script.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 span.c1:nth-of-type(2n -1){ color: red; }
diff --git a/LayoutTests/fast/css/css3-nth-tokens-style.html b/LayoutTests/fast/css/css3-nth-tokens-style.html
index 6829b49..247d331 100644
--- a/LayoutTests/fast/css/css3-nth-tokens-style.html
+++ b/LayoutTests/fast/css/css3-nth-tokens-style.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 span.c1:nth-of-type(2n + 1){ color: red; }
diff --git a/LayoutTests/fast/css/device-aspect-ratio.html b/LayoutTests/fast/css/device-aspect-ratio.html
index b2b98d8..718a1fc 100644
--- a/LayoutTests/fast/css/device-aspect-ratio.html
+++ b/LayoutTests/fast/css/device-aspect-ratio.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head id="myhead">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/css/dynamic-pseudo-class.html b/LayoutTests/fast/css/dynamic-pseudo-class.html
index f1089b0..c6426b5 100644
--- a/LayoutTests/fast/css/dynamic-pseudo-class.html
+++ b/LayoutTests/fast/css/dynamic-pseudo-class.html
@@ -1,6 +1,5 @@
 <html>
 <head id="head">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style type="text/css">
 li:only-child { color: red; }
diff --git a/LayoutTests/fast/css/first-letter-nested.html b/LayoutTests/fast/css/first-letter-nested.html
index f58f4f0..67b9fc1 100644
--- a/LayoutTests/fast/css/first-letter-nested.html
+++ b/LayoutTests/fast/css/first-letter-nested.html
@@ -6,7 +6,6 @@
 .test:first-letter { color: green; }
 .boxed { border: solid 1px; }
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/first-letter-removed-added.html b/LayoutTests/fast/css/first-letter-removed-added.html
index 2f0f28d..092ae34 100644
--- a/LayoutTests/fast/css/first-letter-removed-added.html
+++ b/LayoutTests/fast/css/first-letter-removed-added.html
@@ -8,7 +8,6 @@
     .boxed { border: solid 1px; }
     .bef:before { content:"Before "; }
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/font-face-data-uri.html b/LayoutTests/fast/css/font-face-data-uri.html
index b50c1d0..e238344 100644
--- a/LayoutTests/fast/css/font-face-data-uri.html
+++ b/LayoutTests/fast/css/font-face-data-uri.html
@@ -15,7 +15,6 @@
     src:url("data:font/ttf;base64,AAEAAAALAIAAAwAwT1MvMnhQSo0AAAE4AAAAYGNtYXAP1hZGAAAFbAAABnJnYXNwABcACQAAMLAAAAAQZ2x5ZkmzdNoAAAvgAAAaZGhlYWTWok4cAAAAvAAAADZoaGVhBwoEFgAAAPQAAAAkaG10eLkgAH0AAAGYAAAD1GxvY2EgdSciAAAmRAAAAextYXhwAPgACQAAARgAAAAgbmFtZX4UjLgAACgwAAAGaHBvc3SN0B2KAAAumAAAAhgAAQAAAAEAQhIXUWdfDzz1AAkD6AAAAACzb19ZAAAAAMAtq0kAAP84A+gDIAAAAAMAAgAAAAAAAAABAAADIP84AAAD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAA9QABAAAA9QAIAAIAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAID6AGQAAUAAAK8AooAAACPArwCigAAAcUAMgEDAAACAAQJAAAAAAAAgAAArxAAIEgAAAAAAAAAAFczQwAAQAAg8AIDIP84AAADIADIIAABEUAAAAADIAMgAAAAIAAAA+gAfQAAAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAAAAADAAAAAwAABEwAAQAAAAAAHAADAAEAAAImAAYCCgAAAAABAAABAAAAAAAAAAAAAAAAAAAAAQACAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAEAAUABgAHAAgACQAAAAoACwAMAA0ADgAPABAAEQASABMAFAAVABYAFwAYABkAGgAbABwAHQAeAB8AIAAhACIAIwAkACUAJgAnACgAKQAqACsALAAtAC4ALwAwADEAMgAzADQANQA2ADcAOAA5ADoAOwA8AD0APgA/AEAAQQBCAEMARABFAEYARwBIAEkASgBLAEwATQBOAE8AUABRAFIAUwBUAFUAVgBXAFgAWQBaAFsAXABdAF4AXwBgAAAAYQBiAGMAZABlAGYAZwBoAGkAagBrAGwAbQBuAG8AcABxAHIAcwB0AHUAdgB3AHgAeQB6AHsAfAB9AH4AfwCAANsAgQCCAIMAhADdAIUAhgCHAIgA4wCJAIoA6gCLAIwA6ACNAOsA7ACOAI8A5ADmAOUA1ADpAJAAkQDTAJIAkwCUAJUAlgDnANEA7QDSAJcAmADeAAMAmgCbAJwAzgDPANUA1gDYANkAnQCeAJ8A7gCgANAA4gChAOAA4QAAAAAA3ACiANcA2gDfAKMApAClAKYApwCoAKkAqgCrAKwArQAAAK4ArwCwALEAsgCzALQAtQC2ALcAuAC5ALoAuwC8AAQCJgAAAE4AQAAFAA4AJgB+AP8BMQFTAXgBkgLHAskC3QOUA6kDvAPAIBAgFCAaIB4gIiAmIDAgOiBEISIhJiICIgYiDyISIhoiHiIrIkgiYCJlIvIlyvAC//8AAAAgACgAoAExAVIBeAGSAsYCyQLYA5QDqQO8A8AgECATIBggHCAgICYgMCA5IEQhIiEmIgIiBiIPIhEiGSIeIisiSCJgImQi8iXK8AD////j/+IAAP+B/3z/WP8/AAD97AAA/T79KvzT/RTf/+DCAADgvOC74Ljgr+Cn4J7fwd+t3uLezN7WAAAAAN7K3r7epd6K3ofd+9skEO8AAQAAAAAASgAAAAAAAAAAAQAAAAEAAAAAAAAAAAAAAAAAAP4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwA7gAAAAAAAAAAAAAAAAAAAAAAAACZAJUAggCDAKEAjgC9AIQAigCIAJAAlwCWAMQAhwC1AIEAjQDHAMgAiQCPAIUAogC5AMYAkQCYAMoAyQDLAJQAmgClAKMAmwBhAGIAiwBjAKcAZACkAKYAqwCoAKkAqgC+AGUArgCsAK0AnABmAMUAjACxAK8AsABnAMAAwgCGAGkAaABqAGwAawBtAJIAbgBwAG8AcQByAHQAcwB1AHYAvwB3AHkAeAB6AHwAewCfAJMAfgB9AH8AgADBAMMAoACzALwAtgC3ALgAuwC0ALoAnQCeANcA5gDEAKIA5wAEAiYAAABOAEAABQAOACYAfgD/ATEBUwF4AZICxwLJAt0DlAOpA7wDwCAQIBQgGiAeICIgJiAwIDogRCEiISYiAiIGIg8iEiIaIh4iKyJIImAiZSLyJcrwAv//AAAAIAAoAKABMQFSAXgBkgLGAskC2AOUA6kDvAPAIBAgEyAYIBwgICAmIDAgOSBEISIhJiICIgYiDyIRIhkiHiIrIkgiYCJkIvIlyvAA////4//iAAD/gf98/1j/PwAA/ewAAP0+/Sr80/0U3//gwgAA4Lzgu+C44K/gp+Ce38Hfrd7i3sze1gAAAADeyt6+3qXeit6H3fvbJBDvAAEAAAAAAEoAAAAAAAAAAAEAAAABAAAAAAAAAAAAAAAAAAD+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAO4AAAAAAAAAAAAAAAAAAAAAAAAAmQCVAIIAgwChAI4AvQCEAIoAiACQAJcAlgDEAIcAtQCBAI0AxwDIAIkAjwCFAKIAuQDGAJEAmADKAMkAywCUAJoApQCjAJsAYQBiAIsAYwCnAGQApACmAKsAqACpAKoAvgBlAK4ArACtAJwAZgDFAIwAsQCvALAAZwDAAMIAhgBpAGgAagBsAGsAbQCSAG4AcABvAHEAcgB0AHMAdQB2AL8AdwB5AHgAegB8AHsAnwCTAH4AfQB/AIAAwQDDAKAAswC8ALYAtwC4ALsAtAC6AJ0AngDXAOYAxACiAOcAAAACAH0AAANrAyAAAwAHAAAzESERJSERIX0C7v2PAfT+DAMg/OB9AiYAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AAAAAMAADEhFSED6PwYyAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAAAAAPoAyAAAwAAESERIQPo/BgDIPzgAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAABAAD/OAPoAyAAAwAAESERIQPo/BgDIPwYAAAAAQAA/zgD6AMgAAMAABEhESED6PwYAyD8GAAAAAEAAP84A+gDIAADAAARIREhA+j8GAMg/BgAAAAAABQAFAAUABQAIgAwAD4ATABaAGgAdgCEAJIAoACuALwAygDYAOYA9AECARABHgEsAToBSAFWAWQBcgGAAY4BnAGqAbgBxgHUAeIB8AH+AgwCGgIoAjYCRAJSAmACbgJ8AooCmAKmArQCwgLQAt4C7AL6AwgDFgMkAzIDQANOA1wDagN4A4YDlAOiA7ADvgPMA9oD6AP2BAQEEgQgBC4EPARKBFgEZARyBIAEjgScBKoEuATGBNQE4gTwBP4FDAUaBSgFNgVEBVIFYAVuBXwFigWYBaYFtAXCBdAF3gXsBfoGCAYWBiQGMgZABk4GXAZqBngGhgaUBqIGsAa+BswG2gboBvYHBAcSByAHLgc8B0oHWAdmB3QHggeQB54HrAe6B8gH1gfkB/IIAAgOCBwIKgg4CDgIRghUCGIIcAh+CIwImgioCLYIxAjSCOAI7gj8CQoJGAkmCTQJQglQCV4JbAl6CYgJlgmkCbIJwAnOCdwJ6gn4CgYKFAoiCjAKPgpMCloKaAp2CoQKkgqgCq4KvArKCtgK5gr0CwILEAseCywLOgtIC1YLZAtyC4ALjgucC6oLuAvGC9QL4gvwC/4MDAwaDCgMNgxEDFIMYAxuDHwMigyYDKYMtAzCDNAM3gzsDPoNCA0WDSQNMgAAABsBSgAAAAAAAAAAAZ4AAAAAAAAAAAABAAgBngAAAAAAAAACAA4BpgAAAAAAAAADACABtAAAAAAAAAAEAAgB1AAAAAAAAAAFABYB3AAAAAAAAAAGAAgB8gABAAAAAAAAAM8B+gABAAAAAAABAAQCyQABAAAAAAACAAcCzQABAAAAAAADABAC1AABAAAAAAAEAAQC5AABAAAAAAAFAAsC6AABAAAAAAAGAAQC8wABAAAAAAAQAAQC9wABAAAAAAARAAcC+wABAAAAAAASAAQDAgADAAEECQAAAZ4DBgADAAEECQABAAgEpAADAAEECQACAA4ErAADAAEECQADACAEugADAAEECQAEAAgE2gADAAEECQAFABYE4gADAAEECQAGAAgE+AADAAEECQAQAAgFAAADAAEECQARAA4FCAADAAEECQASAAgFFgBNAG8AcwB0ACAAYwBoAGEAcgBhAGMAdABlAHIAcwAgAGEAcgBlACAAdABoAGUAIABlAG0AIABzAHEAdQBhAHIAZQAsACAAZQB4AGMAZQBwAHQAIAAmAEUAQQBjAHUAdABlACAAYQBuAGQAIAAiAHAAIgAsACAAdwBoAGkAYwBoACAAcwBoAG8AdwAgAGEAcwBjAGUAbgB0AC8AZABlAHMAYwBlAG4AdAAgAGYAcgBvAG0AIAB0AGgAZQAgAGIAYQBzAGUAbABpAG4AZQAuACAAVQBzAGUAZgB1AGwAIABmAG8AcgAgAHQAZQBzAHQAaQBuAGcAIABjAG8AbQBwAG8AcwBpAHQAaQBvAG4AIABzAHkAcwB0AGUAbQBzAC4AIABQAHIAbwBkAHUAYwBlAGQAIABiAHkAIABUAG8AZABkACAARgBhAGgAcgBuAGUAcgAgAGYAbwByACAAdABoAGUAIABDAFMAUwAgAFMAYQBtAHUAcgBhAGkAJwBzACAAYgByAG8AdwBzAGUAcgAgAHQAZQBzAHQAaQBuAGcALgBBAGgAZQBtAFIAZQBnAHUAbABhAHIAVgBlAHIAcwBpAG8AbgAgADEALgAxACAAQQBoAGUAbQBBAGgAZQBtAFYAZQByAHMAaQBvAG4AIAAxAC4AMQBBAGgAZQBtTW9zdCBjaGFyYWN0ZXJzIGFyZSB0aGUgZW0gc3F1YXJlLCBleGNlcHQgJkVBY3V0ZSBhbmQgInAiLCB3aGljaCBzaG93IGFzY2VudC9kZXNjZW50IGZyb20gdGhlIGJhc2VsaW5lLiBVc2VmdWwgZm9yIHRlc3RpbmcgY29tcG9zaXRpb24gc3lzdGVtcy4gUHJvZHVjZWQgYnkgVG9kZCBGYWhybmVyIGZvciB0aGUgQ1NTIFNhbXVyYWkncyBicm93c2VyIHRlc3RpbmcuQWhlbVJlZ3VsYXJWZXJzaW9uIDEuMSBBaGVtQWhlbVZlcnNpb24gMS4xQWhlbUFoZW1SZWd1bGFyQWhlbQBNAG8AcwB0ACAAYwBoAGEAcgBhAGMAdABlAHIAcwAgAGEAcgBlACAAdABoAGUAIABlAG0AIABzAHEAdQBhAHIAZQAsACAAZQB4AGMAZQBwAHQAIAAmAEUAQQBjAHUAdABlACAAYQBuAGQAIAAiAHAAIgAsACAAdwBoAGkAYwBoACAAcwBoAG8AdwAgAGEAcwBjAGUAbgB0AC8AZABlAHMAYwBlAG4AdAAgAGYAcgBvAG0AIAB0AGgAZQAgAGIAYQBzAGUAbABpAG4AZQAuACAAVQBzAGUAZgB1AGwAIABmAG8AcgAgAHQAZQBzAHQAaQBuAGcAIABjAG8AbQBwAG8AcwBpAHQAaQBvAG4AIABzAHkAcwB0AGUAbQBzAC4AIABQAHIAbwBkAHUAYwBlAGQAIABiAHkAIABUAG8AZABkACAARgBhAGgAcgBuAGUAcgAgAGYAbwByACAAdABoAGUAIABDAFMAUwAgAFMAYQBtAHUAcgBhAGkAJwBzACAAYgByAG8AdwBzAGUAcgAgAHQAZQBzAHQAaQBuAGcALgBBAGgAZQBtAFIAZQBnAHUAbABhAHIAVgBlAHIAcwBpAG8AbgAgADEALgAxACAAQQBoAGUAbQBBAGgAZQBtAFYAZQByAHMAaQBvAG4AIAAxAC4AMQBBAGgAZQBtAEEAaABlAG0AUgBlAGcAdQBsAGEAcgBBAGgAZQBtAAIAAAAAAAD/ewAUAAAAAQAAAAAAAAAAAAAAAAAAAAAA9QAAAQIAAgADAAQABQAGAAcACAAJAAsADAANAA4ADwAQABEAEgATABQAFQAWABcAGAAZABoAGwAcAB0AHgAfACAAIQAiACMAJAAlACYAJwAoACkAKgArACwALQAuAC8AMAAxADIAMwA0ADUANgA3ADgAOQA6ADsAPAA9AD4APwBAAEEAQgBDAEQARQBGAEcASABJAEoASwBMAE0ATgBPAFAAUQBSAFMAVABVAFYAVwBYAFkAWgBbAFwAXQBeAF8AYABhAGIAYwBkAGUAZgBnAGgAaQBqAGsAbABtAG4AbwBwAHEAcgBzAHQAdQB2AHcAeAB5AHoAewB8AH0AfgB/AIAAgQCDAIQAhQCGAIgAiQCKAIsAjQCOAJAAkQCTAJYAlwCdAJ4AoAChAKIAowCkAKkAqgCsAK0ArgCvALYAtwC4ALoAvQDDAMcAyADJAMoAywDMAM0AzgDPANAA0QDTANQA1QDWANcA2ADZANoA2wDcAN0A3gDfAOAA4QDoAOkA6gDrAOwA7QDuAO8A8ADxAPIA8wD0APUA9gAAAAAAsACxALsApgCoAJ8AmwCyALMAxAC0ALUAxQCCAMIAhwCrAMYAvgC/ALwAjACYAJoAmQClAJIAnACPAJQAlQCnALkA0gDAAMEBAwACAQQETlVMTAJIVANERUwAAAADAAgAAgAQAAH//wAD/EOT");
 }
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="warmUpAndTest()">
diff --git a/LayoutTests/fast/css/font-face-descending-unicode-range.html b/LayoutTests/fast/css/font-face-descending-unicode-range.html
index 90e6651..1a381f2 100644
--- a/LayoutTests/fast/css/font-face-descending-unicode-range.html
+++ b/LayoutTests/fast/css/font-face-descending-unicode-range.html
@@ -9,7 +9,6 @@
     unicode-range: U+062-60;
 }
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/font-face-descriptor-multiple-values-parsing.html b/LayoutTests/fast/css/font-face-descriptor-multiple-values-parsing.html
index dbc5d98..1613f05 100644
--- a/LayoutTests/fast/css/font-face-descriptor-multiple-values-parsing.html
+++ b/LayoutTests/fast/css/font-face-descriptor-multiple-values-parsing.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <style type="text/css"></style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/font-face-download-error.html b/LayoutTests/fast/css/font-face-download-error.html
index 9506085..2f6c3d0 100644
--- a/LayoutTests/fast/css/font-face-download-error.html
+++ b/LayoutTests/fast/css/font-face-download-error.html
@@ -53,7 +53,6 @@
 }
 
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="runTest()">
diff --git a/LayoutTests/fast/css/font-face-font-family-descriptor.html b/LayoutTests/fast/css/font-face-font-family-descriptor.html
index 3abb79b..a11491e 100644
--- a/LayoutTests/fast/css/font-face-font-family-descriptor.html
+++ b/LayoutTests/fast/css/font-face-font-family-descriptor.html
@@ -13,7 +13,6 @@
     src: local(Courier);
 }
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="test()">
diff --git a/LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range.html b/LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range.html
index 1bc34cf..81afca7 100644
--- a/LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range.html
+++ b/LayoutTests/fast/css/font-face-multiple-ranges-for-unicode-range.html
@@ -85,7 +85,6 @@
 }
 
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/font-family-initial.html b/LayoutTests/fast/css/font-family-initial.html
index bd64cf4..bec9eea 100644
--- a/LayoutTests/fast/css/font-family-initial.html
+++ b/LayoutTests/fast/css/font-family-initial.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
-<head>    
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
+<head>
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 if (window.layoutTestController) {
diff --git a/LayoutTests/fast/css/getComputedStyle/computed-style-border-image.html b/LayoutTests/fast/css/getComputedStyle/computed-style-border-image.html
index 7e00f77..d4d2efc 100644
--- a/LayoutTests/fast/css/getComputedStyle/computed-style-border-image.html
+++ b/LayoutTests/fast/css/getComputedStyle/computed-style-border-image.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getComputedStyle/computed-style-font-family-monospace.html b/LayoutTests/fast/css/getComputedStyle/computed-style-font-family-monospace.html
index 7eec994..3acd9d6 100644
--- a/LayoutTests/fast/css/getComputedStyle/computed-style-font-family-monospace.html
+++ b/LayoutTests/fast/css/getComputedStyle/computed-style-font-family-monospace.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getComputedStyle/computed-style-font.html b/LayoutTests/fast/css/getComputedStyle/computed-style-font.html
index cdb26cd..4d7345a 100644
--- a/LayoutTests/fast/css/getComputedStyle/computed-style-font.html
+++ b/LayoutTests/fast/css/getComputedStyle/computed-style-font.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getComputedStyle/computed-style-page-break-inside.html b/LayoutTests/fast/css/getComputedStyle/computed-style-page-break-inside.html
index e7e5120..1a1113e 100644
--- a/LayoutTests/fast/css/getComputedStyle/computed-style-page-break-inside.html
+++ b/LayoutTests/fast/css/getComputedStyle/computed-style-page-break-inside.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom.html b/LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom.html
index a13b6a1..d860d37 100644
--- a/LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom.html
+++ b/LayoutTests/fast/css/getComputedStyle/computed-style-with-zoom.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getComputedStyle/font-family-fallback-reset.html b/LayoutTests/fast/css/getComputedStyle/font-family-fallback-reset.html
index 6742192..94370aa 100644
--- a/LayoutTests/fast/css/getComputedStyle/font-family-fallback-reset.html
+++ b/LayoutTests/fast/css/getComputedStyle/font-family-fallback-reset.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-text-decoration.html b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-text-decoration.html
index 8e77991..4034cec 100644
--- a/LayoutTests/fast/css/getComputedStyle/getComputedStyle-text-decoration.html
+++ b/LayoutTests/fast/css/getComputedStyle/getComputedStyle-text-decoration.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getComputedStyle/script-tests/TEMPLATE.html b/LayoutTests/fast/css/getComputedStyle/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/css/getComputedStyle/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/css/getComputedStyle/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getFloatValueForUnit.html b/LayoutTests/fast/css/getFloatValueForUnit.html
index 72dcb8b..bea69c8 100644
--- a/LayoutTests/fast/css/getFloatValueForUnit.html
+++ b/LayoutTests/fast/css/getFloatValueForUnit.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/getPropertyValue-border.html b/LayoutTests/fast/css/getPropertyValue-border.html
index 0920588..b78e3e7 100644
--- a/LayoutTests/fast/css/getPropertyValue-border.html
+++ b/LayoutTests/fast/css/getPropertyValue-border.html
@@ -11,7 +11,6 @@
       vertical-align: middle;
    }
   </style>
-  <link rel="stylesheet" href="../js/resources/js-test-style.css">
   <script src="../js/resources/js-test-pre.js"></script>
   <script>
     if (window.layoutTestController)
diff --git a/LayoutTests/fast/css/html-attr-case-sensitivity.html b/LayoutTests/fast/css/html-attr-case-sensitivity.html
index 7299f00f..b4a3836 100644
--- a/LayoutTests/fast/css/html-attr-case-sensitivity.html
+++ b/LayoutTests/fast/css/html-attr-case-sensitivity.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/insertRule-font-face.html b/LayoutTests/fast/css/insertRule-font-face.html
index 9b74203..66448fd 100644
--- a/LayoutTests/fast/css/insertRule-font-face.html
+++ b/LayoutTests/fast/css/insertRule-font-face.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <style type="text/css"></style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/insertRule-media.html b/LayoutTests/fast/css/insertRule-media.html
index 614847d..3a817ac 100644
--- a/LayoutTests/fast/css/insertRule-media.html
+++ b/LayoutTests/fast/css/insertRule-media.html
@@ -3,7 +3,6 @@
 <head>
 <link rel="help" href="http://dev.w3.org/csswg/cssom/#serialize-a-list-of-media-queries" />
 <style type="text/css"></style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/invalid-appearance-progress-bar-meter.html b/LayoutTests/fast/css/invalid-appearance-progress-bar-meter.html
index e1b256e..91ad8f5 100644
--- a/LayoutTests/fast/css/invalid-appearance-progress-bar-meter.html
+++ b/LayoutTests/fast/css/invalid-appearance-progress-bar-meter.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/invalid-predefined-color.html b/LayoutTests/fast/css/invalid-predefined-color.html
index 867ecc5..4e14ed9b 100644
--- a/LayoutTests/fast/css/invalid-predefined-color.html
+++ b/LayoutTests/fast/css/invalid-predefined-color.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body style="color: black">
diff --git a/LayoutTests/fast/css/invalid-rule-value.html b/LayoutTests/fast/css/invalid-rule-value.html
index f143b09..c56ef1e 100644
--- a/LayoutTests/fast/css/invalid-rule-value.html
+++ b/LayoutTests/fast/css/invalid-rule-value.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/last-child-innerhtml.html b/LayoutTests/fast/css/last-child-innerhtml.html
index 4cab7d7..08859e6c 100644
--- a/LayoutTests/fast/css/last-child-innerhtml.html
+++ b/LayoutTests/fast/css/last-child-innerhtml.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 div p:first-child {
diff --git a/LayoutTests/fast/css/legacy-opacity-styles.html b/LayoutTests/fast/css/legacy-opacity-styles.html
index b7fbb6c..f7f307c 100644
--- a/LayoutTests/fast/css/legacy-opacity-styles.html
+++ b/LayoutTests/fast/css/legacy-opacity-styles.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/margin-start-end.html b/LayoutTests/fast/css/margin-start-end.html
index 56e24b9..b028541 100644
--- a/LayoutTests/fast/css/margin-start-end.html
+++ b/LayoutTests/fast/css/margin-start-end.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/max-device-aspect-ratio.html b/LayoutTests/fast/css/max-device-aspect-ratio.html
index 97783f0..71a8d2b 100644
--- a/LayoutTests/fast/css/max-device-aspect-ratio.html
+++ b/LayoutTests/fast/css/max-device-aspect-ratio.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head id="myhead">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/css/max-height-and-max-width.html b/LayoutTests/fast/css/max-height-and-max-width.html
index d14729a..7bd9ba3 100644
--- a/LayoutTests/fast/css/max-height-and-max-width.html
+++ b/LayoutTests/fast/css/max-height-and-max-width.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head id="myhead">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/css/min-device-aspect-ratio.html b/LayoutTests/fast/css/min-device-aspect-ratio.html
index c1bc9ce..9ec850f 100644
--- a/LayoutTests/fast/css/min-device-aspect-ratio.html
+++ b/LayoutTests/fast/css/min-device-aspect-ratio.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head id="myhead">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/css/overflow-property.html b/LayoutTests/fast/css/overflow-property.html
index dd238ff..bae222c 100644
--- a/LayoutTests/fast/css/overflow-property.html
+++ b/LayoutTests/fast/css/overflow-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/padding-no-renderer.html b/LayoutTests/fast/css/padding-no-renderer.html
index b1a6e78..5da67fd 100644
--- a/LayoutTests/fast/css/padding-no-renderer.html
+++ b/LayoutTests/fast/css/padding-no-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
   #test1 { padding: 10px; display: none; }
diff --git a/LayoutTests/fast/css/padding-start-end.html b/LayoutTests/fast/css/padding-start-end.html
index 5e86f0b..9eed783 100644
--- a/LayoutTests/fast/css/padding-start-end.html
+++ b/LayoutTests/fast/css/padding-start-end.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/parsing-color-correction.html b/LayoutTests/fast/css/parsing-color-correction.html
index 122b051..5a29c7e 100644
--- a/LayoutTests/fast/css/parsing-color-correction.html
+++ b/LayoutTests/fast/css/parsing-color-correction.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <style type="text/css"></style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/parsing-text-rendering.html b/LayoutTests/fast/css/parsing-text-rendering.html
index 61d2dc8..86cc486 100644
--- a/LayoutTests/fast/css/parsing-text-rendering.html
+++ b/LayoutTests/fast/css/parsing-text-rendering.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/parsing-webkit-font-smoothing.html b/LayoutTests/fast/css/parsing-webkit-font-smoothing.html
index 2b41c4d..1f7e7f4 100644
--- a/LayoutTests/fast/css/parsing-webkit-font-smoothing.html
+++ b/LayoutTests/fast/css/parsing-webkit-font-smoothing.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <style type="text/css"></style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/pseudo-any.html b/LayoutTests/fast/css/pseudo-any.html
index da0968e..778f44a 100644
--- a/LayoutTests/fast/css/pseudo-any.html
+++ b/LayoutTests/fast/css/pseudo-any.html
@@ -1,5 +1,4 @@
 <!DOCTYPE HTML>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 :-webkit-any(h1),
diff --git a/LayoutTests/fast/css/pseudo-default-001.html b/LayoutTests/fast/css/pseudo-default-001.html
index e758953..2f32bec 100644
--- a/LayoutTests/fast/css/pseudo-default-001.html
+++ b/LayoutTests/fast/css/pseudo-default-001.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  input:default { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-default-002.html b/LayoutTests/fast/css/pseudo-default-002.html
index 12e7a0b..0c1140a 100644
--- a/LayoutTests/fast/css/pseudo-default-002.html
+++ b/LayoutTests/fast/css/pseudo-default-002.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  input { background: red; }
diff --git a/LayoutTests/fast/css/pseudo-default-003.html b/LayoutTests/fast/css/pseudo-default-003.html
index 81fbb67..2a9f198 100644
--- a/LayoutTests/fast/css/pseudo-default-003.html
+++ b/LayoutTests/fast/css/pseudo-default-003.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  input { background: red; }
diff --git a/LayoutTests/fast/css/pseudo-default-004.html b/LayoutTests/fast/css/pseudo-default-004.html
index a67d746..7463edb 100644
--- a/LayoutTests/fast/css/pseudo-default-004.html
+++ b/LayoutTests/fast/css/pseudo-default-004.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  input { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-in-range-invalid-value.html b/LayoutTests/fast/css/pseudo-in-range-invalid-value.html
index 987b7dd..f9e5865 100644
--- a/LayoutTests/fast/css/pseudo-in-range-invalid-value.html
+++ b/LayoutTests/fast/css/pseudo-in-range-invalid-value.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/pseudo-in-range.html b/LayoutTests/fast/css/pseudo-in-range.html
index 47aa128..8a6d846 100644
--- a/LayoutTests/fast/css/pseudo-in-range.html
+++ b/LayoutTests/fast/css/pseudo-in-range.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/pseudo-invalid-001.html b/LayoutTests/fast/css/pseudo-invalid-001.html
index e3db697..fce205e 100644
--- a/LayoutTests/fast/css/pseudo-invalid-001.html
+++ b/LayoutTests/fast/css/pseudo-invalid-001.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :invalid { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-invalid-002.html b/LayoutTests/fast/css/pseudo-invalid-002.html
index 3a20d5f..16b8059 100644
--- a/LayoutTests/fast/css/pseudo-invalid-002.html
+++ b/LayoutTests/fast/css/pseudo-invalid-002.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :invalid { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-invalid-novalidate-001.html b/LayoutTests/fast/css/pseudo-invalid-novalidate-001.html
index a520a0f..0fe3f7a 100644
--- a/LayoutTests/fast/css/pseudo-invalid-novalidate-001.html
+++ b/LayoutTests/fast/css/pseudo-invalid-novalidate-001.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :invalid { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-not.html b/LayoutTests/fast/css/pseudo-not.html
index 4062113..d73e66a 100644
--- a/LayoutTests/fast/css/pseudo-not.html
+++ b/LayoutTests/fast/css/pseudo-not.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 
diff --git a/LayoutTests/fast/css/pseudo-out-of-range.html b/LayoutTests/fast/css/pseudo-out-of-range.html
index b1ff972..043fd7e 100644
--- a/LayoutTests/fast/css/pseudo-out-of-range.html
+++ b/LayoutTests/fast/css/pseudo-out-of-range.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/pseudo-required-optional-005.html b/LayoutTests/fast/css/pseudo-required-optional-005.html
index fa4c1a3..1e1323c 100644
--- a/LayoutTests/fast/css/pseudo-required-optional-005.html
+++ b/LayoutTests/fast/css/pseudo-required-optional-005.html
@@ -1,7 +1,6 @@
 <html>
 <head>
 <title>required/optional CSS pseudoclasses part 5</title>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <style>
  input:optional { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-required-optional-unapplied.html b/LayoutTests/fast/css/pseudo-required-optional-unapplied.html
index c7682d9..c95db8d 100644
--- a/LayoutTests/fast/css/pseudo-required-optional-unapplied.html
+++ b/LayoutTests/fast/css/pseudo-required-optional-unapplied.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 :required {
diff --git a/LayoutTests/fast/css/pseudo-target-indirect-sibling-001.html b/LayoutTests/fast/css/pseudo-target-indirect-sibling-001.html
index 1411913..0e95662 100644
--- a/LayoutTests/fast/css/pseudo-target-indirect-sibling-001.html
+++ b/LayoutTests/fast/css/pseudo-target-indirect-sibling-001.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 if (window.layoutTestController)
diff --git a/LayoutTests/fast/css/pseudo-target-indirect-sibling-002.html b/LayoutTests/fast/css/pseudo-target-indirect-sibling-002.html
index c4c0f5a..e098a80 100644
--- a/LayoutTests/fast/css/pseudo-target-indirect-sibling-002.html
+++ b/LayoutTests/fast/css/pseudo-target-indirect-sibling-002.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 if (window.layoutTestController)
diff --git a/LayoutTests/fast/css/pseudo-valid-001.html b/LayoutTests/fast/css/pseudo-valid-001.html
index a3008fb..cdcebad 100644
--- a/LayoutTests/fast/css/pseudo-valid-001.html
+++ b/LayoutTests/fast/css/pseudo-valid-001.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :valid { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-valid-002.html b/LayoutTests/fast/css/pseudo-valid-002.html
index c347407..96c638d 100644
--- a/LayoutTests/fast/css/pseudo-valid-002.html
+++ b/LayoutTests/fast/css/pseudo-valid-002.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :valid { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-valid-004.html b/LayoutTests/fast/css/pseudo-valid-004.html
index 70848f4..69b008f 100644
--- a/LayoutTests/fast/css/pseudo-valid-004.html
+++ b/LayoutTests/fast/css/pseudo-valid-004.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :valid { background: red; }
diff --git a/LayoutTests/fast/css/pseudo-valid-007.html b/LayoutTests/fast/css/pseudo-valid-007.html
index b647e54..fc2ec9eb 100644
--- a/LayoutTests/fast/css/pseudo-valid-007.html
+++ b/LayoutTests/fast/css/pseudo-valid-007.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :valid { background: lime; }
diff --git a/LayoutTests/fast/css/pseudo-valid-dynamic.html b/LayoutTests/fast/css/pseudo-valid-dynamic.html
index fb0f1d1..d844891 100644
--- a/LayoutTests/fast/css/pseudo-valid-dynamic.html
+++ b/LayoutTests/fast/css/pseudo-valid-dynamic.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style id="sty">
     input { background: blue; }
diff --git a/LayoutTests/fast/css/pseudo-valid-unapplied.html b/LayoutTests/fast/css/pseudo-valid-unapplied.html
index 13098db..effe7b4 100644
--- a/LayoutTests/fast/css/pseudo-valid-unapplied.html
+++ b/LayoutTests/fast/css/pseudo-valid-unapplied.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
  :valid { background: red; }
diff --git a/LayoutTests/fast/css/script-tests/TEMPLATE.html b/LayoutTests/fast/css/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/css/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/css/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/selector-text-escape.html b/LayoutTests/fast/css/selector-text-escape.html
index d9afc33..20b80d0 100644
--- a/LayoutTests/fast/css/selector-text-escape.html
+++ b/LayoutTests/fast/css/selector-text-escape.html
@@ -59,7 +59,6 @@
     color:red;
 }
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/shorthand-mismatched-list-crash.html b/LayoutTests/fast/css/shorthand-mismatched-list-crash.html
index 976b0b0..9fad5c7 100644
--- a/LayoutTests/fast/css/shorthand-mismatched-list-crash.html
+++ b/LayoutTests/fast/css/shorthand-mismatched-list-crash.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>Test for WebKit bug 31559: Crash with mismatched lists and shorthands.</title>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/shorthands-four-values.html b/LayoutTests/fast/css/shorthands-four-values.html
index 39b04ff..ae29a35 100644
--- a/LayoutTests/fast/css/shorthands-four-values.html
+++ b/LayoutTests/fast/css/shorthands-four-values.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>Test for WebKit bug 7987: Inspector displays incorrect summary for padding information</title>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/sibling-selectors.html b/LayoutTests/fast/css/sibling-selectors.html
index c2c387a..c4527db 100644
--- a/LayoutTests/fast/css/sibling-selectors.html
+++ b/LayoutTests/fast/css/sibling-selectors.html
@@ -1,5 +1,4 @@
 <!DOCTYPE HTML>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 
 <style>
diff --git a/LayoutTests/fast/css/square-button-appearance.html b/LayoutTests/fast/css/square-button-appearance.html
index 0da5b03..1268bda 100644
--- a/LayoutTests/fast/css/square-button-appearance.html
+++ b/LayoutTests/fast/css/square-button-appearance.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../fast/js/resources/js-test-style.css">
 <script>
 enablePixelTesting = true;
 </script>
diff --git a/LayoutTests/fast/css/string-quote-binary.html b/LayoutTests/fast/css/string-quote-binary.html
index 8163ad0..793a3cc 100644
--- a/LayoutTests/fast/css/string-quote-binary.html
+++ b/LayoutTests/fast/css/string-quote-binary.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/table-border-spacing.html b/LayoutTests/fast/css/table-border-spacing.html
index e6ca4d1..b922fa2 100644
--- a/LayoutTests/fast/css/table-border-spacing.html
+++ b/LayoutTests/fast/css/table-border-spacing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #computed-infer-vertical-border-spacing { border-spacing: 11px; }
diff --git a/LayoutTests/fast/css/test-setting-canvas-color.html b/LayoutTests/fast/css/test-setting-canvas-color.html
index 755d184..3c889c9 100644
--- a/LayoutTests/fast/css/test-setting-canvas-color.html
+++ b/LayoutTests/fast/css/test-setting-canvas-color.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/css/transform-origin-parsing.html b/LayoutTests/fast/css/transform-origin-parsing.html
index a84e12f..d92fa0a 100644
--- a/LayoutTests/fast/css/transform-origin-parsing.html
+++ b/LayoutTests/fast/css/transform-origin-parsing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Attr/access-after-element-destruction.html b/LayoutTests/fast/dom/Attr/access-after-element-destruction.html
index e06997c..12a14ca 100644
--- a/LayoutTests/fast/dom/Attr/access-after-element-destruction.html
+++ b/LayoutTests/fast/dom/Attr/access-after-element-destruction.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Attr/change-id-via-attr-node-value.html b/LayoutTests/fast/dom/Attr/change-id-via-attr-node-value.html
index ed6952dd..8038f8c 100644
--- a/LayoutTests/fast/dom/Attr/change-id-via-attr-node-value.html
+++ b/LayoutTests/fast/dom/Attr/change-id-via-attr-node-value.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body id="a">
diff --git a/LayoutTests/fast/dom/Attr/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Attr/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Attr/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Attr/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/CSSStyleDeclaration/css-computed-style-item.html b/LayoutTests/fast/dom/CSSStyleDeclaration/css-computed-style-item.html
index 1c2fa89..28d7abb 100644
--- a/LayoutTests/fast/dom/CSSStyleDeclaration/css-computed-style-item.html
+++ b/LayoutTests/fast/dom/CSSStyleDeclaration/css-computed-style-item.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive.html b/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive.html
index df69f84..4817dd7 100644
--- a/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive.html
+++ b/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-item.html b/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-item.html
index 8bc5fd9..b81cd88 100644
--- a/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-item.html
+++ b/LayoutTests/fast/dom/CSSStyleDeclaration/css-style-item.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/CSSStyleDeclaration/transition-property-names.html b/LayoutTests/fast/dom/CSSStyleDeclaration/transition-property-names.html
index 3232abd..f547884 100644
--- a/LayoutTests/fast/dom/CSSStyleDeclaration/transition-property-names.html
+++ b/LayoutTests/fast/dom/CSSStyleDeclaration/transition-property-names.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DOMException/EventException.html b/LayoutTests/fast/dom/DOMException/EventException.html
index 3779692..8bd5808 100644
--- a/LayoutTests/fast/dom/DOMException/EventException.html
+++ b/LayoutTests/fast/dom/DOMException/EventException.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DOMException/RangeException.html b/LayoutTests/fast/dom/DOMException/RangeException.html
index ee9e45f..d95a161 100644
--- a/LayoutTests/fast/dom/DOMException/RangeException.html
+++ b/LayoutTests/fast/dom/DOMException/RangeException.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DOMException/XPathException.html b/LayoutTests/fast/dom/DOMException/XPathException.html
index f38b67d..de0b3c9 100644
--- a/LayoutTests/fast/dom/DOMException/XPathException.html
+++ b/LayoutTests/fast/dom/DOMException/XPathException.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DOMException/prototype-object.html b/LayoutTests/fast/dom/DOMException/prototype-object.html
index 43d3555..bffc26d 100644
--- a/LayoutTests/fast/dom/DOMException/prototype-object.html
+++ b/LayoutTests/fast/dom/DOMException/prototype-object.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err.html b/LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err.html
index 239352f..8061607 100644
--- a/LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err.html
+++ b/LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DOMImplementation/createDocumentType-err.html b/LayoutTests/fast/dom/DOMImplementation/createDocumentType-err.html
index 9f217be..4fb80d1 100644
--- a/LayoutTests/fast/dom/DOMImplementation/createDocumentType-err.html
+++ b/LayoutTests/fast/dom/DOMImplementation/createDocumentType-err.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DOMImplementation/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/DOMImplementation/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/DOMImplementation/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/DOMImplementation/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceMotion/create-event.html b/LayoutTests/fast/dom/DeviceMotion/create-event.html
index d5a7b66..212cae4 100644
--- a/LayoutTests/fast/dom/DeviceMotion/create-event.html
+++ b/LayoutTests/fast/dom/DeviceMotion/create-event.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceMotion/no-page-cache.html b/LayoutTests/fast/dom/DeviceMotion/no-page-cache.html
index 7c5ce1f..518d900 100644
--- a/LayoutTests/fast/dom/DeviceMotion/no-page-cache.html
+++ b/LayoutTests/fast/dom/DeviceMotion/no-page-cache.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceMotion/optional-event-properties.html b/LayoutTests/fast/dom/DeviceMotion/optional-event-properties.html
index 5fbf11b..8b794d1 100644
--- a/LayoutTests/fast/dom/DeviceMotion/optional-event-properties.html
+++ b/LayoutTests/fast/dom/DeviceMotion/optional-event-properties.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceMotion/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/DeviceMotion/script-tests/TEMPLATE.html
index e1e7213..01a6e6e 100644
--- a/LayoutTests/fast/dom/DeviceMotion/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/DeviceMotion/script-tests/TEMPLATE.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceMotion/window-property.html b/LayoutTests/fast/dom/DeviceMotion/window-property.html
index e6017e1..9f3fd3a 100644
--- a/LayoutTests/fast/dom/DeviceMotion/window-property.html
+++ b/LayoutTests/fast/dom/DeviceMotion/window-property.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/add-listener-from-callback.html b/LayoutTests/fast/dom/DeviceOrientation/add-listener-from-callback.html
index ea66f14..fad9984 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/add-listener-from-callback.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/add-listener-from-callback.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/basic-operation.html b/LayoutTests/fast/dom/DeviceOrientation/basic-operation.html
index e4de6f8..9157be6 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/basic-operation.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/basic-operation.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/create-event.html b/LayoutTests/fast/dom/DeviceOrientation/create-event.html
index d5a7b66..212cae4 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/create-event.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/create-event.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/event-after-navigation.html b/LayoutTests/fast/dom/DeviceOrientation/event-after-navigation.html
index 9ae19c7..7057aef 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/event-after-navigation.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/event-after-navigation.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/multiple-frames.html b/LayoutTests/fast/dom/DeviceOrientation/multiple-frames.html
index b2f0987..4f79cac 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/multiple-frames.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/multiple-frames.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/no-page-cache.html b/LayoutTests/fast/dom/DeviceOrientation/no-page-cache.html
index 7c5ce1f..518d900 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/no-page-cache.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/no-page-cache.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/no-synchronous-events.html b/LayoutTests/fast/dom/DeviceOrientation/no-synchronous-events.html
index 3852eac..f3175ea 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/no-synchronous-events.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/no-synchronous-events.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/null-values.html b/LayoutTests/fast/dom/DeviceOrientation/null-values.html
index 71f7c3b..753ccbd 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/null-values.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/null-values.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/optional-event-properties.html b/LayoutTests/fast/dom/DeviceOrientation/optional-event-properties.html
index 5fbf11b..8b794d1 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/optional-event-properties.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/optional-event-properties.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/DeviceOrientation/script-tests/TEMPLATE.html
index e1e7213..01a6e6e 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/script-tests/TEMPLATE.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/updates.html b/LayoutTests/fast/dom/DeviceOrientation/updates.html
index 6849e10..8225269 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/updates.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/updates.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/DeviceOrientation/window-property.html b/LayoutTests/fast/dom/DeviceOrientation/window-property.html
index e6017e1..9f3fd3a 100644
--- a/LayoutTests/fast/dom/DeviceOrientation/window-property.html
+++ b/LayoutTests/fast/dom/DeviceOrientation/window-property.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport.html b/LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport.html
index d875e99..1f55bfe 100644
--- a/LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport.html
+++ b/LayoutTests/fast/dom/Document/CaretRangeFromPoint/hittest-relative-to-viewport.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <style> 
     .test {
diff --git a/LayoutTests/fast/dom/Document/createAttributeNS-namespace-err.html b/LayoutTests/fast/dom/Document/createAttributeNS-namespace-err.html
index a2995e2..b932caf 100644
--- a/LayoutTests/fast/dom/Document/createAttributeNS-namespace-err.html
+++ b/LayoutTests/fast/dom/Document/createAttributeNS-namespace-err.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/createElementNS-namespace-err.html b/LayoutTests/fast/dom/Document/createElementNS-namespace-err.html
index a28da78..877dc77 100644
--- a/LayoutTests/fast/dom/Document/createElementNS-namespace-err.html
+++ b/LayoutTests/fast/dom/Document/createElementNS-namespace-err.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/document-title-get.html b/LayoutTests/fast/dom/Document/document-title-get.html
index b37deff..bd2e66e 100644
--- a/LayoutTests/fast/dom/Document/document-title-get.html
+++ b/LayoutTests/fast/dom/Document/document-title-get.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/document-write-doctype.html b/LayoutTests/fast/dom/Document/document-write-doctype.html
index 84faa87..4c1dc1e 100644
--- a/LayoutTests/fast/dom/Document/document-write-doctype.html
+++ b/LayoutTests/fast/dom/Document/document-write-doctype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/invalid-domain-change-throws-exception.html b/LayoutTests/fast/dom/Document/invalid-domain-change-throws-exception.html
index 19a54ae..505ec7a 100644
--- a/LayoutTests/fast/dom/Document/invalid-domain-change-throws-exception.html
+++ b/LayoutTests/fast/dom/Document/invalid-domain-change-throws-exception.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/readystate.html b/LayoutTests/fast/dom/Document/readystate.html
index 578858c..0286998 100644
--- a/LayoutTests/fast/dom/Document/readystate.html
+++ b/LayoutTests/fast/dom/Document/readystate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="allDone()">
diff --git a/LayoutTests/fast/dom/Document/replaceChild-null-oldChild.html b/LayoutTests/fast/dom/Document/replaceChild-null-oldChild.html
index fafe191..cf8e2d3 100644
--- a/LayoutTests/fast/dom/Document/replaceChild-null-oldChild.html
+++ b/LayoutTests/fast/dom/Document/replaceChild-null-oldChild.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Document/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Document/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Document/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Document/title-with-multiple-children.html b/LayoutTests/fast/dom/Document/title-with-multiple-children.html
index 581c692..2d83cdb 100644
--- a/LayoutTests/fast/dom/Document/title-with-multiple-children.html
+++ b/LayoutTests/fast/dom/Document/title-with-multiple-children.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/attr-param-typechecking.html b/LayoutTests/fast/dom/Element/attr-param-typechecking.html
index c42d5f8..e9946a6 100644
--- a/LayoutTests/fast/dom/Element/attr-param-typechecking.html
+++ b/LayoutTests/fast/dom/Element/attr-param-typechecking.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/attrisid-extra01.html b/LayoutTests/fast/dom/Element/attrisid-extra01.html
index a1d54f7..9af3de3 100644
--- a/LayoutTests/fast/dom/Element/attrisid-extra01.html
+++ b/LayoutTests/fast/dom/Element/attrisid-extra01.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/dimension-properties-unrendered.html b/LayoutTests/fast/dom/Element/dimension-properties-unrendered.html
index cfa9bef..1c531c6 100644
--- a/LayoutTests/fast/dom/Element/dimension-properties-unrendered.html
+++ b/LayoutTests/fast/dom/Element/dimension-properties-unrendered.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/element-traversal.html b/LayoutTests/fast/dom/Element/element-traversal.html
index 8a08811..d35fac0 100644
--- a/LayoutTests/fast/dom/Element/element-traversal.html
+++ b/LayoutTests/fast/dom/Element/element-traversal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/getAttribute-check-case-sensitivity.html b/LayoutTests/fast/dom/Element/getAttribute-check-case-sensitivity.html
index 69b4d20..f29ec0a 100644
--- a/LayoutTests/fast/dom/Element/getAttribute-check-case-sensitivity.html
+++ b/LayoutTests/fast/dom/Element/getAttribute-check-case-sensitivity.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/getBoundingClientRect-getClientRects-relative-to-viewport.html b/LayoutTests/fast/dom/Element/getBoundingClientRect-getClientRects-relative-to-viewport.html
index bf45b79..0f44350 100644
--- a/LayoutTests/fast/dom/Element/getBoundingClientRect-getClientRects-relative-to-viewport.html
+++ b/LayoutTests/fast/dom/Element/getBoundingClientRect-getClientRects-relative-to-viewport.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
     #pusher {
diff --git a/LayoutTests/fast/dom/Element/getBoundingClientRect.html b/LayoutTests/fast/dom/Element/getBoundingClientRect.html
index 8abeac4..debd76b 100644
--- a/LayoutTests/fast/dom/Element/getBoundingClientRect.html
+++ b/LayoutTests/fast/dom/Element/getBoundingClientRect.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
     body {
diff --git a/LayoutTests/fast/dom/Element/getClientRects.html b/LayoutTests/fast/dom/Element/getClientRects.html
index 245f405..d2e554b 100644
--- a/LayoutTests/fast/dom/Element/getClientRects.html
+++ b/LayoutTests/fast/dom/Element/getClientRects.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
     #base {
diff --git a/LayoutTests/fast/dom/Element/id-in-applet.html b/LayoutTests/fast/dom/Element/id-in-applet.html
index 99b038b..b41808b 100644
--- a/LayoutTests/fast/dom/Element/id-in-applet.html
+++ b/LayoutTests/fast/dom/Element/id-in-applet.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-deletebutton.html b/LayoutTests/fast/dom/Element/id-in-deletebutton.html
index 69af4ee..6877c82 100644
--- a/LayoutTests/fast/dom/Element/id-in-deletebutton.html
+++ b/LayoutTests/fast/dom/Element/id-in-deletebutton.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-formcollection.html b/LayoutTests/fast/dom/Element/id-in-formcollection.html
index 67bd9e7..c9fca01 100644
--- a/LayoutTests/fast/dom/Element/id-in-formcollection.html
+++ b/LayoutTests/fast/dom/Element/id-in-formcollection.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-frame.html b/LayoutTests/fast/dom/Element/id-in-frame.html
index 53ce1d8..8acd3b1 100644
--- a/LayoutTests/fast/dom/Element/id-in-frame.html
+++ b/LayoutTests/fast/dom/Element/id-in-frame.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-getelement01.html b/LayoutTests/fast/dom/Element/id-in-getelement01.html
index ca4ab21..472641c 100644
--- a/LayoutTests/fast/dom/Element/id-in-getelement01.html
+++ b/LayoutTests/fast/dom/Element/id-in-getelement01.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-insert-hr.html b/LayoutTests/fast/dom/Element/id-in-insert-hr.html
index 1fc1545..530dc70 100644
--- a/LayoutTests/fast/dom/Element/id-in-insert-hr.html
+++ b/LayoutTests/fast/dom/Element/id-in-insert-hr.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-map.html b/LayoutTests/fast/dom/Element/id-in-map.html
index bc132e5..04baf1f 100644
--- a/LayoutTests/fast/dom/Element/id-in-map.html
+++ b/LayoutTests/fast/dom/Element/id-in-map.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-node-list-index01.html b/LayoutTests/fast/dom/Element/id-in-node-list-index01.html
index b39e267..368a9e2 100644
--- a/LayoutTests/fast/dom/Element/id-in-node-list-index01.html
+++ b/LayoutTests/fast/dom/Element/id-in-node-list-index01.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/id-in-param.html b/LayoutTests/fast/dom/Element/id-in-param.html
index f607bbe..48f7aaa 100644
--- a/LayoutTests/fast/dom/Element/id-in-param.html
+++ b/LayoutTests/fast/dom/Element/id-in-param.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/node-list-identity.html b/LayoutTests/fast/dom/Element/node-list-identity.html
index 8722ca7..250e253 100644
--- a/LayoutTests/fast/dom/Element/node-list-identity.html
+++ b/LayoutTests/fast/dom/Element/node-list-identity.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Element/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Element/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Element/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Element/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/EntityReference/readonly-exceptions.html b/LayoutTests/fast/dom/EntityReference/readonly-exceptions.html
index d5a7150..8db0e27 100644
--- a/LayoutTests/fast/dom/EntityReference/readonly-exceptions.html
+++ b/LayoutTests/fast/dom/EntityReference/readonly-exceptions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/EntityReference/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/EntityReference/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/EntityReference/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/EntityReference/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/argument-types.html b/LayoutTests/fast/dom/Geolocation/argument-types.html
index 9fe5739..51aa535 100644
--- a/LayoutTests/fast/dom/Geolocation/argument-types.html
+++ b/LayoutTests/fast/dom/Geolocation/argument-types.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/callback-exception.html b/LayoutTests/fast/dom/Geolocation/callback-exception.html
index 45a59f6..ff14018 100644
--- a/LayoutTests/fast/dom/Geolocation/callback-exception.html
+++ b/LayoutTests/fast/dom/Geolocation/callback-exception.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/callback-to-deleted-context.html b/LayoutTests/fast/dom/Geolocation/callback-to-deleted-context.html
index fec227f..b322434 100644
--- a/LayoutTests/fast/dom/Geolocation/callback-to-deleted-context.html
+++ b/LayoutTests/fast/dom/Geolocation/callback-to-deleted-context.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/callback-to-remote-context.html b/LayoutTests/fast/dom/Geolocation/callback-to-remote-context.html
index 2766359..69fce0c 100644
--- a/LayoutTests/fast/dom/Geolocation/callback-to-remote-context.html
+++ b/LayoutTests/fast/dom/Geolocation/callback-to-remote-context.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/callback-to-remote-context2.html b/LayoutTests/fast/dom/Geolocation/callback-to-remote-context2.html
index 86de2b0..34d9215 100644
--- a/LayoutTests/fast/dom/Geolocation/callback-to-remote-context2.html
+++ b/LayoutTests/fast/dom/Geolocation/callback-to-remote-context2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/clear-watch-invalid-id-crash.html b/LayoutTests/fast/dom/Geolocation/clear-watch-invalid-id-crash.html
index 2f85cc3..f7f45cc 100644
--- a/LayoutTests/fast/dom/Geolocation/clear-watch-invalid-id-crash.html
+++ b/LayoutTests/fast/dom/Geolocation/clear-watch-invalid-id-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed-for-multiple-requests.html b/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed-for-multiple-requests.html
index f447478..8995a13 100644
--- a/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed-for-multiple-requests.html
+++ b/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed-for-multiple-requests.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed.html b/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed.html
index ae94746..8a520d2 100644
--- a/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed.html
+++ b/LayoutTests/fast/dom/Geolocation/delayed-permission-allowed.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/delayed-permission-denied-for-multiple-requests.html b/LayoutTests/fast/dom/Geolocation/delayed-permission-denied-for-multiple-requests.html
index 092905f..0d3aa0d 100644
--- a/LayoutTests/fast/dom/Geolocation/delayed-permission-denied-for-multiple-requests.html
+++ b/LayoutTests/fast/dom/Geolocation/delayed-permission-denied-for-multiple-requests.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/delayed-permission-denied.html b/LayoutTests/fast/dom/Geolocation/delayed-permission-denied.html
index 74c6fd8..a319b30 100644
--- a/LayoutTests/fast/dom/Geolocation/delayed-permission-denied.html
+++ b/LayoutTests/fast/dom/Geolocation/delayed-permission-denied.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/disconnected-frame-already.html b/LayoutTests/fast/dom/Geolocation/disconnected-frame-already.html
index 8182a9a..3d0ee58 100644
--- a/LayoutTests/fast/dom/Geolocation/disconnected-frame-already.html
+++ b/LayoutTests/fast/dom/Geolocation/disconnected-frame-already.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/disconnected-frame-permission-denied.html b/LayoutTests/fast/dom/Geolocation/disconnected-frame-permission-denied.html
index ccce908..bbff5c6 100644
--- a/LayoutTests/fast/dom/Geolocation/disconnected-frame-permission-denied.html
+++ b/LayoutTests/fast/dom/Geolocation/disconnected-frame-permission-denied.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/disconnected-frame.html b/LayoutTests/fast/dom/Geolocation/disconnected-frame.html
index 842c319..b8a230e 100644
--- a/LayoutTests/fast/dom/Geolocation/disconnected-frame.html
+++ b/LayoutTests/fast/dom/Geolocation/disconnected-frame.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/enabled.html b/LayoutTests/fast/dom/Geolocation/enabled.html
index 7a377f6..9a8c3aa 100644
--- a/LayoutTests/fast/dom/Geolocation/enabled.html
+++ b/LayoutTests/fast/dom/Geolocation/enabled.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/error.html b/LayoutTests/fast/dom/Geolocation/error.html
index cf9fe69..2b7db15 100644
--- a/LayoutTests/fast/dom/Geolocation/error.html
+++ b/LayoutTests/fast/dom/Geolocation/error.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/maximum-age.html b/LayoutTests/fast/dom/Geolocation/maximum-age.html
index 6db4c13..3760b6a 100644
--- a/LayoutTests/fast/dom/Geolocation/maximum-age.html
+++ b/LayoutTests/fast/dom/Geolocation/maximum-age.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/multiple-requests.html b/LayoutTests/fast/dom/Geolocation/multiple-requests.html
index 4a3e9c9..444736c 100644
--- a/LayoutTests/fast/dom/Geolocation/multiple-requests.html
+++ b/LayoutTests/fast/dom/Geolocation/multiple-requests.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/no-page-cache.html b/LayoutTests/fast/dom/Geolocation/no-page-cache.html
index a69c333..8371b8d 100644
--- a/LayoutTests/fast/dom/Geolocation/no-page-cache.html
+++ b/LayoutTests/fast/dom/Geolocation/no-page-cache.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/not-enough-arguments.html b/LayoutTests/fast/dom/Geolocation/not-enough-arguments.html
index 889dc97..343dbb6 100644
--- a/LayoutTests/fast/dom/Geolocation/not-enough-arguments.html
+++ b/LayoutTests/fast/dom/Geolocation/not-enough-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/notimer-after-unload.html b/LayoutTests/fast/dom/Geolocation/notimer-after-unload.html
index c69668f..1158364 100644
--- a/LayoutTests/fast/dom/Geolocation/notimer-after-unload.html
+++ b/LayoutTests/fast/dom/Geolocation/notimer-after-unload.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/permission-denied-already-clear-watch.html b/LayoutTests/fast/dom/Geolocation/permission-denied-already-clear-watch.html
index d077ea8..cb101b4 100644
--- a/LayoutTests/fast/dom/Geolocation/permission-denied-already-clear-watch.html
+++ b/LayoutTests/fast/dom/Geolocation/permission-denied-already-clear-watch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/permission-denied-already-error.html b/LayoutTests/fast/dom/Geolocation/permission-denied-already-error.html
index 54efb27..11cfd8a 100644
--- a/LayoutTests/fast/dom/Geolocation/permission-denied-already-error.html
+++ b/LayoutTests/fast/dom/Geolocation/permission-denied-already-error.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/permission-denied-already-success.html b/LayoutTests/fast/dom/Geolocation/permission-denied-already-success.html
index 4287a0b..0df1b71 100644
--- a/LayoutTests/fast/dom/Geolocation/permission-denied-already-success.html
+++ b/LayoutTests/fast/dom/Geolocation/permission-denied-already-success.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html b/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html
index 16cfa74..af06684 100644
--- a/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html
+++ b/LayoutTests/fast/dom/Geolocation/permission-denied-stops-watches.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/permission-denied.html b/LayoutTests/fast/dom/Geolocation/permission-denied.html
index 5e9a785..ce69519 100644
--- a/LayoutTests/fast/dom/Geolocation/permission-denied.html
+++ b/LayoutTests/fast/dom/Geolocation/permission-denied.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/position-string.html b/LayoutTests/fast/dom/Geolocation/position-string.html
index 4a4acd8..3087286 100644
--- a/LayoutTests/fast/dom/Geolocation/position-string.html
+++ b/LayoutTests/fast/dom/Geolocation/position-string.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/reentrant-error.html b/LayoutTests/fast/dom/Geolocation/reentrant-error.html
index 43a5d62..7a23968 100644
--- a/LayoutTests/fast/dom/Geolocation/reentrant-error.html
+++ b/LayoutTests/fast/dom/Geolocation/reentrant-error.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/reentrant-permission-denied.html b/LayoutTests/fast/dom/Geolocation/reentrant-permission-denied.html
index 0463866..0717f65 100644
--- a/LayoutTests/fast/dom/Geolocation/reentrant-permission-denied.html
+++ b/LayoutTests/fast/dom/Geolocation/reentrant-permission-denied.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/reentrant-success.html b/LayoutTests/fast/dom/Geolocation/reentrant-success.html
index fc35d7d..7db8543 100644
--- a/LayoutTests/fast/dom/Geolocation/reentrant-success.html
+++ b/LayoutTests/fast/dom/Geolocation/reentrant-success.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/remove-remote-context-in-error-callback-crash.html b/LayoutTests/fast/dom/Geolocation/remove-remote-context-in-error-callback-crash.html
index 7a991cd..62a1578 100644
--- a/LayoutTests/fast/dom/Geolocation/remove-remote-context-in-error-callback-crash.html
+++ b/LayoutTests/fast/dom/Geolocation/remove-remote-context-in-error-callback-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Geolocation/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Geolocation/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Geolocation/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/success.html b/LayoutTests/fast/dom/Geolocation/success.html
index 1a74761..8c975fa 100644
--- a/LayoutTests/fast/dom/Geolocation/success.html
+++ b/LayoutTests/fast/dom/Geolocation/success.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/timeout-clear-watch.html b/LayoutTests/fast/dom/Geolocation/timeout-clear-watch.html
index 4cf106d..6fba82c 100644
--- a/LayoutTests/fast/dom/Geolocation/timeout-clear-watch.html
+++ b/LayoutTests/fast/dom/Geolocation/timeout-clear-watch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/timeout-zero.html b/LayoutTests/fast/dom/Geolocation/timeout-zero.html
index f0eec79..93373f6 100644
--- a/LayoutTests/fast/dom/Geolocation/timeout-zero.html
+++ b/LayoutTests/fast/dom/Geolocation/timeout-zero.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/timeout.html b/LayoutTests/fast/dom/Geolocation/timeout.html
index dd358f7..7825e86 100644
--- a/LayoutTests/fast/dom/Geolocation/timeout.html
+++ b/LayoutTests/fast/dom/Geolocation/timeout.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/timestamp.html b/LayoutTests/fast/dom/Geolocation/timestamp.html
index 5aacb8b..0214056 100644
--- a/LayoutTests/fast/dom/Geolocation/timestamp.html
+++ b/LayoutTests/fast/dom/Geolocation/timestamp.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/watch.html b/LayoutTests/fast/dom/Geolocation/watch.html
index f6b688be..7a339ef 100644
--- a/LayoutTests/fast/dom/Geolocation/watch.html
+++ b/LayoutTests/fast/dom/Geolocation/watch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Geolocation/window-close-crash.html b/LayoutTests/fast/dom/Geolocation/window-close-crash.html
index 27c48ef..9b4bcd0 100644
--- a/LayoutTests/fast/dom/Geolocation/window-close-crash.html
+++ b/LayoutTests/fast/dom/Geolocation/window-close-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/get-href-attribute-port.html b/LayoutTests/fast/dom/HTMLAnchorElement/get-href-attribute-port.html
index 48570fb..dcf9a8c 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/get-href-attribute-port.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/get-href-attribute-port.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/get-parameter.html b/LayoutTests/fast/dom/HTMLAnchorElement/get-parameter.html
index e81d7a3..bc74b74 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/get-parameter.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/get-parameter.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hash.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hash.html
index 9bbf7c9..18cc811 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hash.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host.html
index cca7886..d0352a8 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-host.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname.html
index 4b3b5d0..a402766 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-hostname.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname.html
index 76432d9..f04608c 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-pathname.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-port.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-port.html
index c797410..3aa5891 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-port.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-port.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-prevents-rebase.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-prevents-rebase.html
index 241daa2..e7f1c5e 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-prevents-rebase.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-prevents-rebase.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-protocol.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-protocol.html
index 7ab7ce6..c1a8c4a 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-protocol.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-protocol.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search.html
index cac1fa6..6b3d40d 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-search.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-whitespace.html b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-whitespace.html
index 7509dcd..a3f93b3 100644
--- a/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-whitespace.html
+++ b/LayoutTests/fast/dom/HTMLAnchorElement/set-href-attribute-whitespace.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLBaseElement/multiple-base-elements.html b/LayoutTests/fast/dom/HTMLBaseElement/multiple-base-elements.html
index 7e3f6c9..ece3783 100644
--- a/LayoutTests/fast/dom/HTMLBaseElement/multiple-base-elements.html
+++ b/LayoutTests/fast/dom/HTMLBaseElement/multiple-base-elements.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLBaseElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLBaseElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLBaseElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLBaseElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLDocument/document-all.html b/LayoutTests/fast/dom/HTMLDocument/document-all.html
index adb1a4c..5423c4c 100644
--- a/LayoutTests/fast/dom/HTMLDocument/document-all.html
+++ b/LayoutTests/fast/dom/HTMLDocument/document-all.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html
index 909ccec..6916128 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-before-text-node.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-child-node.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-child-node.html
index 53b30e3..50d7a61 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-child-node.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-child-node.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text-form-control.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text-form-control.html
index ef05f76..c5b7bc9 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text-form-control.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text-form-control.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testElement {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text.html
index bf67774..ceb8037 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-change-text.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-children.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-children.html
index 9e74bce..b2ec40e 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-children.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-children.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html
index 91118be..49b30e8 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-remove-add-children.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control-child.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control-child.html
index 1523d48..6bce502 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control-child.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control-child.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testElement {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control.html
index 3e21d91..73045f7 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto-text-form-control.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testElement {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto.html
index e3d16b9..2d3bc53 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-auto.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-auto.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-dir-value-change.html b/LayoutTests/fast/dom/HTMLElement/attr-dir-value-change.html
index 3131df0..8c00b08 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-dir-value-change.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-dir-value-change.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid red; }
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-empty-string.html b/LayoutTests/fast/dom/HTMLElement/attr-empty-string.html
index ac34b55..c1ad113 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-empty-string.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-empty-string.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-false-string.html b/LayoutTests/fast/dom/HTMLElement/attr-false-string.html
index 7d5161a..5f8ed0a 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-false-string.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-false-string.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-invalid-string.html b/LayoutTests/fast/dom/HTMLElement/attr-invalid-string.html
index 47eb6f27..3bb1a65 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-invalid-string.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-invalid-string.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-false.html b/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-false.html
index 385582d..67541b0 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-false.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-false.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-true.html b/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-true.html
index 65bfd7f..4cd4fa9 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-true.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-missing-ancestor-true.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-ancestor-missing.html b/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-ancestor-missing.html
index 7c4d932..ba1cfb5 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-ancestor-missing.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-ancestor-missing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-false.html b/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-false.html
index 88724a4..d8c7f59 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-false.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-false.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-true.html b/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-true.html
index bd5664e..570beb6 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-true.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-missing-parent-true.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/attr-true-string.html b/LayoutTests/fast/dom/HTMLElement/attr-true-string.html
index ee5d220..0addee1 100644
--- a/LayoutTests/fast/dom/HTMLElement/attr-true-string.html
+++ b/LayoutTests/fast/dom/HTMLElement/attr-true-string.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/class-list-gc.html b/LayoutTests/fast/dom/HTMLElement/class-list-gc.html
index 075233d..5000fb8 100644
--- a/LayoutTests/fast/dom/HTMLElement/class-list-gc.html
+++ b/LayoutTests/fast/dom/HTMLElement/class-list-gc.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/class-list-quirks.html b/LayoutTests/fast/dom/HTMLElement/class-list-quirks.html
index 38aa244..2b095d9 100644
--- a/LayoutTests/fast/dom/HTMLElement/class-list-quirks.html
+++ b/LayoutTests/fast/dom/HTMLElement/class-list-quirks.html
@@ -1,7 +1,6 @@
 <!-- Quirks Mode -->
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/class-list.html b/LayoutTests/fast/dom/HTMLElement/class-list.html
index 020f32f..64b5f7e 100644
--- a/LayoutTests/fast/dom/HTMLElement/class-list.html
+++ b/LayoutTests/fast/dom/HTMLElement/class-list.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors.html b/LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors.html
index 08b5592..dc3bbf9 100644
--- a/LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors.html
+++ b/LayoutTests/fast/dom/HTMLElement/insertAdjacentHTML-errors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html
index f51ba73..2d9f3a7 100644
--- a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html
+++ b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit-subframe.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit.html b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit.html
index b7ce582..109f92c 100644
--- a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit.html
+++ b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-allinherit.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-ancestor.html b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-ancestor.html
index 055d14f..5a7c4a1 100644
--- a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-ancestor.html
+++ b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon-ancestor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon.html b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon.html
index 5c9dec5..f9ba767 100644
--- a/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon.html
+++ b/LayoutTests/fast/dom/HTMLElement/iscontenteditable-designmodeon.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/set-false.html b/LayoutTests/fast/dom/HTMLElement/set-false.html
index 8bf5d1d..b50de2c 100644
--- a/LayoutTests/fast/dom/HTMLElement/set-false.html
+++ b/LayoutTests/fast/dom/HTMLElement/set-false.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-false.html b/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-false.html
index 3aa54f1..a4204fc 100644
--- a/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-false.html
+++ b/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-false.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-true.html b/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-true.html
index f139151..a91a0a2 100644
--- a/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-true.html
+++ b/LayoutTests/fast/dom/HTMLElement/set-inherit-parent-true.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/set-invalid-value.html b/LayoutTests/fast/dom/HTMLElement/set-invalid-value.html
index 3f41ff7..d2b4b7b 100644
--- a/LayoutTests/fast/dom/HTMLElement/set-invalid-value.html
+++ b/LayoutTests/fast/dom/HTMLElement/set-invalid-value.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/set-true.html b/LayoutTests/fast/dom/HTMLElement/set-true.html
index 08760d8..32015c3 100644
--- a/LayoutTests/fast/dom/HTMLElement/set-true.html
+++ b/LayoutTests/fast/dom/HTMLElement/set-true.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/set-value-caseinsensitive.html b/LayoutTests/fast/dom/HTMLElement/set-value-caseinsensitive.html
index ab25ec3..579c12e 100644
--- a/LayoutTests/fast/dom/HTMLElement/set-value-caseinsensitive.html
+++ b/LayoutTests/fast/dom/HTMLElement/set-value-caseinsensitive.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLElement/spellcheck.html b/LayoutTests/fast/dom/HTMLElement/spellcheck.html
index 473ae14..5b7de34 100644
--- a/LayoutTests/fast/dom/HTMLElement/spellcheck.html
+++ b/LayoutTests/fast/dom/HTMLElement/spellcheck.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLFontElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLFontElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLFontElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLFontElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLFontElement/size-attribute.html b/LayoutTests/fast/dom/HTMLFontElement/size-attribute.html
index 6c68e51..2d1d5e8 100644
--- a/LayoutTests/fast/dom/HTMLFontElement/size-attribute.html
+++ b/LayoutTests/fast/dom/HTMLFontElement/size-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLFormElement/elements-not-in-document.html b/LayoutTests/fast/dom/HTMLFormElement/elements-not-in-document.html
index 140f786..4e89713 100644
--- a/LayoutTests/fast/dom/HTMLFormElement/elements-not-in-document.html
+++ b/LayoutTests/fast/dom/HTMLFormElement/elements-not-in-document.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLFormElement/htmlformelement-indexed-getter.html b/LayoutTests/fast/dom/HTMLFormElement/htmlformelement-indexed-getter.html
index 09927f4..6cfc0ac 100644
--- a/LayoutTests/fast/dom/HTMLFormElement/htmlformelement-indexed-getter.html
+++ b/LayoutTests/fast/dom/HTMLFormElement/htmlformelement-indexed-getter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLFormElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLFormElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLFormElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLFormElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLHeadElement/head-check.html b/LayoutTests/fast/dom/HTMLHeadElement/head-check.html
index 332a1fb..81ba3e4 100644
--- a/LayoutTests/fast/dom/HTMLHeadElement/head-check.html
+++ b/LayoutTests/fast/dom/HTMLHeadElement/head-check.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="resources/head-check.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/HTMLImageElement/image-lowsrc-getset.html b/LayoutTests/fast/dom/HTMLImageElement/image-lowsrc-getset.html
index 1768f60..8c001a2 100644
--- a/LayoutTests/fast/dom/HTMLImageElement/image-lowsrc-getset.html
+++ b/LayoutTests/fast/dom/HTMLImageElement/image-lowsrc-getset.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLImageElement/parse-src.html b/LayoutTests/fast/dom/HTMLImageElement/parse-src.html
index e02bcbd..ef75c16 100644
--- a/LayoutTests/fast/dom/HTMLImageElement/parse-src.html
+++ b/LayoutTests/fast/dom/HTMLImageElement/parse-src.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLImageElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLImageElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLImageElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLImageElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLInputElement/checked-pseudo-selector.html b/LayoutTests/fast/dom/HTMLInputElement/checked-pseudo-selector.html
index 2efae74..04f81b3 100644
--- a/LayoutTests/fast/dom/HTMLInputElement/checked-pseudo-selector.html
+++ b/LayoutTests/fast/dom/HTMLInputElement/checked-pseudo-selector.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLInputElement/duplicate-element-names.html b/LayoutTests/fast/dom/HTMLInputElement/duplicate-element-names.html
index b0fb028..e2dceba 100644
--- a/LayoutTests/fast/dom/HTMLInputElement/duplicate-element-names.html
+++ b/LayoutTests/fast/dom/HTMLInputElement/duplicate-element-names.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html b/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html
index 6d994e3..4479838 100644
--- a/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html
+++ b/LayoutTests/fast/dom/HTMLInputElement/input-size-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLInputElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLInputElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLInputElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLInputElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLInputElement/size-attribute.html b/LayoutTests/fast/dom/HTMLInputElement/size-attribute.html
index 6c68e51..2d1d5e8 100644
--- a/LayoutTests/fast/dom/HTMLInputElement/size-attribute.html
+++ b/LayoutTests/fast/dom/HTMLInputElement/size-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLLabelElement/label-control.html b/LayoutTests/fast/dom/HTMLLabelElement/label-control.html
index 8cdd464..08b0741 100644
--- a/LayoutTests/fast/dom/HTMLLabelElement/label-control.html
+++ b/LayoutTests/fast/dom/HTMLLabelElement/label-control.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLLabelElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLLabelElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLLabelElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLLabelElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLLinkElement/disabled-attribute.html b/LayoutTests/fast/dom/HTMLLinkElement/disabled-attribute.html
index a7301bb..b776080 100644
--- a/LayoutTests/fast/dom/HTMLLinkElement/disabled-attribute.html
+++ b/LayoutTests/fast/dom/HTMLLinkElement/disabled-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
 <script src="../../../fast/js/resources/js-test-pre.js"></script>
 <link id="test" type="text/css" rel="stylesheet" href="resources/htmllink-disable.css"/>
 <link id="test_nostyle" type="text/css" rel="stylesheet" />
diff --git a/LayoutTests/fast/dom/HTMLMeterElement/meter-clone.html b/LayoutTests/fast/dom/HTMLMeterElement/meter-clone.html
index 0ba02f7..402a860 100644
--- a/LayoutTests/fast/dom/HTMLMeterElement/meter-clone.html
+++ b/LayoutTests/fast/dom/HTMLMeterElement/meter-clone.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLMeterElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLMeterElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLMeterElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLMeterElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties.html b/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties.html
index 58f5a0b..f7ef86b 100644
--- a/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties.html
+++ b/LayoutTests/fast/dom/HTMLMeterElement/set-meter-properties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html b/LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html
index 61d1b24..a03919a 100644
--- a/LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html
+++ b/LayoutTests/fast/dom/HTMLObjectElement/object-as-frame.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script>
 
diff --git a/LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter.html b/LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter.html
index 815dc51..f0b4a9b 100644
--- a/LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter.html
+++ b/LayoutTests/fast/dom/HTMLOptionElement/collection-setter-getter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list.html b/LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list.html
index d1a80d5..4f57205 100644
--- a/LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list.html
+++ b/LayoutTests/fast/dom/HTMLOutputElement/dom-settable-token-list.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-children-removed.html b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-children-removed.html
index f949e8a..c2acbbb 100644
--- a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-children-removed.html
+++ b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-children-removed.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-reset-event.html b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-reset-event.html
index 1e558b5..b00aec9 100644
--- a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-reset-event.html
+++ b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-reset-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-validity.html b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-validity.html
index 2e1171be..0ef7fa6 100644
--- a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-validity.html
+++ b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-validity.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-value.html b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-value.html
index a75822e..1333d27 100644
--- a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-value.html
+++ b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement-value.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement.html b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement.html
index 898e735..d55f04c 100644
--- a/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement.html
+++ b/LayoutTests/fast/dom/HTMLOutputElement/htmloutputelement.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLProgressElement/progress-clone.html b/LayoutTests/fast/dom/HTMLProgressElement/progress-clone.html
index 08cfd6b..a9cdd9c 100644
--- a/LayoutTests/fast/dom/HTMLProgressElement/progress-clone.html
+++ b/LayoutTests/fast/dom/HTMLProgressElement/progress-clone.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLProgressElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLProgressElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLProgressElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLProgressElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties.html b/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties.html
index 84722e7..535c073 100644
--- a/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties.html
+++ b/LayoutTests/fast/dom/HTMLProgressElement/set-progress-properties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load.html b/LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load.html
index f9f2801..99ea67b 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/async-false-inside-async-false-load.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href=".../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="">
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/async-inline-script.html b/LayoutTests/fast/dom/HTMLScriptElement/async-inline-script.html
index 3fcd3a5..ce538dc 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/async-inline-script.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/async-inline-script.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html b/LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html
index 5c197cf..fd04bc9 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/async-onbeforeload.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="debug('load');finishJSTest();">
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script.html b/LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script.html
index a15c201..7393b059 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/defer-inline-script.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload.html b/LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload.html
index a22b184..9423bba 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/defer-onbeforeload.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/defer-script-invalid-url.html b/LayoutTests/fast/dom/HTMLScriptElement/defer-script-invalid-url.html
index bf6cee4..d251f26 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/defer-script-invalid-url.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/defer-script-invalid-url.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/move-in-beforeload.html b/LayoutTests/fast/dom/HTMLScriptElement/move-in-beforeload.html
index 5bcc34a..938e057 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/move-in-beforeload.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/move-in-beforeload.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <body onload="test()">
 <div id="console"></div>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/remove-in-beforeload.html b/LayoutTests/fast/dom/HTMLScriptElement/remove-in-beforeload.html
index 1c34060..f1f6ec0 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/remove-in-beforeload.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/remove-in-beforeload.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <body onload="test()">
 <div id="console"></div>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/resources/frame.html b/LayoutTests/fast/dom/HTMLScriptElement/resources/frame.html
index 9399019..5889ebe 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/resources/frame.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/resources/frame.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/script-async-attr.html b/LayoutTests/fast/dom/HTMLScriptElement/script-async-attr.html
index 7d6053c..45b73be 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/script-async-attr.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/script-async-attr.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution.html b/LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution.html
index 6ad7eec..3b2c419 100644
--- a/LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution.html
+++ b/LayoutTests/fast/dom/HTMLScriptElement/script-for-attribute-unexpected-execution.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLSelectElement/named-options.html b/LayoutTests/fast/dom/HTMLSelectElement/named-options.html
index 5c90989..b9f5b4d 100644
--- a/LayoutTests/fast/dom/HTMLSelectElement/named-options.html
+++ b/LayoutTests/fast/dom/HTMLSelectElement/named-options.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLSelectElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLSelectElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLSelectElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLSelectElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableElement/cellpadding-attribute.html b/LayoutTests/fast/dom/HTMLTableElement/cellpadding-attribute.html
index 45886ff..96a1784 100644
--- a/LayoutTests/fast/dom/HTMLTableElement/cellpadding-attribute.html
+++ b/LayoutTests/fast/dom/HTMLTableElement/cellpadding-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableElement/early-acid3-65-excerpt.html b/LayoutTests/fast/dom/HTMLTableElement/early-acid3-65-excerpt.html
index 4d03854..018558a 100644
--- a/LayoutTests/fast/dom/HTMLTableElement/early-acid3-65-excerpt.html
+++ b/LayoutTests/fast/dom/HTMLTableElement/early-acid3-65-excerpt.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableElement/early-acid3-66-excerpt.html b/LayoutTests/fast/dom/HTMLTableElement/early-acid3-66-excerpt.html
index 9a005c3..d0b3e49 100644
--- a/LayoutTests/fast/dom/HTMLTableElement/early-acid3-66-excerpt.html
+++ b/LayoutTests/fast/dom/HTMLTableElement/early-acid3-66-excerpt.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableElement/rows.html b/LayoutTests/fast/dom/HTMLTableElement/rows.html
index ef38231..73ae88a 100644
--- a/LayoutTests/fast/dom/HTMLTableElement/rows.html
+++ b/LayoutTests/fast/dom/HTMLTableElement/rows.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLTableElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLTableElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLTableElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableElement/tBodies.html b/LayoutTests/fast/dom/HTMLTableElement/tBodies.html
index 8a31d4f..43395ee 100644
--- a/LayoutTests/fast/dom/HTMLTableElement/tBodies.html
+++ b/LayoutTests/fast/dom/HTMLTableElement/tBodies.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableRowElement/cells.html b/LayoutTests/fast/dom/HTMLTableRowElement/cells.html
index 97901f7..10d19d2d 100644
--- a/LayoutTests/fast/dom/HTMLTableRowElement/cells.html
+++ b/LayoutTests/fast/dom/HTMLTableRowElement/cells.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLTableRowElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableSectionElement/rows.html b/LayoutTests/fast/dom/HTMLTableSectionElement/rows.html
index ef38231..73ae88a 100644
--- a/LayoutTests/fast/dom/HTMLTableSectionElement/rows.html
+++ b/LayoutTests/fast/dom/HTMLTableSectionElement/rows.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/HTMLTableSectionElement/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/MediaStream/argument-types.html b/LayoutTests/fast/dom/MediaStream/argument-types.html
index 9fe5739..51aa535 100644
--- a/LayoutTests/fast/dom/MediaStream/argument-types.html
+++ b/LayoutTests/fast/dom/MediaStream/argument-types.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/MediaStream/enabled.html b/LayoutTests/fast/dom/MediaStream/enabled.html
index 7a377f6..9a8c3aa 100644
--- a/LayoutTests/fast/dom/MediaStream/enabled.html
+++ b/LayoutTests/fast/dom/MediaStream/enabled.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/MediaStream/no-interface-object.html b/LayoutTests/fast/dom/MediaStream/no-interface-object.html
index 77efb9d..4ca125a 100644
--- a/LayoutTests/fast/dom/MediaStream/no-interface-object.html
+++ b/LayoutTests/fast/dom/MediaStream/no-interface-object.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Node/DOMNodeRemovedEvent.html b/LayoutTests/fast/dom/Node/DOMNodeRemovedEvent.html
index f643957..ccb5d61 100644
--- a/LayoutTests/fast/dom/Node/DOMNodeRemovedEvent.html
+++ b/LayoutTests/fast/dom/Node/DOMNodeRemovedEvent.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Node/contains-method.html b/LayoutTests/fast/dom/Node/contains-method.html
index 10ad35a..3431a79 100644
--- a/LayoutTests/fast/dom/Node/contains-method.html
+++ b/LayoutTests/fast/dom/Node/contains-method.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Node/initial-values.html b/LayoutTests/fast/dom/Node/initial-values.html
index 43de8b1..61eee2d 100644
--- a/LayoutTests/fast/dom/Node/initial-values.html
+++ b/LayoutTests/fast/dom/Node/initial-values.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Node/isEqualNode.html b/LayoutTests/fast/dom/Node/isEqualNode.html
index e38a376..7666d54 100644
--- a/LayoutTests/fast/dom/Node/isEqualNode.html
+++ b/LayoutTests/fast/dom/Node/isEqualNode.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Node/normalize-with-cdata.html b/LayoutTests/fast/dom/Node/normalize-with-cdata.html
index 584b98e..afa6d42 100644
--- a/LayoutTests/fast/dom/Node/normalize-with-cdata.html
+++ b/LayoutTests/fast/dom/Node/normalize-with-cdata.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Node/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Node/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Node/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Node/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/NodeList/nodelist-item-assignment.html b/LayoutTests/fast/dom/NodeList/nodelist-item-assignment.html
index 5a5b971..166c6ed 100644
--- a/LayoutTests/fast/dom/NodeList/nodelist-item-assignment.html
+++ b/LayoutTests/fast/dom/NodeList/nodelist-item-assignment.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/NodeList/nodelist-item-call-as-function.html b/LayoutTests/fast/dom/NodeList/nodelist-item-call-as-function.html
index 212fd55..fd85f8b 100644
--- a/LayoutTests/fast/dom/NodeList/nodelist-item-call-as-function.html
+++ b/LayoutTests/fast/dom/NodeList/nodelist-item-call-as-function.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/NodeList/nodelist-item-with-index.html b/LayoutTests/fast/dom/NodeList/nodelist-item-with-index.html
index 369e021..59c34bd 100644
--- a/LayoutTests/fast/dom/NodeList/nodelist-item-with-index.html
+++ b/LayoutTests/fast/dom/NodeList/nodelist-item-with-index.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/NodeList/nodelist-item-with-name.html b/LayoutTests/fast/dom/NodeList/nodelist-item-with-name.html
index a96b51c..115af1d 100644
--- a/LayoutTests/fast/dom/NodeList/nodelist-item-with-name.html
+++ b/LayoutTests/fast/dom/NodeList/nodelist-item-with-name.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/NodeList/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/NodeList/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/NodeList/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/NodeList/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Orientation/create-event-orientationchange.html b/LayoutTests/fast/dom/Orientation/create-event-orientationchange.html
index 942eeb2..b9f6c74 100644
--- a/LayoutTests/fast/dom/Orientation/create-event-orientationchange.html
+++ b/LayoutTests/fast/dom/Orientation/create-event-orientationchange.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/31684.html b/LayoutTests/fast/dom/Range/31684.html
index a428041..c604b24 100644
--- a/LayoutTests/fast/dom/Range/31684.html
+++ b/LayoutTests/fast/dom/Range/31684.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/getBoundingClientRect-getClientRects-relative-to-viewport.html b/LayoutTests/fast/dom/Range/getBoundingClientRect-getClientRects-relative-to-viewport.html
index 037df40..9b96b17 100644
--- a/LayoutTests/fast/dom/Range/getBoundingClientRect-getClientRects-relative-to-viewport.html
+++ b/LayoutTests/fast/dom/Range/getBoundingClientRect-getClientRects-relative-to-viewport.html
@@ -1,4 +1,4 @@
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
+
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
     #pusher {
diff --git a/LayoutTests/fast/dom/Range/getBoundingClientRect.html b/LayoutTests/fast/dom/Range/getBoundingClientRect.html
index f409f6f..51e7736 100644
--- a/LayoutTests/fast/dom/Range/getBoundingClientRect.html
+++ b/LayoutTests/fast/dom/Range/getBoundingClientRect.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 body {
diff --git a/LayoutTests/fast/dom/Range/getClientRects.html b/LayoutTests/fast/dom/Range/getClientRects.html
index 9fcf839..20b2920 100644
--- a/LayoutTests/fast/dom/Range/getClientRects.html
+++ b/LayoutTests/fast/dom/Range/getClientRects.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
 .bbox {
diff --git a/LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash.html b/LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash.html
index 06fb74d..59e6d94 100644
--- a/LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash.html
+++ b/LayoutTests/fast/dom/Range/insertNode-empty-fragment-crash.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../../js/resources/js-test-style.css">
         <script src="../../js/resources/js-test-pre.js"></script>
     </head>
     <body>
diff --git a/LayoutTests/fast/dom/Range/mutation.html b/LayoutTests/fast/dom/Range/mutation.html
index 419960e..4a2a99a 100644
--- a/LayoutTests/fast/dom/Range/mutation.html
+++ b/LayoutTests/fast/dom/Range/mutation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/range-clone-empty.html b/LayoutTests/fast/dom/Range/range-clone-empty.html
index f13905f..c173425 100644
--- a/LayoutTests/fast/dom/Range/range-clone-empty.html
+++ b/LayoutTests/fast/dom/Range/range-clone-empty.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/range-exceptions.html b/LayoutTests/fast/dom/Range/range-exceptions.html
index 8c94c7d..dbe0075 100644
--- a/LayoutTests/fast/dom/Range/range-exceptions.html
+++ b/LayoutTests/fast/dom/Range/range-exceptions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer.html b/LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer.html
index 61d4a64..32358f8 100644
--- a/LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer.html
+++ b/LayoutTests/fast/dom/Range/range-insertNode-separate-endContainer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/range-insertNode-splittext.html b/LayoutTests/fast/dom/Range/range-insertNode-splittext.html
index 568bf3b..3bbe817 100644
--- a/LayoutTests/fast/dom/Range/range-insertNode-splittext.html
+++ b/LayoutTests/fast/dom/Range/range-insertNode-splittext.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/range-intersectsNode.html b/LayoutTests/fast/dom/Range/range-intersectsNode.html
index 0a05e5d..62fe299 100644
--- a/LayoutTests/fast/dom/Range/range-intersectsNode.html
+++ b/LayoutTests/fast/dom/Range/range-intersectsNode.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <title>Test for Range.intersectsNode()</title>
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Range/range-modifycontents.html b/LayoutTests/fast/dom/Range/range-modifycontents.html
index 0e17dca..a2cadb7 100644
--- a/LayoutTests/fast/dom/Range/range-modifycontents.html
+++ b/LayoutTests/fast/dom/Range/range-modifycontents.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Range/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Range/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Range/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Range/select-node-different-document.html b/LayoutTests/fast/dom/Range/select-node-different-document.html
index abbc247..f53c7f7 100644
--- a/LayoutTests/fast/dom/Range/select-node-different-document.html
+++ b/LayoutTests/fast/dom/Range/select-node-different-document.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Selection/collapseToX-empty-selection.html b/LayoutTests/fast/dom/Selection/collapseToX-empty-selection.html
index f8d9915..18ea4fe 100644
--- a/LayoutTests/fast/dom/Selection/collapseToX-empty-selection.html
+++ b/LayoutTests/fast/dom/Selection/collapseToX-empty-selection.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Selection/getRangeAt.html b/LayoutTests/fast/dom/Selection/getRangeAt.html
index 8159898..aaf8f50 100644
--- a/LayoutTests/fast/dom/Selection/getRangeAt.html
+++ b/LayoutTests/fast/dom/Selection/getRangeAt.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Selection/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Selection/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Selection/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Selection/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict.html b/LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict.html
index bd77fd9..3692d0c 100644
--- a/LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict.html
+++ b/LayoutTests/fast/dom/SelectorAPI/caseID-almost-strict.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/caseID-strict.html b/LayoutTests/fast/dom/SelectorAPI/caseID-strict.html
index 8b2001c..4217ae0 100644
--- a/LayoutTests/fast/dom/SelectorAPI/caseID-strict.html
+++ b/LayoutTests/fast/dom/SelectorAPI/caseID-strict.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/caseID.html b/LayoutTests/fast/dom/SelectorAPI/caseID.html
index 08880dc..202907e 100644
--- a/LayoutTests/fast/dom/SelectorAPI/caseID.html
+++ b/LayoutTests/fast/dom/SelectorAPI/caseID.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/caseTag.html b/LayoutTests/fast/dom/SelectorAPI/caseTag.html
index 10df65b..fbc6136 100644
--- a/LayoutTests/fast/dom/SelectorAPI/caseTag.html
+++ b/LayoutTests/fast/dom/SelectorAPI/caseTag.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/detached-element.html b/LayoutTests/fast/dom/SelectorAPI/detached-element.html
index 3ccff60..9fdb0e4 100644
--- a/LayoutTests/fast/dom/SelectorAPI/detached-element.html
+++ b/LayoutTests/fast/dom/SelectorAPI/detached-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/elementRoot.html b/LayoutTests/fast/dom/SelectorAPI/elementRoot.html
index 6931b86..cf32d3c 100644
--- a/LayoutTests/fast/dom/SelectorAPI/elementRoot.html
+++ b/LayoutTests/fast/dom/SelectorAPI/elementRoot.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/id-fastpath-almost-strict.html b/LayoutTests/fast/dom/SelectorAPI/id-fastpath-almost-strict.html
index d186f40..e7a15bd 100644
--- a/LayoutTests/fast/dom/SelectorAPI/id-fastpath-almost-strict.html
+++ b/LayoutTests/fast/dom/SelectorAPI/id-fastpath-almost-strict.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/id-fastpath-strict.html b/LayoutTests/fast/dom/SelectorAPI/id-fastpath-strict.html
index a8aeac7..d038edc 100644
--- a/LayoutTests/fast/dom/SelectorAPI/id-fastpath-strict.html
+++ b/LayoutTests/fast/dom/SelectorAPI/id-fastpath-strict.html
@@ -2,7 +2,6 @@
    "http://www.w3.org/TR/html4/strict.dtd">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/id-fastpath.html b/LayoutTests/fast/dom/SelectorAPI/id-fastpath.html
index 30f71b8..e6b6609 100644
--- a/LayoutTests/fast/dom/SelectorAPI/id-fastpath.html
+++ b/LayoutTests/fast/dom/SelectorAPI/id-fastpath.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/SelectorAPI/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/SelectorAPI/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/SelectorAPI/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/undefined-null-stringify.html b/LayoutTests/fast/dom/SelectorAPI/undefined-null-stringify.html
index 33177ae..b4f3707 100644
--- a/LayoutTests/fast/dom/SelectorAPI/undefined-null-stringify.html
+++ b/LayoutTests/fast/dom/SelectorAPI/undefined-null-stringify.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/SelectorAPI/viewless-document.html b/LayoutTests/fast/dom/SelectorAPI/viewless-document.html
index a900318..c91c16b 100644
--- a/LayoutTests/fast/dom/SelectorAPI/viewless-document.html
+++ b/LayoutTests/fast/dom/SelectorAPI/viewless-document.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/StyleSheet/css-medialist-item.html b/LayoutTests/fast/dom/StyleSheet/css-medialist-item.html
index cc3bd2b..81a929a 100644
--- a/LayoutTests/fast/dom/StyleSheet/css-medialist-item.html
+++ b/LayoutTests/fast/dom/StyleSheet/css-medialist-item.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/StyleSheet/detached-style.html b/LayoutTests/fast/dom/StyleSheet/detached-style.html
index 6d5d7cb..424266f 100644
--- a/LayoutTests/fast/dom/StyleSheet/detached-style.html
+++ b/LayoutTests/fast/dom/StyleSheet/detached-style.html
@@ -1,7 +1,6 @@
 <html>
 <head>
 <link rel="stylesheet" href="resources/detached-style.css" type="text/css" media="screen">
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <style>* { }</style>
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
@@ -32,7 +31,7 @@
     shouldBe('link.sheet.ownerNode', 'link')
 
     debug("Testing &lt;style>...");
-    sheet = document.styleSheets[1];
+    sheet = document.styleSheets[0];
     head = document.getElementsByTagName("head")[0];
     style = document.getElementsByTagName("style")[0];
 
diff --git a/LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html b/LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html
index 305e192..214298a 100644
--- a/LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html
+++ b/LayoutTests/fast/dom/StyleSheet/gc-inline-style-cssvalues.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body style="color:black">
diff --git a/LayoutTests/fast/dom/StyleSheet/gc-rule-children-wrappers.html b/LayoutTests/fast/dom/StyleSheet/gc-rule-children-wrappers.html
index 1775f86..8226a3c 100644
--- a/LayoutTests/fast/dom/StyleSheet/gc-rule-children-wrappers.html
+++ b/LayoutTests/fast/dom/StyleSheet/gc-rule-children-wrappers.html
@@ -22,8 +22,6 @@
 
 @page { margin: 3cm; }
 </style>
-
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body style="color:black">
diff --git a/LayoutTests/fast/dom/StyleSheet/get-stylesheet-byname.html b/LayoutTests/fast/dom/StyleSheet/get-stylesheet-byname.html
index 566a281..aa17b0f 100644
--- a/LayoutTests/fast/dom/StyleSheet/get-stylesheet-byname.html
+++ b/LayoutTests/fast/dom/StyleSheet/get-stylesheet-byname.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/StyleSheet/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/StyleSheet/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/StyleSheet/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/StyleSheet/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Text/replaceWholeText.html b/LayoutTests/fast/dom/Text/replaceWholeText.html
index ce4b27d..4ceab18 100644
--- a/LayoutTests/fast/dom/Text/replaceWholeText.html
+++ b/LayoutTests/fast/dom/Text/replaceWholeText.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Text/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Text/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Text/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Text/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/TreeWalker-currentNode.html b/LayoutTests/fast/dom/TreeWalker/TreeWalker-currentNode.html
index 308d36b..3fbf147 100644
--- a/LayoutTests/fast/dom/TreeWalker/TreeWalker-currentNode.html
+++ b/LayoutTests/fast/dom/TreeWalker/TreeWalker-currentNode.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/acceptNode-filter.html b/LayoutTests/fast/dom/TreeWalker/acceptNode-filter.html
index 0f1fff5..e0a8ac8 100644
--- a/LayoutTests/fast/dom/TreeWalker/acceptNode-filter.html
+++ b/LayoutTests/fast/dom/TreeWalker/acceptNode-filter.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/filter-throw.html b/LayoutTests/fast/dom/TreeWalker/filter-throw.html
index 04c9fcb..d338bac 100644
--- a/LayoutTests/fast/dom/TreeWalker/filter-throw.html
+++ b/LayoutTests/fast/dom/TreeWalker/filter-throw.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/previousNodeLastChildReject.html b/LayoutTests/fast/dom/TreeWalker/previousNodeLastChildReject.html
index 757b3dc..b379388 100644
--- a/LayoutTests/fast/dom/TreeWalker/previousNodeLastChildReject.html
+++ b/LayoutTests/fast/dom/TreeWalker/previousNodeLastChildReject.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/previousSiblingLastChildSkip.html b/LayoutTests/fast/dom/TreeWalker/previousSiblingLastChildSkip.html
index 155857b..04c9af1 100644
--- a/LayoutTests/fast/dom/TreeWalker/previousSiblingLastChildSkip.html
+++ b/LayoutTests/fast/dom/TreeWalker/previousSiblingLastChildSkip.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/TreeWalker/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/TreeWalker/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/TreeWalker/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/traversal-reject.html b/LayoutTests/fast/dom/TreeWalker/traversal-reject.html
index 3ae3093..ef24c92 100644
--- a/LayoutTests/fast/dom/TreeWalker/traversal-reject.html
+++ b/LayoutTests/fast/dom/TreeWalker/traversal-reject.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/traversal-skip-most.html b/LayoutTests/fast/dom/TreeWalker/traversal-skip-most.html
index a845924..f12d2b5 100644
--- a/LayoutTests/fast/dom/TreeWalker/traversal-skip-most.html
+++ b/LayoutTests/fast/dom/TreeWalker/traversal-skip-most.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/TreeWalker/traversal-skip.html b/LayoutTests/fast/dom/TreeWalker/traversal-skip.html
index a04c92b..cf94df3 100644
--- a/LayoutTests/fast/dom/TreeWalker/traversal-skip.html
+++ b/LayoutTests/fast/dom/TreeWalker/traversal-skip.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/URL-attribute-reflection.html b/LayoutTests/fast/dom/URL-attribute-reflection.html
index 9694d04..ed10496 100644
--- a/LayoutTests/fast/dom/URL-attribute-reflection.html
+++ b/LayoutTests/fast/dom/URL-attribute-reflection.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/HTMLBodyElement-window-eventListener-attributes.html b/LayoutTests/fast/dom/Window/HTMLBodyElement-window-eventListener-attributes.html
index 5b5b5ef..41804d3 100644
--- a/LayoutTests/fast/dom/Window/HTMLBodyElement-window-eventListener-attributes.html
+++ b/LayoutTests/fast/dom/Window/HTMLBodyElement-window-eventListener-attributes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html b/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html
index bf244f4..f6e83e3 100644
--- a/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html
+++ b/LayoutTests/fast/dom/Window/HTMLFrameSetElement-window-eventListener-attributes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-defineGetter.html b/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-defineGetter.html
index cc952b5..e4880b9 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-defineGetter.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-defineGetter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-with.html b/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-with.html
index 264e386..97c57ec 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-with.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto-using-with.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto.html b/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto.html
index d064a92..0905d3d 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-toString-on-proto.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-toString-using-defineGetter.html b/LayoutTests/fast/dom/Window/Location/location-override-toString-using-defineGetter.html
index 92d7233..3c781a1 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-toString-using-defineGetter.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-toString-using-defineGetter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-toString-using-with.html b/LayoutTests/fast/dom/Window/Location/location-override-toString-using-with.html
index 48b88db..25832c9 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-toString-using-with.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-toString-using-with.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-toString.html b/LayoutTests/fast/dom/Window/Location/location-override-toString.html
index be3bc87..ded5484 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-toString.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-toString.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-defineGetter.html b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-defineGetter.html
index 0396f3b..d3da221 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-defineGetter.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-defineGetter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-with.html b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-with.html
index ff5bdeb..57b7175 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-with.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto-using-with.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto.html b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto.html
index ea0a0fb..d42730e 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-on-proto.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-defineGetter.html b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-defineGetter.html
index 70370e0..0de491a 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-defineGetter.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-defineGetter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-with.html b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-with.html
index e16b405..2835db4 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-with.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-valueOf-using-with.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/location-override-valueOf.html b/LayoutTests/fast/dom/Window/Location/location-override-valueOf.html
index 5f3db95..e872d9a 100644
--- a/LayoutTests/fast/dom/Window/Location/location-override-valueOf.html
+++ b/LayoutTests/fast/dom/Window/Location/location-override-valueOf.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/window-override-location-using-defineGetter.html b/LayoutTests/fast/dom/Window/Location/window-override-location-using-defineGetter.html
index 4721e4a..c2f54de 100644
--- a/LayoutTests/fast/dom/Window/Location/window-override-location-using-defineGetter.html
+++ b/LayoutTests/fast/dom/Window/Location/window-override-location-using-defineGetter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/window-override-window-using-defineGetter.html b/LayoutTests/fast/dom/Window/Location/window-override-window-using-defineGetter.html
index d37e05d..d54ce5f 100644
--- a/LayoutTests/fast/dom/Window/Location/window-override-window-using-defineGetter.html
+++ b/LayoutTests/fast/dom/Window/Location/window-override-window-using-defineGetter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-js-object-with-toString.html b/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-js-object-with-toString.html
index cc37776..9c32ce914 100644
--- a/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-js-object-with-toString.html
+++ b/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-js-object-with-toString.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-string.html b/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-string.html
index 3b04736..b469b97 100644
--- a/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-string.html
+++ b/LayoutTests/fast/dom/Window/Location/window-shadow-location-using-string.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/Location/window-shadow-window-using-js-object-with-location-field.html b/LayoutTests/fast/dom/Window/Location/window-shadow-window-using-js-object-with-location-field.html
index 193ef2a..0f42bd3 100644
--- a/LayoutTests/fast/dom/Window/Location/window-shadow-window-using-js-object-with-location-field.html
+++ b/LayoutTests/fast/dom/Window/Location/window-shadow-window-using-js-object-with-location-field.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-    <link rel="stylesheet" href="../../../js/resources/js-test-style.css">
     <script src="../../../js/resources/js-test-pre.js"></script>
     <script src="resources/location-tests-functions.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/atob-btoa.html b/LayoutTests/fast/dom/Window/atob-btoa.html
index 36975c8..9637c8b 100644
--- a/LayoutTests/fast/dom/Window/atob-btoa.html
+++ b/LayoutTests/fast/dom/Window/atob-btoa.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/custom-constructors.html b/LayoutTests/fast/dom/Window/custom-constructors.html
index 5225cfa..4789e72 100644
--- a/LayoutTests/fast/dom/Window/custom-constructors.html
+++ b/LayoutTests/fast/dom/Window/custom-constructors.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/customized-property-survives-gc.html b/LayoutTests/fast/dom/Window/customized-property-survives-gc.html
index 89ee506..fac163a 100644
--- a/LayoutTests/fast/dom/Window/customized-property-survives-gc.html
+++ b/LayoutTests/fast/dom/Window/customized-property-survives-gc.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/dispatchEvent.html b/LayoutTests/fast/dom/Window/dispatchEvent.html
index df2b770..6bcff21 100644
--- a/LayoutTests/fast/dom/Window/dispatchEvent.html
+++ b/LayoutTests/fast/dom/Window/dispatchEvent.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/invalid-protocol.html b/LayoutTests/fast/dom/Window/invalid-protocol.html
index 4c55ed7..e2b9f59 100644
--- a/LayoutTests/fast/dom/Window/invalid-protocol.html
+++ b/LayoutTests/fast/dom/Window/invalid-protocol.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/new-window-opener.html b/LayoutTests/fast/dom/Window/new-window-opener.html
index fb38f42..41d8f43 100644
--- a/LayoutTests/fast/dom/Window/new-window-opener.html
+++ b/LayoutTests/fast/dom/Window/new-window-opener.html
@@ -2,8 +2,6 @@
 <html>
 <head>
     <title>New Window Opener Test</title>
-
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 
diff --git a/LayoutTests/fast/dom/Window/resources/window-appendages-cleared-results.html b/LayoutTests/fast/dom/Window/resources/window-appendages-cleared-results.html
index 371a921..7d5edea 100644
--- a/LayoutTests/fast/dom/Window/resources/window-appendages-cleared-results.html
+++ b/LayoutTests/fast/dom/Window/resources/window-appendages-cleared-results.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/Window/script-tests/TEMPLATE.html
index 27958bc..43f30e8 100644
--- a/LayoutTests/fast/dom/Window/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/Window/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/setTimeout-no-arguments.html b/LayoutTests/fast/dom/Window/setTimeout-no-arguments.html
index 40840a1..7f9c353 100644
--- a/LayoutTests/fast/dom/Window/setTimeout-no-arguments.html
+++ b/LayoutTests/fast/dom/Window/setTimeout-no-arguments.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script>
 
 function description(msg)
diff --git a/LayoutTests/fast/dom/Window/slow-unload-handler-only-frame-is-stopped.html b/LayoutTests/fast/dom/Window/slow-unload-handler-only-frame-is-stopped.html
index f31d90e..f6dd038 100644
--- a/LayoutTests/fast/dom/Window/slow-unload-handler-only-frame-is-stopped.html
+++ b/LayoutTests/fast/dom/Window/slow-unload-handler-only-frame-is-stopped.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script>
 if (layoutTestController) {
     layoutTestController.waitUntilDone();
diff --git a/LayoutTests/fast/dom/Window/slow-unload-handler-overwritten-date.html b/LayoutTests/fast/dom/Window/slow-unload-handler-overwritten-date.html
index 74a6a0c..c19a07b 100644
--- a/LayoutTests/fast/dom/Window/slow-unload-handler-overwritten-date.html
+++ b/LayoutTests/fast/dom/Window/slow-unload-handler-overwritten-date.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script>
 
 if (layoutTestController) {
diff --git a/LayoutTests/fast/dom/Window/slow-unload-handler.html b/LayoutTests/fast/dom/Window/slow-unload-handler.html
index 812358f..4877a53 100644
--- a/LayoutTests/fast/dom/Window/slow-unload-handler.html
+++ b/LayoutTests/fast/dom/Window/slow-unload-handler.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script>
 
 if (layoutTestController) {
diff --git a/LayoutTests/fast/dom/Window/webkitConvertPoint.html b/LayoutTests/fast/dom/Window/webkitConvertPoint.html
index f730e0a..fa9f632 100644
--- a/LayoutTests/fast/dom/Window/webkitConvertPoint.html
+++ b/LayoutTests/fast/dom/Window/webkitConvertPoint.html
@@ -4,7 +4,6 @@
   <head>
     <meta http-equiv="Content-type" content="text/html; charset=utf-8">
     <title>Test of webkitConvertPointFromNodeToPage function</title>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
     <script src="../../js/resources/js-test-pre.js"></script>
     <style type="text/css" media="screen">
       body {
diff --git a/LayoutTests/fast/dom/Window/webkitConvertPointUpdateLayout.html b/LayoutTests/fast/dom/Window/webkitConvertPointUpdateLayout.html
index 1262f31..f6a0e12 100644
--- a/LayoutTests/fast/dom/Window/webkitConvertPointUpdateLayout.html
+++ b/LayoutTests/fast/dom/Window/webkitConvertPointUpdateLayout.html
@@ -1,8 +1,6 @@
 <html>
   <head>
     <title>webkitConvertPointFromNodeToPage Test</title>
-
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css"/>
     <script src="../../js/resources/js-test-pre.js"></script>
 
     <style type="text/css" media="screen">
diff --git a/LayoutTests/fast/dom/Window/window-custom-prototype.html b/LayoutTests/fast/dom/Window/window-custom-prototype.html
index db5d25c..59841a1 100644
--- a/LayoutTests/fast/dom/Window/window-custom-prototype.html
+++ b/LayoutTests/fast/dom/Window/window-custom-prototype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/window-frames-self-referential.html b/LayoutTests/fast/dom/Window/window-frames-self-referential.html
index a0f7269..bb29a66 100644
--- a/LayoutTests/fast/dom/Window/window-frames-self-referential.html
+++ b/LayoutTests/fast/dom/Window/window-frames-self-referential.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/window-lookup-precedence.html b/LayoutTests/fast/dom/Window/window-lookup-precedence.html
index 97f99e1..6178524 100644
--- a/LayoutTests/fast/dom/Window/window-lookup-precedence.html
+++ b/LayoutTests/fast/dom/Window/window-lookup-precedence.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script type="text/javascript" src="resources/window-properties.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/Window/window-property-descriptors.html b/LayoutTests/fast/dom/Window/window-property-descriptors.html
index e6af395..73bd2cf 100644
--- a/LayoutTests/fast/dom/Window/window-property-descriptors.html
+++ b/LayoutTests/fast/dom/Window/window-property-descriptors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/window-resize-and-move-arguments.html b/LayoutTests/fast/dom/Window/window-resize-and-move-arguments.html
index 9b7e055..d65cdb0 100644
--- a/LayoutTests/fast/dom/Window/window-resize-and-move-arguments.html
+++ b/LayoutTests/fast/dom/Window/window-resize-and-move-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/window-resize-and-move-sub-frame.html b/LayoutTests/fast/dom/Window/window-resize-and-move-sub-frame.html
index de9ad5f..7b8cf80 100644
--- a/LayoutTests/fast/dom/Window/window-resize-and-move-sub-frame.html
+++ b/LayoutTests/fast/dom/Window/window-resize-and-move-sub-frame.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/window-resize.html b/LayoutTests/fast/dom/Window/window-resize.html
index b230bcf..84161f3 100644
--- a/LayoutTests/fast/dom/Window/window-resize.html
+++ b/LayoutTests/fast/dom/Window/window-resize.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/Window/window-scroll-arguments.html b/LayoutTests/fast/dom/Window/window-scroll-arguments.html
index 026d3f5..dfa09a2 100644
--- a/LayoutTests/fast/dom/Window/window-scroll-arguments.html
+++ b/LayoutTests/fast/dom/Window/window-scroll-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/XMLHttpRequest-constants.html b/LayoutTests/fast/dom/XMLHttpRequest-constants.html
index 89150fc..8c9e3d1 100644
--- a/LayoutTests/fast/dom/XMLHttpRequest-constants.html
+++ b/LayoutTests/fast/dom/XMLHttpRequest-constants.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/allowed-children.html b/LayoutTests/fast/dom/allowed-children.html
index 4c5cd03..b86fb1e 100644
--- a/LayoutTests/fast/dom/allowed-children.html
+++ b/LayoutTests/fast/dom/allowed-children.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/attribute-legacy-colors.html b/LayoutTests/fast/dom/attribute-legacy-colors.html
index 79206c5..00caf19 100644
--- a/LayoutTests/fast/dom/attribute-legacy-colors.html
+++ b/LayoutTests/fast/dom/attribute-legacy-colors.html
@@ -1,6 +1,5 @@
 <!DOCTYPE HTML>
 <meta charset=utf8>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <body>
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="script-tests/attribute-legacy-colors.js"></script>
diff --git a/LayoutTests/fast/dom/boolean-attribute-reflection.html b/LayoutTests/fast/dom/boolean-attribute-reflection.html
index 77679ff..41cfde5 100644
--- a/LayoutTests/fast/dom/boolean-attribute-reflection.html
+++ b/LayoutTests/fast/dom/boolean-attribute-reflection.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/call-a-constructor-as-a-function-expected.txt b/LayoutTests/fast/dom/call-a-constructor-as-a-function-expected.txt
index 8affdc6..a652996 100644
--- a/LayoutTests/fast/dom/call-a-constructor-as-a-function-expected.txt
+++ b/LayoutTests/fast/dom/call-a-constructor-as-a-function-expected.txt
@@ -1,5 +1,8 @@
 This tests if TypeError is thrown or not when we call a constructor as a normal function.
 
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
 PASS ArrayBuffer() threw exception TypeError: '[object ArrayBufferConstructor]' is not a function (evaluating 'ArrayBuffer()').
 SKIP AudioContext is not implemented.
 PASS FormData() threw exception TypeError: '[object FormDataConstructor]' is not a function (evaluating 'FormData()').
diff --git a/LayoutTests/fast/dom/call-a-constructor-as-a-function.html b/LayoutTests/fast/dom/call-a-constructor-as-a-function.html
index 075736e..b28988b 100644
--- a/LayoutTests/fast/dom/call-a-constructor-as-a-function.html
+++ b/LayoutTests/fast/dom/call-a-constructor-as-a-function.html
@@ -1,15 +1,11 @@
 <!DOCTYPE html>
 <html>
-<head>
-<script src="../js/resources/js-test-pre.js"></script>
-</head>
 <body>
-<div id="console">
-<p>
-This tests if TypeError is thrown or not when we call a constructor as a normal function.
-</p>
-</div>
+<script src="../js/resources/js-test-pre.js"></script>
 <script>
+
+description("This tests if TypeError is thrown or not when we call a constructor as a normal function.");
+
 var test_constructors = ["ArrayBuffer", "AudioContext", "FormData", "DataView", "EventSource", "FileReader", "Float32Array", "Float64Array", "Audio", "Image", "Option", "Int16Array", "Int32Array", "Int8Array", "MessageChannel", "webkitPeerConnection", "SharedWorker", "Uint16Array", "Uint32Array", "Uint8Array", "WebKitCSSMatrix", "WebKitPoint", "WebSocket", "Worker", "XMLHttpRequest", "XSLTProcessor"];
 
 test_constructors.forEach(function (constructor) {
diff --git a/LayoutTests/fast/dom/console-log-stack-overflow.html b/LayoutTests/fast/dom/console-log-stack-overflow.html
index 5952cc9..9f4178b 100644
--- a/LayoutTests/fast/dom/console-log-stack-overflow.html
+++ b/LayoutTests/fast/dom/console-log-stack-overflow.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body onload='load(1)'>
diff --git a/LayoutTests/fast/dom/constructed-objects-prototypes.html b/LayoutTests/fast/dom/constructed-objects-prototypes.html
index 420fbed..a5b4e5d 100644
--- a/LayoutTests/fast/dom/constructed-objects-prototypes.html
+++ b/LayoutTests/fast/dom/constructed-objects-prototypes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/constructors-cached-navigate.html b/LayoutTests/fast/dom/constructors-cached-navigate.html
index aa543df..9740354 100644
--- a/LayoutTests/fast/dom/constructors-cached-navigate.html
+++ b/LayoutTests/fast/dom/constructors-cached-navigate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/constructors-cached.html b/LayoutTests/fast/dom/constructors-cached.html
index b989b30..e3fcd9d 100644
--- a/LayoutTests/fast/dom/constructors-cached.html
+++ b/LayoutTests/fast/dom/constructors-cached.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/css-RGBValue.html b/LayoutTests/fast/dom/css-RGBValue.html
index c722d9f..c04a828 100644
--- a/LayoutTests/fast/dom/css-RGBValue.html
+++ b/LayoutTests/fast/dom/css-RGBValue.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/css-mediarule-parentRule.html b/LayoutTests/fast/dom/css-mediarule-parentRule.html
index fc12a71..cdc70c8 100644
--- a/LayoutTests/fast/dom/css-mediarule-parentRule.html
+++ b/LayoutTests/fast/dom/css-mediarule-parentRule.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/dataset-gc.html b/LayoutTests/fast/dom/dataset-gc.html
index d32b0ad..b375ef5 100644
--- a/LayoutTests/fast/dom/dataset-gc.html
+++ b/LayoutTests/fast/dom/dataset-gc.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/dataset.html b/LayoutTests/fast/dom/dataset.html
index 8d79b8b..dd36ad6 100644
--- a/LayoutTests/fast/dom/dataset.html
+++ b/LayoutTests/fast/dom/dataset.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/document-all-select.html b/LayoutTests/fast/dom/document-all-select.html
index 92ba6d0..2a5610c 100644
--- a/LayoutTests/fast/dom/document-all-select.html
+++ b/LayoutTests/fast/dom/document-all-select.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 if (window.layoutTestController)
diff --git a/LayoutTests/fast/dom/document-dir-property.html b/LayoutTests/fast/dom/document-dir-property.html
index ebcbc35..f222715 100644
--- a/LayoutTests/fast/dom/document-dir-property.html
+++ b/LayoutTests/fast/dom/document-dir-property.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script>
 var headReadDocumentDir = document.dir;
 document.dir = "rtl";
diff --git a/LayoutTests/fast/dom/document-head.html b/LayoutTests/fast/dom/document-head.html
index c6e9170..9d8407b 100644
--- a/LayoutTests/fast/dom/document-head.html
+++ b/LayoutTests/fast/dom/document-head.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/document-set-body.html b/LayoutTests/fast/dom/document-set-body.html
index 68e5043..9546970 100644
--- a/LayoutTests/fast/dom/document-set-body.html
+++ b/LayoutTests/fast/dom/document-set-body.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/dom-constructors.html b/LayoutTests/fast/dom/dom-constructors.html
index 1369156..91bbb93 100644
--- a/LayoutTests/fast/dom/dom-constructors.html
+++ b/LayoutTests/fast/dom/dom-constructors.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/domtimestamp-is-number.html b/LayoutTests/fast/dom/domtimestamp-is-number.html
index 0e72f77..904e564 100644
--- a/LayoutTests/fast/dom/domtimestamp-is-number.html
+++ b/LayoutTests/fast/dom/domtimestamp-is-number.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="do_check(event)">
diff --git a/LayoutTests/fast/dom/elementFromPoint-relative-to-viewport.html b/LayoutTests/fast/dom/elementFromPoint-relative-to-viewport.html
index 46d53bf..02f3a2b 100644
--- a/LayoutTests/fast/dom/elementFromPoint-relative-to-viewport.html
+++ b/LayoutTests/fast/dom/elementFromPoint-relative-to-viewport.html
@@ -1,4 +1,4 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
+
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
     .test {
diff --git a/LayoutTests/fast/dom/error-to-string-stack-overflow-expected.txt b/LayoutTests/fast/dom/error-to-string-stack-overflow-expected.txt
index f81e56d..a178700 100644
--- a/LayoutTests/fast/dom/error-to-string-stack-overflow-expected.txt
+++ b/LayoutTests/fast/dom/error-to-string-stack-overflow-expected.txt
@@ -1,4 +1,4 @@
-CONSOLE MESSAGE: line 15: RangeError: Maximum call stack size exceeded.
+CONSOLE MESSAGE: line 14: RangeError: Maximum call stack size exceeded.
 Regression test for https://bugs.webkit.org/show_bug.cgi?id=30774. This test passes if it doesn't crash.
 
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
diff --git a/LayoutTests/fast/dom/error-to-string-stack-overflow.html b/LayoutTests/fast/dom/error-to-string-stack-overflow.html
index 072f581..d82dc31 100644
--- a/LayoutTests/fast/dom/error-to-string-stack-overflow.html
+++ b/LayoutTests/fast/dom/error-to-string-stack-overflow.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body onload='load()'>
diff --git a/LayoutTests/fast/dom/event-attribute-availability.html b/LayoutTests/fast/dom/event-attribute-availability.html
index 42ae1d9..b6df49bf 100644
--- a/LayoutTests/fast/dom/event-attribute-availability.html
+++ b/LayoutTests/fast/dom/event-attribute-availability.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/icon-size-property.html b/LayoutTests/fast/dom/icon-size-property.html
index 0cf2009..6db0cd9 100644
--- a/LayoutTests/fast/dom/icon-size-property.html
+++ b/LayoutTests/fast/dom/icon-size-property.html
@@ -3,7 +3,6 @@
   <link id="rel-icon" rel="icon" sizes="23x47 19x42" type="image/x-icon" href="http://test.com/oldfavicon.ico"/>
   <link id="no-sizes" rel="icon" type="image/x-icon" href="http://test.com/oldfavicon.ico"/>
   <link id="empty-sizes" rel="icon" sizes="" type="image/x-icon" href="http://test.com/oldfavicon.ico"/>
-  <link rel="stylesheet" href="../js/resources/js-test-style.css">
 
   <script src="../js/resources/js-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/dom/incompatible-operations.html b/LayoutTests/fast/dom/incompatible-operations.html
index a77a521..e60e5e4 100644
--- a/LayoutTests/fast/dom/incompatible-operations.html
+++ b/LayoutTests/fast/dom/incompatible-operations.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/inner-text-first-letter.html b/LayoutTests/fast/dom/inner-text-first-letter.html
index 6c32033..9082c2a 100644
--- a/LayoutTests/fast/dom/inner-text-first-letter.html
+++ b/LayoutTests/fast/dom/inner-text-first-letter.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 .first:first-letter {
diff --git a/LayoutTests/fast/dom/javascript-url-exception-isolation.html b/LayoutTests/fast/dom/javascript-url-exception-isolation.html
index 574e3f0..02b944f 100644
--- a/LayoutTests/fast/dom/javascript-url-exception-isolation.html
+++ b/LayoutTests/fast/dom/javascript-url-exception-isolation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/location-new-window-no-crash.html b/LayoutTests/fast/dom/location-new-window-no-crash.html
index 2db9ba8..7b2816f 100644
--- a/LayoutTests/fast/dom/location-new-window-no-crash.html
+++ b/LayoutTests/fast/dom/location-new-window-no-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/node-filter-detached-iframe-crash.html b/LayoutTests/fast/dom/node-filter-detached-iframe-crash.html
index e573e5e..091698f 100644
--- a/LayoutTests/fast/dom/node-filter-detached-iframe-crash.html
+++ b/LayoutTests/fast/dom/node-filter-detached-iframe-crash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
     if (window.layoutTestController) {
diff --git a/LayoutTests/fast/dom/node-iterator-with-doctype-root.html b/LayoutTests/fast/dom/node-iterator-with-doctype-root.html
index 4b96c5e..d7a8a5f 100644
--- a/LayoutTests/fast/dom/node-iterator-with-doctype-root.html
+++ b/LayoutTests/fast/dom/node-iterator-with-doctype-root.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/node-prefix-setter-namespace-exception.html b/LayoutTests/fast/dom/node-prefix-setter-namespace-exception.html
index 5b9480a..6d4166f 100644
--- a/LayoutTests/fast/dom/node-prefix-setter-namespace-exception.html
+++ b/LayoutTests/fast/dom/node-prefix-setter-namespace-exception.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/nodesFromRect-inner-documents-expected.txt b/LayoutTests/fast/dom/nodesFromRect-inner-documents-expected.txt
index 912af15..33d00ab 100644
--- a/LayoutTests/fast/dom/nodesFromRect-inner-documents-expected.txt
+++ b/LayoutTests/fast/dom/nodesFromRect-inner-documents-expected.txt
@@ -1,4 +1,5 @@
-A   PASS successfullyParsed is true
+A  
+PASS successfullyParsed is true
 
 TEST COMPLETE
 PASS All correct nodes found for rect
diff --git a/LayoutTests/fast/dom/nodesFromRect-inner-documents.html b/LayoutTests/fast/dom/nodesFromRect-inner-documents.html
index 962887b..7963e70 100644
--- a/LayoutTests/fast/dom/nodesFromRect-inner-documents.html
+++ b/LayoutTests/fast/dom/nodesFromRect-inner-documents.html
@@ -54,7 +54,7 @@
 <body id="body">
   <a id="a1" href="#">A</a>
   <iframe id="iframe1" src="data:text/html,<div>div</div><p>p</p>"></iframe>
-  <span id="console"></span>
+  <div id="console"></div>
   <script src="../js/resources/js-test-post.js"></script>
 </body>
 </html>
diff --git a/LayoutTests/fast/dom/non-numeric-values-numeric-parameters.html b/LayoutTests/fast/dom/non-numeric-values-numeric-parameters.html
index e9e8dbb..1e02911 100644
--- a/LayoutTests/fast/dom/non-numeric-values-numeric-parameters.html
+++ b/LayoutTests/fast/dom/non-numeric-values-numeric-parameters.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/ping-attribute-dom-binding.html b/LayoutTests/fast/dom/ping-attribute-dom-binding.html
index 7d70af3..f70fcb6 100644
--- a/LayoutTests/fast/dom/ping-attribute-dom-binding.html
+++ b/LayoutTests/fast/dom/ping-attribute-dom-binding.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/prototype-inheritance-2.html b/LayoutTests/fast/dom/prototype-inheritance-2.html
index 9dee578..0740e1c 100644
--- a/LayoutTests/fast/dom/prototype-inheritance-2.html
+++ b/LayoutTests/fast/dom/prototype-inheritance-2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/prototype-inheritance.html b/LayoutTests/fast/dom/prototype-inheritance.html
index 96f645c..2323675 100644
--- a/LayoutTests/fast/dom/prototype-inheritance.html
+++ b/LayoutTests/fast/dom/prototype-inheritance.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/prototype-property.html b/LayoutTests/fast/dom/prototype-property.html
index 97ff825..34ae3da 100644
--- a/LayoutTests/fast/dom/prototype-property.html
+++ b/LayoutTests/fast/dom/prototype-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/resources/navigation-type-matches-querystring.html b/LayoutTests/fast/dom/resources/navigation-type-matches-querystring.html
index 4d15b0a..25ef931 100644
--- a/LayoutTests/fast/dom/resources/navigation-type-matches-querystring.html
+++ b/LayoutTests/fast/dom/resources/navigation-type-matches-querystring.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/script-tests/TEMPLATE.html b/LayoutTests/fast/dom/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/dom/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/dom/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/select-selectedIndex-multiple.html b/LayoutTests/fast/dom/select-selectedIndex-multiple.html
index 76e27c3..91306c7 100644
--- a/LayoutTests/fast/dom/select-selectedIndex-multiple.html
+++ b/LayoutTests/fast/dom/select-selectedIndex-multiple.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <select multiple id="test" size="3">
 </select>
 <div id="console"></div>
diff --git a/LayoutTests/fast/dom/select-selectedIndex.html b/LayoutTests/fast/dom/select-selectedIndex.html
index e5f7aec..d4497ad 100644
--- a/LayoutTests/fast/dom/select-selectedIndex.html
+++ b/LayoutTests/fast/dom/select-selectedIndex.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <select id="test" size="3">
 </select>
 <div id="console"></div>
diff --git a/LayoutTests/fast/dom/set-custom-validity-with-too-few-arguments.html b/LayoutTests/fast/dom/set-custom-validity-with-too-few-arguments.html
index c0b8537..8658729 100644
--- a/LayoutTests/fast/dom/set-custom-validity-with-too-few-arguments.html
+++ b/LayoutTests/fast/dom/set-custom-validity-with-too-few-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/setAttribute-using-initial-input-value.html b/LayoutTests/fast/dom/setAttribute-using-initial-input-value.html
index 8f40c7e..a65126f 100644
--- a/LayoutTests/fast/dom/setAttribute-using-initial-input-value.html
+++ b/LayoutTests/fast/dom/setAttribute-using-initial-input-value.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
     if (window.layoutTestController)
diff --git a/LayoutTests/fast/dom/setAttributeNS-prefix-and-null-namespace.html b/LayoutTests/fast/dom/setAttributeNS-prefix-and-null-namespace.html
index 4740ed0..a7a1d25 100644
--- a/LayoutTests/fast/dom/setAttributeNS-prefix-and-null-namespace.html
+++ b/LayoutTests/fast/dom/setAttributeNS-prefix-and-null-namespace.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/setPrimitiveValue-exceptions.html b/LayoutTests/fast/dom/setPrimitiveValue-exceptions.html
index 35cd7bb..c867131 100644
--- a/LayoutTests/fast/dom/setPrimitiveValue-exceptions.html
+++ b/LayoutTests/fast/dom/setPrimitiveValue-exceptions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/setter-type-enforcement.html b/LayoutTests/fast/dom/setter-type-enforcement.html
index fb41ff2..13be45f 100644
--- a/LayoutTests/fast/dom/setter-type-enforcement.html
+++ b/LayoutTests/fast/dom/setter-type-enforcement.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/webtiming-document-open.html b/LayoutTests/fast/dom/webtiming-document-open.html
index e2330ba..cc2a643 100644
--- a/LayoutTests/fast/dom/webtiming-document-open.html
+++ b/LayoutTests/fast/dom/webtiming-document-open.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/webtiming-navigate-within-document.html b/LayoutTests/fast/dom/webtiming-navigate-within-document.html
index 5cfd1eb..41ecb30 100644
--- a/LayoutTests/fast/dom/webtiming-navigate-within-document.html
+++ b/LayoutTests/fast/dom/webtiming-navigate-within-document.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/webtiming.html b/LayoutTests/fast/dom/webtiming.html
index 5c29e9d..1bab44e 100644
--- a/LayoutTests/fast/dom/webtiming.html
+++ b/LayoutTests/fast/dom/webtiming.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/dom/wrapper-classes.html b/LayoutTests/fast/dom/wrapper-classes.html
index 7002697..1a165fd 100644
--- a/LayoutTests/fast/dom/wrapper-classes.html
+++ b/LayoutTests/fast/dom/wrapper-classes.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style id="style" media="screen">
 .non-existent-class {
diff --git a/LayoutTests/fast/dom/wrapper-identity.html b/LayoutTests/fast/dom/wrapper-identity.html
index 2207a14..05455b8 100644
--- a/LayoutTests/fast/dom/wrapper-identity.html
+++ b/LayoutTests/fast/dom/wrapper-identity.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/wrapper-identity-base.js"></script>
 
diff --git a/LayoutTests/fast/encoding/char-decoding-mac.html b/LayoutTests/fast/encoding/char-decoding-mac.html
index 6caebee..517a76c 100644
--- a/LayoutTests/fast/encoding/char-decoding-mac.html
+++ b/LayoutTests/fast/encoding/char-decoding-mac.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/char-decoding-utils.js"></script>
 </head>
diff --git a/LayoutTests/fast/encoding/char-decoding.html b/LayoutTests/fast/encoding/char-decoding.html
index bd4068b..2529039 100644
--- a/LayoutTests/fast/encoding/char-decoding.html
+++ b/LayoutTests/fast/encoding/char-decoding.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/char-decoding-utils.js"></script>
 </head>
diff --git a/LayoutTests/fast/encoding/char-encoding-mac.html b/LayoutTests/fast/encoding/char-encoding-mac.html
index 3528275..069922f 100644
--- a/LayoutTests/fast/encoding/char-encoding-mac.html
+++ b/LayoutTests/fast/encoding/char-encoding-mac.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script src="resources/char-encoding-utils.js"></script>
diff --git a/LayoutTests/fast/encoding/char-encoding.html b/LayoutTests/fast/encoding/char-encoding.html
index 4112d45..6e7fdb8 100644
--- a/LayoutTests/fast/encoding/char-encoding.html
+++ b/LayoutTests/fast/encoding/char-encoding.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script src="resources/char-encoding-utils.js"></script>
diff --git a/LayoutTests/fast/encoding/idn-security.html b/LayoutTests/fast/encoding/idn-security.html
index 0314d5d..8c2b54e 100644
--- a/LayoutTests/fast/encoding/idn-security.html
+++ b/LayoutTests/fast/encoding/idn-security.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/encoding/invalid-xml.html b/LayoutTests/fast/encoding/invalid-xml.html
index 8fb35f5..a149e4f 100644
--- a/LayoutTests/fast/encoding/invalid-xml.html
+++ b/LayoutTests/fast/encoding/invalid-xml.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/blur-focus-window-should-blur-focus-element.html b/LayoutTests/fast/events/blur-focus-window-should-blur-focus-element.html
index 49f85cc..b57ed8d 100644
--- a/LayoutTests/fast/events/blur-focus-window-should-blur-focus-element.html
+++ b/LayoutTests/fast/events/blur-focus-window-should-blur-focus-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/bogus-dropEffect-effectAllowed.html b/LayoutTests/fast/events/bogus-dropEffect-effectAllowed.html
index 92e49ac..c44a7fc 100644
--- a/LayoutTests/fast/events/bogus-dropEffect-effectAllowed.html
+++ b/LayoutTests/fast/events/bogus-dropEffect-effectAllowed.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-mouse-click.html b/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-mouse-click.html
index 420f593..5a3ad49 100644
--- a/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-mouse-click.html
+++ b/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-mouse-click.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/record-events.js"></script>
 <script>
diff --git a/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-tab.html b/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-tab.html
index d52cbb4..a93ad1c 100644
--- a/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-tab.html
+++ b/LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-tab.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/record-events.js"></script>
 <script>
diff --git a/LayoutTests/fast/events/clientXY-in-zoom-and-scroll.html b/LayoutTests/fast/events/clientXY-in-zoom-and-scroll.html
index 7833de8..0a937ea 100644
--- a/LayoutTests/fast/events/clientXY-in-zoom-and-scroll.html
+++ b/LayoutTests/fast/events/clientXY-in-zoom-and-scroll.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
     #pusher {
diff --git a/LayoutTests/fast/events/constructors/before-load-event-constructor.html b/LayoutTests/fast/events/constructors/before-load-event-constructor.html
index b96bd35..04d9cff 100644
--- a/LayoutTests/fast/events/constructors/before-load-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/before-load-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/close-event-constructor.html b/LayoutTests/fast/events/constructors/close-event-constructor.html
index 9de3c32..e12a983 100644
--- a/LayoutTests/fast/events/constructors/close-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/close-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/custom-event-constructor.html b/LayoutTests/fast/events/constructors/custom-event-constructor.html
index 6bd6268..55f68ae 100644
--- a/LayoutTests/fast/events/constructors/custom-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/custom-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/error-event-constructor.html b/LayoutTests/fast/events/constructors/error-event-constructor.html
index 1f606a9..32698f0 100644
--- a/LayoutTests/fast/events/constructors/error-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/error-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/event-constructors.html b/LayoutTests/fast/events/constructors/event-constructors.html
index fd7b6f1..b3067b1 100644
--- a/LayoutTests/fast/events/constructors/event-constructors.html
+++ b/LayoutTests/fast/events/constructors/event-constructors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/hash-change-event-constructor.html b/LayoutTests/fast/events/constructors/hash-change-event-constructor.html
index 17c249d..2f2fa12 100644
--- a/LayoutTests/fast/events/constructors/hash-change-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/hash-change-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/message-event-constructor.html b/LayoutTests/fast/events/constructors/message-event-constructor.html
index f593cf8..0db0443 100644
--- a/LayoutTests/fast/events/constructors/message-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/message-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/overflow-event-constructor.html b/LayoutTests/fast/events/constructors/overflow-event-constructor.html
index 25fb719..e5d6827 100644
--- a/LayoutTests/fast/events/constructors/overflow-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/overflow-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/page-transition-event-constructor.html b/LayoutTests/fast/events/constructors/page-transition-event-constructor.html
index 87d9420..674bf26 100644
--- a/LayoutTests/fast/events/constructors/page-transition-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/page-transition-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/pop-state-event-constructor.html b/LayoutTests/fast/events/constructors/pop-state-event-constructor.html
index 0180757..f63b77d 100644
--- a/LayoutTests/fast/events/constructors/pop-state-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/pop-state-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/progress-event-constructor.html b/LayoutTests/fast/events/constructors/progress-event-constructor.html
index 0d56e36..72455ce 100644
--- a/LayoutTests/fast/events/constructors/progress-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/progress-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/webkit-animation-event-constructor.html b/LayoutTests/fast/events/constructors/webkit-animation-event-constructor.html
index 1b1edd0..26c77e3 100644
--- a/LayoutTests/fast/events/constructors/webkit-animation-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/webkit-animation-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/constructors/webkit-transition-event-constructor.html b/LayoutTests/fast/events/constructors/webkit-transition-event-constructor.html
index f1ff4ff..48edf42 100644
--- a/LayoutTests/fast/events/constructors/webkit-transition-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/webkit-transition-event-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/content-changed-during-drop.html b/LayoutTests/fast/events/content-changed-during-drop.html
index 2025353..706bdbc 100644
--- a/LayoutTests/fast/events/content-changed-during-drop.html
+++ b/LayoutTests/fast/events/content-changed-during-drop.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
         <script>
             var successfullyParsed = false;
diff --git a/LayoutTests/fast/events/continuous-platform-wheelevent-in-scrolling-div.html b/LayoutTests/fast/events/continuous-platform-wheelevent-in-scrolling-div.html
index 7987560..bbcafc2 100644
--- a/LayoutTests/fast/events/continuous-platform-wheelevent-in-scrolling-div.html
+++ b/LayoutTests/fast/events/continuous-platform-wheelevent-in-scrolling-div.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
         <script>
             var expectedScrollTop = 200;
diff --git a/LayoutTests/fast/events/create-document-crash-on-attach-event.html b/LayoutTests/fast/events/create-document-crash-on-attach-event.html
index c2a0b05..72250c9 100644
--- a/LayoutTests/fast/events/create-document-crash-on-attach-event.html
+++ b/LayoutTests/fast/events/create-document-crash-on-attach-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/drag-and-drop-dataTransfer-types-nocrash.html b/LayoutTests/fast/events/drag-and-drop-dataTransfer-types-nocrash.html
index 40eb13f..159e2b7 100644
--- a/LayoutTests/fast/events/drag-and-drop-dataTransfer-types-nocrash.html
+++ b/LayoutTests/fast/events/drag-and-drop-dataTransfer-types-nocrash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/drag-and-drop-fire-drag-dragover.html b/LayoutTests/fast/events/drag-and-drop-fire-drag-dragover.html
index 8dfe33c..f67fe06 100644
--- a/LayoutTests/fast/events/drag-and-drop-fire-drag-dragover.html
+++ b/LayoutTests/fast/events/drag-and-drop-fire-drag-dragover.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/drag-and-drop.html b/LayoutTests/fast/events/drag-and-drop.html
index d8f9fe6..39b261a 100644
--- a/LayoutTests/fast/events/drag-and-drop.html
+++ b/LayoutTests/fast/events/drag-and-drop.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/dropzone-001.html b/LayoutTests/fast/events/dropzone-001.html
index 78ad51d..e411520 100644
--- a/LayoutTests/fast/events/dropzone-001.html
+++ b/LayoutTests/fast/events/dropzone-001.html
@@ -1,6 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/dropzone-002.html b/LayoutTests/fast/events/dropzone-002.html
index 7b6ba3d..6e6690b 100644
--- a/LayoutTests/fast/events/dropzone-002.html
+++ b/LayoutTests/fast/events/dropzone-002.html
@@ -1,6 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/dropzone-003.html b/LayoutTests/fast/events/dropzone-003.html
index 960ff37..6b42a36 100644
--- a/LayoutTests/fast/events/dropzone-003.html
+++ b/LayoutTests/fast/events/dropzone-003.html
@@ -1,6 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget, #dragMe { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/dropzone-004.html b/LayoutTests/fast/events/dropzone-004.html
index 52099a5..7e062fd 100644
--- a/LayoutTests/fast/events/dropzone-004.html
+++ b/LayoutTests/fast/events/dropzone-004.html
@@ -1,6 +1,5 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #dropTarget { text-align: center; display: table-cell; vertical-align: middle }
diff --git a/LayoutTests/fast/events/event-creation.html b/LayoutTests/fast/events/event-creation.html
index 9c741bc..360e11e 100644
--- a/LayoutTests/fast/events/event-creation.html
+++ b/LayoutTests/fast/events/event-creation.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/event-function-toString.html b/LayoutTests/fast/events/event-function-toString.html
index 44babef..8210c70 100644
--- a/LayoutTests/fast/events/event-function-toString.html
+++ b/LayoutTests/fast/events/event-function-toString.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/event-input-contentEditable.html b/LayoutTests/fast/events/event-input-contentEditable.html
index cf7a61f..df535f6 100644
--- a/LayoutTests/fast/events/event-input-contentEditable.html
+++ b/LayoutTests/fast/events/event-input-contentEditable.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/event-listener-list-mutation.html b/LayoutTests/fast/events/event-listener-list-mutation.html
index 454f3e0..6026a49 100644
--- a/LayoutTests/fast/events/event-listener-list-mutation.html
+++ b/LayoutTests/fast/events/event-listener-list-mutation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/event-listener-map-rehash-crash.html b/LayoutTests/fast/events/event-listener-map-rehash-crash.html
index 87831cc..483826c 100644
--- a/LayoutTests/fast/events/event-listener-map-rehash-crash.html
+++ b/LayoutTests/fast/events/event-listener-map-rehash-crash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
     function stub() {}
diff --git a/LayoutTests/fast/events/event-listener-sharing.html b/LayoutTests/fast/events/event-listener-sharing.html
index 5a68ff7..29910b7 100644
--- a/LayoutTests/fast/events/event-listener-sharing.html
+++ b/LayoutTests/fast/events/event-listener-sharing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/fire-mousedown-while-pressing-mouse-button.html b/LayoutTests/fast/events/fire-mousedown-while-pressing-mouse-button.html
index c75ca26..93fbdb3 100644
--- a/LayoutTests/fast/events/fire-mousedown-while-pressing-mouse-button.html
+++ b/LayoutTests/fast/events/fire-mousedown-while-pressing-mouse-button.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 #square {
diff --git a/LayoutTests/fast/events/fire-popstate-event.html b/LayoutTests/fast/events/fire-popstate-event.html
index 935594dd..c3f340d 100644
--- a/LayoutTests/fast/events/fire-popstate-event.html
+++ b/LayoutTests/fast/events/fire-popstate-event.html
@@ -1,6 +1,5 @@
 
 <html>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <body style="min-width: 5000px; min-height: 5000px">
 <script>
diff --git a/LayoutTests/fast/events/fire-scroll-event-element.html b/LayoutTests/fast/events/fire-scroll-event-element.html
index 772c85e..334aff4 100644
--- a/LayoutTests/fast/events/fire-scroll-event-element.html
+++ b/LayoutTests/fast/events/fire-scroll-event-element.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <body>
 <div id="container" style="overflow: auto; width: 500px; height: 500px">
diff --git a/LayoutTests/fast/events/fire-scroll-event.html b/LayoutTests/fast/events/fire-scroll-event.html
index 0dc4e7b..64d2090 100644
--- a/LayoutTests/fast/events/fire-scroll-event.html
+++ b/LayoutTests/fast/events/fire-scroll-event.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <body style="min-width: 5000px; min-height: 5000px">
 <script>
diff --git a/LayoutTests/fast/events/iframe-onmousemove.html b/LayoutTests/fast/events/iframe-onmousemove.html
index 93242bc..5783ad2 100644
--- a/LayoutTests/fast/events/iframe-onmousemove.html
+++ b/LayoutTests/fast/events/iframe-onmousemove.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 if (window.layoutTestController)
diff --git a/LayoutTests/fast/events/imagemap-norender-crash.html b/LayoutTests/fast/events/imagemap-norender-crash.html
index 7aacdd2..ee22175 100644
--- a/LayoutTests/fast/events/imagemap-norender-crash.html
+++ b/LayoutTests/fast/events/imagemap-norender-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script>
 var successfullyParsed = false;
 </script>
diff --git a/LayoutTests/fast/events/init-events.html b/LayoutTests/fast/events/init-events.html
index 0562845..753398b 100644
--- a/LayoutTests/fast/events/init-events.html
+++ b/LayoutTests/fast/events/init-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/inputText-never-fired-on-keydown-cancel.html b/LayoutTests/fast/events/inputText-never-fired-on-keydown-cancel.html
index 5bba046..aff8464 100644
--- a/LayoutTests/fast/events/inputText-never-fired-on-keydown-cancel.html
+++ b/LayoutTests/fast/events/inputText-never-fired-on-keydown-cancel.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/invalid-001.html b/LayoutTests/fast/events/invalid-001.html
index 1884f2f..f880d8f 100644
--- a/LayoutTests/fast/events/invalid-001.html
+++ b/LayoutTests/fast/events/invalid-001.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/invalid-002.html b/LayoutTests/fast/events/invalid-002.html
index a0d2a11..67853fb 100644
--- a/LayoutTests/fast/events/invalid-002.html
+++ b/LayoutTests/fast/events/invalid-002.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/invalid-003.html b/LayoutTests/fast/events/invalid-003.html
index aff2536..b641314 100644
--- a/LayoutTests/fast/events/invalid-003.html
+++ b/LayoutTests/fast/events/invalid-003.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/invalid-004.html b/LayoutTests/fast/events/invalid-004.html
index 98c6ecf..f349e76 100644
--- a/LayoutTests/fast/events/invalid-004.html
+++ b/LayoutTests/fast/events/invalid-004.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/invalid-005.html b/LayoutTests/fast/events/invalid-005.html
index 10e269f..ac2aff9 100644
--- a/LayoutTests/fast/events/invalid-005.html
+++ b/LayoutTests/fast/events/invalid-005.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/keydown-numpad-keys.html b/LayoutTests/fast/events/keydown-numpad-keys.html
index 4d8c72a..a29ee65 100644
--- a/LayoutTests/fast/events/keydown-numpad-keys.html
+++ b/LayoutTests/fast/events/keydown-numpad-keys.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/message-port-multi.html b/LayoutTests/fast/events/message-port-multi.html
index 7048f55..106f872 100644
--- a/LayoutTests/fast/events/message-port-multi.html
+++ b/LayoutTests/fast/events/message-port-multi.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/mouse-click-events.html b/LayoutTests/fast/events/mouse-click-events.html
index 548db32..7c1e967 100644
--- a/LayoutTests/fast/events/mouse-click-events.html
+++ b/LayoutTests/fast/events/mouse-click-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/mouse-focus-imagemap.html b/LayoutTests/fast/events/mouse-focus-imagemap.html
index 9f39b1b..0c6ce27 100644
--- a/LayoutTests/fast/events/mouse-focus-imagemap.html
+++ b/LayoutTests/fast/events/mouse-focus-imagemap.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script>
 var successfullyParsed = false;
 </script>
diff --git a/LayoutTests/fast/events/mouseout-dead-node.html b/LayoutTests/fast/events/mouseout-dead-node.html
index 119a5a5..b4b5e78 100644
--- a/LayoutTests/fast/events/mouseout-dead-node.html
+++ b/LayoutTests/fast/events/mouseout-dead-node.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/mouseover-button.html b/LayoutTests/fast/events/mouseover-button.html
index 24fe300..28105b8 100644
--- a/LayoutTests/fast/events/mouseover-button.html
+++ b/LayoutTests/fast/events/mouseover-button.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
     </head>
 
diff --git a/LayoutTests/fast/events/onblur-remove.html b/LayoutTests/fast/events/onblur-remove.html
index d378a8f..0434e14 100644
--- a/LayoutTests/fast/events/onblur-remove.html
+++ b/LayoutTests/fast/events/onblur-remove.html
@@ -1,6 +1,5 @@
 <html>
   <head>
-      <link rel="stylesheet" href="../js/resources/js-test-style.css">
       <script src="../js/resources/js-test-pre.js"></script>
     <script>
         if (window.layoutTestController)
diff --git a/LayoutTests/fast/events/onchange-text-form-field.html b/LayoutTests/fast/events/onchange-text-form-field.html
index c6b7438..2fceb48 100644
--- a/LayoutTests/fast/events/onchange-text-form-field.html
+++ b/LayoutTests/fast/events/onchange-text-form-field.html
@@ -63,31 +63,31 @@
     shouldBe("simulateTextEntry(elements[0], '', BEFORE);", "false");
     shouldBe("simulateTextEntry(elements[0], 'fo', BEFORE);", "true");
     shouldBe("simulateTextEntry(elements[0], 'o');", "true");
-    shouldBe("simulateTextEntry(elements[0], 'foo', BEFORE); ", "false");
-    shouldBe("simulateTextEntry(elements[0], 'foo', BEFORE); ", "false");
-    shouldBe("simulateTextEntry(elements[0], ' '); ", "true");
-    shouldBe("simulateTextEntry(elements[0], 'foo bar', BEFORE); ", "true");
-    shouldBe("simulateTextEntry(elements[0], 'foo bar', BEFORE); ", "false");
-    shouldBe("setTextValue(elements[0], 'foo'); ", "false");
+    shouldBe("simulateTextEntry(elements[0], 'foo', BEFORE);", "false");
+    shouldBe("simulateTextEntry(elements[0], 'foo', BEFORE);", "false");
+    shouldBe("simulateTextEntry(elements[0], ' ');", "true");
+    shouldBe("simulateTextEntry(elements[0], 'foo bar', BEFORE);", "true");
+    shouldBe("simulateTextEntry(elements[0], 'foo bar', BEFORE);", "false");
+    shouldBe("setTextValue(elements[0], 'foo');", "false");
     shouldBe("simulateTextEntry(elements[0], 'foo bar', BEFORE);", "true");
 
     shouldBe("simulateTextEntry(elements[1], '', BEFORE);", "true");
     shouldBe("simulateTextEntry(elements[1], 'fo', BEFORE);", "true");
     shouldBe("simulateTextEntry(elements[1], 'o');", "true");
-    shouldBe("simulateTextEntry(elements[1], 'foo', BEFORE); ", "false");
+    shouldBe("simulateTextEntry(elements[1], 'foo', BEFORE);", "false");
 
     shouldBe("simulateTextEntry(elements[2], 'wee', AFTER);", "false");
     shouldBe("simulateTextEntry(elements[2], 'foo', BEFORE | AFTER);", "false");
     shouldBe("simulateTextEntry(elements[2], 'fo', BEFORE);", "true");
     shouldBe("simulateTextEntry(elements[2], 'o');", "true");
-    shouldBe("simulateTextEntry(elements[2], 'foo', BEFORE); ", "false");
+    shouldBe("simulateTextEntry(elements[2], 'foo', BEFORE);", "false");
 
     shouldBe("simulateTextEntry(elements[3], 'foo', BEFORE);", "false");
     shouldBe("simulateTextEntry(elements[3], 'foo', BEFORE);", "false");
-    shouldBe("setTextValue(elements[3], ''); ", "false");
+    shouldBe("setTextValue(elements[3], '');", "false");
     shouldBe("simulateTextEntry(elements[3], 'fo', BEFORE);", "true");
     shouldBe("simulateTextEntry(elements[3], 'o');", "true");
-    shouldBe("simulateTextEntry(elements[3], 'foo', BEFORE); ", "false");
+    shouldBe("simulateTextEntry(elements[3], 'foo', BEFORE);", "false");
 
     shouldBe("simulateTextEntry(elements[4], 'foo', AFTER);", "false");
     shouldBe("simulateTextEntry(elements[4], 'foo');", "true");
diff --git a/LayoutTests/fast/events/onunload-back-to-page-cache.html b/LayoutTests/fast/events/onunload-back-to-page-cache.html
index c82fa44..729f831 100644
--- a/LayoutTests/fast/events/onunload-back-to-page-cache.html
+++ b/LayoutTests/fast/events/onunload-back-to-page-cache.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/page-scaled-mouse-click-iframe.html b/LayoutTests/fast/events/page-scaled-mouse-click-iframe.html
index 10eb878..0d28be9 100644
--- a/LayoutTests/fast/events/page-scaled-mouse-click-iframe.html
+++ b/LayoutTests/fast/events/page-scaled-mouse-click-iframe.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html style="background-color: red; ">
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body style="margin: 0px;">
diff --git a/LayoutTests/fast/events/page-scaled-mouse-click.html b/LayoutTests/fast/events/page-scaled-mouse-click.html
index 8bde7fd..229c9b1 100644
--- a/LayoutTests/fast/events/page-scaled-mouse-click.html
+++ b/LayoutTests/fast/events/page-scaled-mouse-click.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body style="margin:0px">
diff --git a/LayoutTests/fast/events/pagehide-timeout-expected.txt b/LayoutTests/fast/events/pagehide-timeout-expected.txt
index 5f49d38..5cc33d5 100644
--- a/LayoutTests/fast/events/pagehide-timeout-expected.txt
+++ b/LayoutTests/fast/events/pagehide-timeout-expected.txt
@@ -1,7 +1,7 @@
-CONSOLE MESSAGE: line 17: Creating timeout in pagehide
+CONSOLE MESSAGE: line 16: Creating timeout in pagehide
 CONSOLE MESSAGE: line 5: Loaded pagehide-timeout-go-back.html, going back
-CONSOLE MESSAGE: line 30: Restored page from page cache.
-CONSOLE MESSAGE: line 21: Timeout created in pagehide fired
+CONSOLE MESSAGE: line 29: Restored page from page cache.
+CONSOLE MESSAGE: line 20: Timeout created in pagehide fired
 Tests that JS execution is suspended after the pagehide event is fired, so that timers created within it will not fire while the document is in the page cache.
 
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
diff --git a/LayoutTests/fast/events/pagehide-timeout.html b/LayoutTests/fast/events/pagehide-timeout.html
index c4cdc04..891e3ed 100644
--- a/LayoutTests/fast/events/pagehide-timeout.html
+++ b/LayoutTests/fast/events/pagehide-timeout.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <body>
 
diff --git a/LayoutTests/fast/events/panScroll-click-hyperlink.html b/LayoutTests/fast/events/panScroll-click-hyperlink.html
index 5526624..ec6aab6 100644
--- a/LayoutTests/fast/events/panScroll-click-hyperlink.html
+++ b/LayoutTests/fast/events/panScroll-click-hyperlink.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 
diff --git a/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.html b/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.html
index 2e382ac..beff5c3 100644
--- a/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.html
+++ b/LayoutTests/fast/events/platform-wheelevent-in-scrolling-div.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
         <script>
             var expectedScrollTop = 5;
diff --git a/LayoutTests/fast/events/popup-allowed-from-gesture-initiated-event.html b/LayoutTests/fast/events/popup-allowed-from-gesture-initiated-event.html
index 648617e..f1c45e3 100644
--- a/LayoutTests/fast/events/popup-allowed-from-gesture-initiated-event.html
+++ b/LayoutTests/fast/events/popup-allowed-from-gesture-initiated-event.html
@@ -1,6 +1,5 @@
 <html> 
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
     </head>
     <body>
diff --git a/LayoutTests/fast/events/popup-blocked-from-fake-button-click.html b/LayoutTests/fast/events/popup-blocked-from-fake-button-click.html
index 2ea0ecc..16b4019 100644
--- a/LayoutTests/fast/events/popup-blocked-from-fake-button-click.html
+++ b/LayoutTests/fast/events/popup-blocked-from-fake-button-click.html
@@ -1,6 +1,5 @@
 <html> 
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
     </head>
     <body>
diff --git a/LayoutTests/fast/events/popup-blocked-from-fake-focus.html b/LayoutTests/fast/events/popup-blocked-from-fake-focus.html
index 74ac0f9..2353ce2 100644
--- a/LayoutTests/fast/events/popup-blocked-from-fake-focus.html
+++ b/LayoutTests/fast/events/popup-blocked-from-fake-focus.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
     </head>
     <body>
diff --git a/LayoutTests/fast/events/popup-blocked-from-fake-user-gesture.html b/LayoutTests/fast/events/popup-blocked-from-fake-user-gesture.html
index 0e2bbd7..b9a9428 100644
--- a/LayoutTests/fast/events/popup-blocked-from-fake-user-gesture.html
+++ b/LayoutTests/fast/events/popup-blocked-from-fake-user-gesture.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
     </head>
     <body>
diff --git a/LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html b/LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html
index 32026d2..ab63718 100644
--- a/LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html
+++ b/LayoutTests/fast/events/popup-blocked-from-untrusted-click-event-on-anchor.html
@@ -1,6 +1,5 @@
 <html> 
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
     </head>
     <body>
diff --git a/LayoutTests/fast/events/popup-blocking-timers.html b/LayoutTests/fast/events/popup-blocking-timers.html
index acbb4a4..a3f1162 100644
--- a/LayoutTests/fast/events/popup-blocking-timers.html
+++ b/LayoutTests/fast/events/popup-blocking-timers.html
@@ -1,5 +1,4 @@
 <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <script src="../js/resources/js-test-pre.js"></script>
     <script>
         var newWindow;
diff --git a/LayoutTests/fast/events/script-tests/TEMPLATE.html b/LayoutTests/fast/events/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/events/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/events/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/scroll-event-during-modal-dialog.html b/LayoutTests/fast/events/scroll-event-during-modal-dialog.html
index 560600e..ed889d6 100644
--- a/LayoutTests/fast/events/scroll-event-during-modal-dialog.html
+++ b/LayoutTests/fast/events/scroll-event-during-modal-dialog.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <body style="min-height: 2000px"> 
 
diff --git a/LayoutTests/fast/events/scroll-event-phase.html b/LayoutTests/fast/events/scroll-event-phase.html
index acc61d0..c406013 100644
--- a/LayoutTests/fast/events/scroll-event-phase.html
+++ b/LayoutTests/fast/events/scroll-event-phase.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <body style="min-height: 2000px"> 
 
diff --git a/LayoutTests/fast/events/scroll-in-scaled-page-with-overflow-hidden.html b/LayoutTests/fast/events/scroll-in-scaled-page-with-overflow-hidden.html
index 9d7e89a..030ac16 100644
--- a/LayoutTests/fast/events/scroll-in-scaled-page-with-overflow-hidden.html
+++ b/LayoutTests/fast/events/scroll-in-scaled-page-with-overflow-hidden.html
@@ -2,7 +2,6 @@
     <style>
         html, body { margin:0; overflow: hidden; }
     </style>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <script src="../js/resources/js-test-pre.js"></script>
 </head>
 
diff --git a/LayoutTests/fast/events/select-element.html b/LayoutTests/fast/events/select-element.html
index 804fa14..39d3aa6 100644
--- a/LayoutTests/fast/events/select-element.html
+++ b/LayoutTests/fast/events/select-element.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/tab-imagemap.html b/LayoutTests/fast/events/tab-imagemap.html
index 753676a..2565403 100644
--- a/LayoutTests/fast/events/tab-imagemap.html
+++ b/LayoutTests/fast/events/tab-imagemap.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script>
 var successfullyParsed = false;
 </script>
diff --git a/LayoutTests/fast/events/tab-is-focusable-assert.html b/LayoutTests/fast/events/tab-is-focusable-assert.html
index b4ae63e..cca9b88 100644
--- a/LayoutTests/fast/events/tab-is-focusable-assert.html
+++ b/LayoutTests/fast/events/tab-is-focusable-assert.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/touch/basic-multi-touch-events-limited.html b/LayoutTests/fast/events/touch/basic-multi-touch-events-limited.html
index 7ba39a8..4620ebf 100644
--- a/LayoutTests/fast/events/touch/basic-multi-touch-events-limited.html
+++ b/LayoutTests/fast/events/touch/basic-multi-touch-events-limited.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/basic-multi-touch-events.html b/LayoutTests/fast/events/touch/basic-multi-touch-events.html
index cdf0a71..f3a5c23 100644
--- a/LayoutTests/fast/events/touch/basic-multi-touch-events.html
+++ b/LayoutTests/fast/events/touch/basic-multi-touch-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/basic-single-touch-events.html b/LayoutTests/fast/events/touch/basic-single-touch-events.html
index cd841a1..ba4819c 100644
--- a/LayoutTests/fast/events/touch/basic-single-touch-events.html
+++ b/LayoutTests/fast/events/touch/basic-single-touch-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/create-touch-event.html b/LayoutTests/fast/events/touch/create-touch-event.html
index 17aa183..bca5f72 100644
--- a/LayoutTests/fast/events/touch/create-touch-event.html
+++ b/LayoutTests/fast/events/touch/create-touch-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/events/touch/document-create-touch-list.html b/LayoutTests/fast/events/touch/document-create-touch-list.html
index bb81531..1f98e58 100644
--- a/LayoutTests/fast/events/touch/document-create-touch-list.html
+++ b/LayoutTests/fast/events/touch/document-create-touch-list.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/document-create-touch.html b/LayoutTests/fast/events/touch/document-create-touch.html
index ef586fb..c4068eb 100644
--- a/LayoutTests/fast/events/touch/document-create-touch.html
+++ b/LayoutTests/fast/events/touch/document-create-touch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/gesture/gesture-click.html b/LayoutTests/fast/events/touch/gesture/gesture-click.html
index 25dcc5a..3fa51be 100644
--- a/LayoutTests/fast/events/touch/gesture/gesture-click.html
+++ b/LayoutTests/fast/events/touch/gesture/gesture-click.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="../../../js/resources/js-test-post-function.js"></script>
 </head>
diff --git a/LayoutTests/fast/events/touch/multi-touch-grouped-targets.html b/LayoutTests/fast/events/touch/multi-touch-grouped-targets.html
index ef965c1..b42aa97 100644
--- a/LayoutTests/fast/events/touch/multi-touch-grouped-targets.html
+++ b/LayoutTests/fast/events/touch/multi-touch-grouped-targets.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/script-tests/TEMPLATE.html b/LayoutTests/fast/events/touch/script-tests/TEMPLATE.html
index fd006b9..ba7fd43 100644
--- a/LayoutTests/fast/events/touch/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/events/touch/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/send-oncancel-event.html b/LayoutTests/fast/events/touch/send-oncancel-event.html
index 0c913fb..bde2725 100644
--- a/LayoutTests/fast/events/touch/send-oncancel-event.html
+++ b/LayoutTests/fast/events/touch/send-oncancel-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/tap-highlight-color.html b/LayoutTests/fast/events/touch/tap-highlight-color.html
index b2d25b7..35480ce 100644
--- a/LayoutTests/fast/events/touch/tap-highlight-color.html
+++ b/LayoutTests/fast/events/touch/tap-highlight-color.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/touch-active-state.html b/LayoutTests/fast/events/touch/touch-active-state.html
index 8b1fe29..6de8cf8 100644
--- a/LayoutTests/fast/events/touch/touch-active-state.html
+++ b/LayoutTests/fast/events/touch/touch-active-state.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <style type="text/css">
diff --git a/LayoutTests/fast/events/touch/touch-coords-in-zoom-and-scroll.html b/LayoutTests/fast/events/touch/touch-coords-in-zoom-and-scroll.html
index 00cd162..550ff3d 100644
--- a/LayoutTests/fast/events/touch/touch-coords-in-zoom-and-scroll.html
+++ b/LayoutTests/fast/events/touch/touch-coords-in-zoom-and-scroll.html
@@ -1,4 +1,3 @@
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <style>
     #pusher {
diff --git a/LayoutTests/fast/events/touch/touch-gesture-click.html b/LayoutTests/fast/events/touch/touch-gesture-click.html
index d507e4a..17f7f46 100644
--- a/LayoutTests/fast/events/touch/touch-gesture-click.html
+++ b/LayoutTests/fast/events/touch/touch-gesture-click.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <style type="text/css">
diff --git a/LayoutTests/fast/events/touch/touch-gesture-scroll.html b/LayoutTests/fast/events/touch/touch-gesture-scroll.html
index 0179332..c5f7a88 100644
--- a/LayoutTests/fast/events/touch/touch-gesture-scroll.html
+++ b/LayoutTests/fast/events/touch/touch-gesture-scroll.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <style type="text/css">
diff --git a/LayoutTests/fast/events/touch/touch-inside-iframe.html b/LayoutTests/fast/events/touch/touch-inside-iframe.html
index b9162c3..8b09f32 100644
--- a/LayoutTests/fast/events/touch/touch-inside-iframe.html
+++ b/LayoutTests/fast/events/touch/touch-inside-iframe.html
@@ -1,5 +1,4 @@
 <html>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <body>
diff --git a/LayoutTests/fast/events/touch/touch-stale-node-crash.html b/LayoutTests/fast/events/touch/touch-stale-node-crash.html
index 5e1c65a..b5dd6f7 100644
--- a/LayoutTests/fast/events/touch/touch-stale-node-crash.html
+++ b/LayoutTests/fast/events/touch/touch-stale-node-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 </head>
diff --git a/LayoutTests/fast/events/touch/touch-target-limited.html b/LayoutTests/fast/events/touch/touch-target-limited.html
index f903842..9ca5023 100644
--- a/LayoutTests/fast/events/touch/touch-target-limited.html
+++ b/LayoutTests/fast/events/touch/touch-target-limited.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/touch/touch-target.html b/LayoutTests/fast/events/touch/touch-target.html
index 3447e73..7f08a25 100644
--- a/LayoutTests/fast/events/touch/touch-target.html
+++ b/LayoutTests/fast/events/touch/touch-target.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <!--
diff --git a/LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html b/LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html
index a6e0a19..23353e9 100644
--- a/LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html
+++ b/LayoutTests/fast/events/wheelevent-direction-inverted-from-device.html
@@ -7,7 +7,6 @@
 <div id="console"></div>
 
 <script src="../js/resources/js-test-pre.js"></script>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 
 <script>
 description("This test checks for the existence of the webkitDirectionInvertedFromDevice property in the WheelEvent.");
diff --git a/LayoutTests/fast/events/wheelevent-in-horizontal-scrollbar-in-rtl.html b/LayoutTests/fast/events/wheelevent-in-horizontal-scrollbar-in-rtl.html
index 6430f72..4963212 100644
--- a/LayoutTests/fast/events/wheelevent-in-horizontal-scrollbar-in-rtl.html
+++ b/LayoutTests/fast/events/wheelevent-in-horizontal-scrollbar-in-rtl.html
@@ -1,6 +1,5 @@
 <html dir=rtl>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
         <script>
 
diff --git a/LayoutTests/fast/events/wheelevent-in-scrolling-div.html b/LayoutTests/fast/events/wheelevent-in-scrolling-div.html
index 8733546..043d92a 100644
--- a/LayoutTests/fast/events/wheelevent-in-scrolling-div.html
+++ b/LayoutTests/fast/events/wheelevent-in-scrolling-div.html
@@ -1,6 +1,5 @@
 <html>
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
         <script>
             var expectedScrollTop = 200;
diff --git a/LayoutTests/fast/events/wheelevent-in-vertical-scrollbar-in-rtl.html b/LayoutTests/fast/events/wheelevent-in-vertical-scrollbar-in-rtl.html
index 3d2ea32..2af3ffd 100644
--- a/LayoutTests/fast/events/wheelevent-in-vertical-scrollbar-in-rtl.html
+++ b/LayoutTests/fast/events/wheelevent-in-vertical-scrollbar-in-rtl.html
@@ -1,6 +1,5 @@
 <html dir=rtl style="-webkit-writing-mode:vertical-lr">
     <head>
-        <link rel="stylesheet" href="../js/resources/js-test-style.css">
         <script src="../js/resources/js-test-pre.js"></script>
         <script>
 
diff --git a/LayoutTests/fast/events/zoom-dblclick.html b/LayoutTests/fast/events/zoom-dblclick.html
index 5db3a9d0..90cfcc2 100644
--- a/LayoutTests/fast/events/zoom-dblclick.html
+++ b/LayoutTests/fast/events/zoom-dblclick.html
@@ -1,5 +1,4 @@
 <!-- based on clientXY-in-zoom-and-scroll.html -->
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
     function clickHandler(e)
diff --git a/LayoutTests/fast/exclusions/parsing-wrap-shape.html b/LayoutTests/fast/exclusions/parsing-wrap-shape.html
index 84cc24d..8e91162 100644
--- a/LayoutTests/fast/exclusions/parsing-wrap-shape.html
+++ b/LayoutTests/fast/exclusions/parsing-wrap-shape.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/files/file-reader-fffd.html b/LayoutTests/fast/files/file-reader-fffd.html
index fe2332d..8ccc12f 100644
--- a/LayoutTests/fast/files/file-reader-fffd.html
+++ b/LayoutTests/fast/files/file-reader-fffd.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/read-common.js"></script>
  </head>
diff --git a/LayoutTests/fast/files/not-enough-arguments.html b/LayoutTests/fast/files/not-enough-arguments.html
index e1ad0dc..b6eb0ba 100644
--- a/LayoutTests/fast/files/not-enough-arguments.html
+++ b/LayoutTests/fast/files/not-enough-arguments.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/files/url-required-arguments.html b/LayoutTests/fast/files/url-required-arguments.html
index 5ba0a8c..30f584f 100644
--- a/LayoutTests/fast/files/url-required-arguments.html
+++ b/LayoutTests/fast/files/url-required-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <script src="../js/resources/js-test-pre.js"></script>
  </head>
  <body>
diff --git a/LayoutTests/fast/filesystem/async-operations.html b/LayoutTests/fast/filesystem/async-operations.html
index 85472ac..567e665 100644
--- a/LayoutTests/fast/filesystem/async-operations.html
+++ b/LayoutTests/fast/filesystem/async-operations.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/directory-entry-to-uri.html b/LayoutTests/fast/filesystem/directory-entry-to-uri.html
index 5eb4933..5897753 100644
--- a/LayoutTests/fast/filesystem/directory-entry-to-uri.html
+++ b/LayoutTests/fast/filesystem/directory-entry-to-uri.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/file-entry-to-uri.html b/LayoutTests/fast/filesystem/file-entry-to-uri.html
index b438230..ea2f695 100644
--- a/LayoutTests/fast/filesystem/file-entry-to-uri.html
+++ b/LayoutTests/fast/filesystem/file-entry-to-uri.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/file-from-file-entry.html b/LayoutTests/fast/filesystem/file-from-file-entry.html
index 500e546..ace8793 100644
--- a/LayoutTests/fast/filesystem/file-from-file-entry.html
+++ b/LayoutTests/fast/filesystem/file-from-file-entry.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/file-writer-abort-continue.html b/LayoutTests/fast/filesystem/file-writer-abort-continue.html
index 75bfa78..b11ecf2 100644
--- a/LayoutTests/fast/filesystem/file-writer-abort-continue.html
+++ b/LayoutTests/fast/filesystem/file-writer-abort-continue.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <title>File Writer Abort and Continue</title>
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/file-writer-utils.js"></script>
diff --git a/LayoutTests/fast/filesystem/file-writer-abort-depth.html b/LayoutTests/fast/filesystem/file-writer-abort-depth.html
index bfd0058..70b3fde 100644
--- a/LayoutTests/fast/filesystem/file-writer-abort-depth.html
+++ b/LayoutTests/fast/filesystem/file-writer-abort-depth.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <title>File Writer Abort Depth</title>
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/file-writer-utils.js"></script>
diff --git a/LayoutTests/fast/filesystem/file-writer-abort.html b/LayoutTests/fast/filesystem/file-writer-abort.html
index c54f69b..83b8bec 100644
--- a/LayoutTests/fast/filesystem/file-writer-abort.html
+++ b/LayoutTests/fast/filesystem/file-writer-abort.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <title>File Writer Abort</title>
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/file-writer-utils.js"></script>
diff --git a/LayoutTests/fast/filesystem/file-writer-events.html b/LayoutTests/fast/filesystem/file-writer-events.html
index 681b011..95a6281 100644
--- a/LayoutTests/fast/filesystem/file-writer-events.html
+++ b/LayoutTests/fast/filesystem/file-writer-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <title>File Writer Events</title>
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/file-writer-utils.js"></script>
diff --git a/LayoutTests/fast/filesystem/file-writer-gc-blob.html b/LayoutTests/fast/filesystem/file-writer-gc-blob.html
index 7017053..43c982c 100644
--- a/LayoutTests/fast/filesystem/file-writer-gc-blob.html
+++ b/LayoutTests/fast/filesystem/file-writer-gc-blob.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <title>File Writer GC Blob</title>
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/file-writer-utils.js"></script>
diff --git a/LayoutTests/fast/filesystem/file-writer-truncate-extend.html b/LayoutTests/fast/filesystem/file-writer-truncate-extend.html
index dc6959b..af8c540 100644
--- a/LayoutTests/fast/filesystem/file-writer-truncate-extend.html
+++ b/LayoutTests/fast/filesystem/file-writer-truncate-extend.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <title>File Writer Truncate-To-Extend</title>
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/file-writer-utils.js"></script>
diff --git a/LayoutTests/fast/filesystem/file-writer-write-overlapped.html b/LayoutTests/fast/filesystem/file-writer-write-overlapped.html
index 21d52c0..9f1b885 100644
--- a/LayoutTests/fast/filesystem/file-writer-write-overlapped.html
+++ b/LayoutTests/fast/filesystem/file-writer-write-overlapped.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../js/resources/js-test-style.css">
     <title>File Writer Write Overlapped</title>
     <script src="../js/resources/js-test-pre.js"></script>
     <script src="resources/file-writer-utils.js"></script>
diff --git a/LayoutTests/fast/filesystem/filesystem-missing-arguments.html b/LayoutTests/fast/filesystem/filesystem-missing-arguments.html
index 61b3939..e90df7a 100644
--- a/LayoutTests/fast/filesystem/filesystem-missing-arguments.html
+++ b/LayoutTests/fast/filesystem/filesystem-missing-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/filesystem/filesystem-reference.html b/LayoutTests/fast/filesystem/filesystem-reference.html
index d30dbbf..e70677d 100644
--- a/LayoutTests/fast/filesystem/filesystem-reference.html
+++ b/LayoutTests/fast/filesystem/filesystem-reference.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/flags-passing.html b/LayoutTests/fast/filesystem/flags-passing.html
index 3e602cf..ee4a015 100644
--- a/LayoutTests/fast/filesystem/flags-passing.html
+++ b/LayoutTests/fast/filesystem/flags-passing.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/not-enough-arguments.html b/LayoutTests/fast/filesystem/not-enough-arguments.html
index df16bf6..30dfb59 100644
--- a/LayoutTests/fast/filesystem/not-enough-arguments.html
+++ b/LayoutTests/fast/filesystem/not-enough-arguments.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-copy.html b/LayoutTests/fast/filesystem/op-copy.html
index 838470d..2092707 100644
--- a/LayoutTests/fast/filesystem/op-copy.html
+++ b/LayoutTests/fast/filesystem/op-copy.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-get-entry.html b/LayoutTests/fast/filesystem/op-get-entry.html
index 3dfc638..fb3c33c 100644
--- a/LayoutTests/fast/filesystem/op-get-entry.html
+++ b/LayoutTests/fast/filesystem/op-get-entry.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-get-metadata.html b/LayoutTests/fast/filesystem/op-get-metadata.html
index 4e1f746..c4d4564 100644
--- a/LayoutTests/fast/filesystem/op-get-metadata.html
+++ b/LayoutTests/fast/filesystem/op-get-metadata.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-get-parent.html b/LayoutTests/fast/filesystem/op-get-parent.html
index 55ee607..c740557 100644
--- a/LayoutTests/fast/filesystem/op-get-parent.html
+++ b/LayoutTests/fast/filesystem/op-get-parent.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-move.html b/LayoutTests/fast/filesystem/op-move.html
index f9f122c..8812c5c 100644
--- a/LayoutTests/fast/filesystem/op-move.html
+++ b/LayoutTests/fast/filesystem/op-move.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-read-directory.html b/LayoutTests/fast/filesystem/op-read-directory.html
index 31acba0..cafc523 100644
--- a/LayoutTests/fast/filesystem/op-read-directory.html
+++ b/LayoutTests/fast/filesystem/op-read-directory.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-remove.html b/LayoutTests/fast/filesystem/op-remove.html
index e6ffbb7..96fd1a3 100644
--- a/LayoutTests/fast/filesystem/op-remove.html
+++ b/LayoutTests/fast/filesystem/op-remove.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-restricted-chars.html b/LayoutTests/fast/filesystem/op-restricted-chars.html
index 330c6b5..d75941c 100644
--- a/LayoutTests/fast/filesystem/op-restricted-chars.html
+++ b/LayoutTests/fast/filesystem/op-restricted-chars.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-restricted-names.html b/LayoutTests/fast/filesystem/op-restricted-names.html
index 4aabfc6..5f5c571 100644
--- a/LayoutTests/fast/filesystem/op-restricted-names.html
+++ b/LayoutTests/fast/filesystem/op-restricted-names.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/op-restricted-unicode.html b/LayoutTests/fast/filesystem/op-restricted-unicode.html
index a78a695..b0c9585 100644
--- a/LayoutTests/fast/filesystem/op-restricted-unicode.html
+++ b/LayoutTests/fast/filesystem/op-restricted-unicode.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/read-directory.html b/LayoutTests/fast/filesystem/read-directory.html
index bb1b4ec..db65ecd 100644
--- a/LayoutTests/fast/filesystem/read-directory.html
+++ b/LayoutTests/fast/filesystem/read-directory.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/script-tests/TEMPLATE.html b/LayoutTests/fast/filesystem/script-tests/TEMPLATE.html
index 350584d..4cbdff6 100644
--- a/LayoutTests/fast/filesystem/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/filesystem/script-tests/TEMPLATE.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/fs-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/simple-persistent.html b/LayoutTests/fast/filesystem/simple-persistent.html
index e7f743d..1940ee3 100644
--- a/LayoutTests/fast/filesystem/simple-persistent.html
+++ b/LayoutTests/fast/filesystem/simple-persistent.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/filesystem/simple-readonly-file-object.html b/LayoutTests/fast/filesystem/simple-readonly-file-object.html
index 9b59985..c0c79ba 100644
--- a/LayoutTests/fast/filesystem/simple-readonly-file-object.html
+++ b/LayoutTests/fast/filesystem/simple-readonly-file-object.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="resources/fs-test-util.js"></script>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/simple-readonly.html b/LayoutTests/fast/filesystem/simple-readonly.html
index e408c34..fe402f4 100644
--- a/LayoutTests/fast/filesystem/simple-readonly.html
+++ b/LayoutTests/fast/filesystem/simple-readonly.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/filesystem/simple-temporary.html b/LayoutTests/fast/filesystem/simple-temporary.html
index 2bad499..5e7d4a8 100644
--- a/LayoutTests/fast/filesystem/simple-temporary.html
+++ b/LayoutTests/fast/filesystem/simple-temporary.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/filesystem/workers/async-operations.html b/LayoutTests/fast/filesystem/workers/async-operations.html
index 1a1279b..8104a3c 100644
--- a/LayoutTests/fast/filesystem/workers/async-operations.html
+++ b/LayoutTests/fast/filesystem/workers/async-operations.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/file-entry-to-uri-sync.html b/LayoutTests/fast/filesystem/workers/file-entry-to-uri-sync.html
index 2b4d9d1..7dffed4 100644
--- a/LayoutTests/fast/filesystem/workers/file-entry-to-uri-sync.html
+++ b/LayoutTests/fast/filesystem/workers/file-entry-to-uri-sync.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/file-from-file-entry-sync.html b/LayoutTests/fast/filesystem/workers/file-from-file-entry-sync.html
index d212d55..5f8fe61 100644
--- a/LayoutTests/fast/filesystem/workers/file-from-file-entry-sync.html
+++ b/LayoutTests/fast/filesystem/workers/file-from-file-entry-sync.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/file-from-file-entry.html b/LayoutTests/fast/filesystem/workers/file-from-file-entry.html
index 6e674a4..3e328bf 100644
--- a/LayoutTests/fast/filesystem/workers/file-from-file-entry.html
+++ b/LayoutTests/fast/filesystem/workers/file-from-file-entry.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/file-writer-events.html b/LayoutTests/fast/filesystem/workers/file-writer-events.html
index 0c9ad17..b3afcb1 100644
--- a/LayoutTests/fast/filesystem/workers/file-writer-events.html
+++ b/LayoutTests/fast/filesystem/workers/file-writer-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <title>File Writer Events Worker</title>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="../resources/fs-worker-test-util.js"></script>
diff --git a/LayoutTests/fast/filesystem/workers/file-writer-gc-blob.html b/LayoutTests/fast/filesystem/workers/file-writer-gc-blob.html
index 82a1579..53fef5b 100644
--- a/LayoutTests/fast/filesystem/workers/file-writer-gc-blob.html
+++ b/LayoutTests/fast/filesystem/workers/file-writer-gc-blob.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <title>File Writer GC Blob Worker</title>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="../resources/fs-worker-test-util.js"></script>
diff --git a/LayoutTests/fast/filesystem/workers/file-writer-sync-truncate-extend.html b/LayoutTests/fast/filesystem/workers/file-writer-sync-truncate-extend.html
index 0e353f4..fb9f839 100644
--- a/LayoutTests/fast/filesystem/workers/file-writer-sync-truncate-extend.html
+++ b/LayoutTests/fast/filesystem/workers/file-writer-sync-truncate-extend.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <title>File Writer Sync Truncate-To-Extend</title>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="../resources/fs-worker-test-util.js"></script>
diff --git a/LayoutTests/fast/filesystem/workers/file-writer-sync-write-overlapped.html b/LayoutTests/fast/filesystem/workers/file-writer-sync-write-overlapped.html
index 85d14be..38c3c2e 100644
--- a/LayoutTests/fast/filesystem/workers/file-writer-sync-write-overlapped.html
+++ b/LayoutTests/fast/filesystem/workers/file-writer-sync-write-overlapped.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <title>File Writer Sync Truncate-To-Extend</title>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="../resources/fs-worker-test-util.js"></script>
diff --git a/LayoutTests/fast/filesystem/workers/file-writer-truncate-extend.html b/LayoutTests/fast/filesystem/workers/file-writer-truncate-extend.html
index e1412c5..0dfad12 100644
--- a/LayoutTests/fast/filesystem/workers/file-writer-truncate-extend.html
+++ b/LayoutTests/fast/filesystem/workers/file-writer-truncate-extend.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <title>File Writer Truncate-To-Extend Worker</title>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="../resources/fs-worker-test-util.js"></script>
diff --git a/LayoutTests/fast/filesystem/workers/file-writer-write-overlapped.html b/LayoutTests/fast/filesystem/workers/file-writer-write-overlapped.html
index 60bbfd0..8b31a42 100644
--- a/LayoutTests/fast/filesystem/workers/file-writer-write-overlapped.html
+++ b/LayoutTests/fast/filesystem/workers/file-writer-write-overlapped.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
  <head>
-    <link rel="stylesheet" href="../../js/resources/js-test-style.css">
     <title>File Writer Write Overlapped Worker</title>
     <script src="../../js/resources/js-test-pre.js"></script>
     <script src="../resources/fs-worker-test-util.js"></script>
diff --git a/LayoutTests/fast/filesystem/workers/simple-persistent-sync.html b/LayoutTests/fast/filesystem/workers/simple-persistent-sync.html
index 4154d87..cbbc39e 100644
--- a/LayoutTests/fast/filesystem/workers/simple-persistent-sync.html
+++ b/LayoutTests/fast/filesystem/workers/simple-persistent-sync.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/simple-persistent.html b/LayoutTests/fast/filesystem/workers/simple-persistent.html
index 3de5bd7..850df6e 100644
--- a/LayoutTests/fast/filesystem/workers/simple-persistent.html
+++ b/LayoutTests/fast/filesystem/workers/simple-persistent.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/simple-temporary-sync.html b/LayoutTests/fast/filesystem/workers/simple-temporary-sync.html
index f95322a..60f98f0 100644
--- a/LayoutTests/fast/filesystem/workers/simple-temporary-sync.html
+++ b/LayoutTests/fast/filesystem/workers/simple-temporary-sync.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/simple-temporary.html b/LayoutTests/fast/filesystem/workers/simple-temporary.html
index f2f49f3..c36d0b4 100644
--- a/LayoutTests/fast/filesystem/workers/simple-temporary.html
+++ b/LayoutTests/fast/filesystem/workers/simple-temporary.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/filesystem/workers/sync-operations.html b/LayoutTests/fast/filesystem/workers/sync-operations.html
index 0a1dd0c..7c30d6f 100644
--- a/LayoutTests/fast/filesystem/workers/sync-operations.html
+++ b/LayoutTests/fast/filesystem/workers/sync-operations.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../resources/fs-worker-test-util.js"></script>
 </head>
diff --git a/LayoutTests/fast/flexbox/box-orient-button.html b/LayoutTests/fast/flexbox/box-orient-button.html
index 16b218b..be846d6 100644
--- a/LayoutTests/fast/flexbox/box-orient-button.html
+++ b/LayoutTests/fast/flexbox/box-orient-button.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <style type="text/css">
 .box {
   display: -webkit-box;
diff --git a/LayoutTests/fast/flexbox/child-flexing.html b/LayoutTests/fast/flexbox/child-flexing.html
index dac7316..8ae2f97 100644
--- a/LayoutTests/fast/flexbox/child-flexing.html
+++ b/LayoutTests/fast/flexbox/child-flexing.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 div.box {
diff --git a/LayoutTests/fast/flexbox/repaint-scrollbar.html b/LayoutTests/fast/flexbox/repaint-scrollbar.html
index ea502b1..daf041a 100644
--- a/LayoutTests/fast/flexbox/repaint-scrollbar.html
+++ b/LayoutTests/fast/flexbox/repaint-scrollbar.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/flexbox/vertical-box-form-controls.html b/LayoutTests/fast/flexbox/vertical-box-form-controls.html
index 3f3822b..b75cd05 100644
--- a/LayoutTests/fast/flexbox/vertical-box-form-controls.html
+++ b/LayoutTests/fast/flexbox/vertical-box-form-controls.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 div.box {
diff --git a/LayoutTests/fast/forms/ValidityState-customError.html b/LayoutTests/fast/forms/ValidityState-customError.html
index b6ebd2e..51b00c7 100644
--- a/LayoutTests/fast/forms/ValidityState-customError.html
+++ b/LayoutTests/fast/forms/ValidityState-customError.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-patternMismatch-unsupported.html b/LayoutTests/fast/forms/ValidityState-patternMismatch-unsupported.html
index ff03ba5..e332ad6 100644
--- a/LayoutTests/fast/forms/ValidityState-patternMismatch-unsupported.html
+++ b/LayoutTests/fast/forms/ValidityState-patternMismatch-unsupported.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-patternMismatch.html b/LayoutTests/fast/forms/ValidityState-patternMismatch.html
index 3cf6f2e..c3e8c73 100644
--- a/LayoutTests/fast/forms/ValidityState-patternMismatch.html
+++ b/LayoutTests/fast/forms/ValidityState-patternMismatch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-rangeOverflow.html b/LayoutTests/fast/forms/ValidityState-rangeOverflow.html
index 405cfc1..71f31af 100644
--- a/LayoutTests/fast/forms/ValidityState-rangeOverflow.html
+++ b/LayoutTests/fast/forms/ValidityState-rangeOverflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-rangeUnderflow.html b/LayoutTests/fast/forms/ValidityState-rangeUnderflow.html
index 487545d..f535204 100644
--- a/LayoutTests/fast/forms/ValidityState-rangeUnderflow.html
+++ b/LayoutTests/fast/forms/ValidityState-rangeUnderflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-stepMismatch.html b/LayoutTests/fast/forms/ValidityState-stepMismatch.html
index e5074b0..949999b 100644
--- a/LayoutTests/fast/forms/ValidityState-stepMismatch.html
+++ b/LayoutTests/fast/forms/ValidityState-stepMismatch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-tooLong-input.html b/LayoutTests/fast/forms/ValidityState-tooLong-input.html
index 826f8b2..2069e46 100644
--- a/LayoutTests/fast/forms/ValidityState-tooLong-input.html
+++ b/LayoutTests/fast/forms/ValidityState-tooLong-input.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-tooLong-textarea.html b/LayoutTests/fast/forms/ValidityState-tooLong-textarea.html
index b1d8030..4cd7e68 100644
--- a/LayoutTests/fast/forms/ValidityState-tooLong-textarea.html
+++ b/LayoutTests/fast/forms/ValidityState-tooLong-textarea.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-typeMismatch-email.html b/LayoutTests/fast/forms/ValidityState-typeMismatch-email.html
index 336acc0..6a56720 100644
--- a/LayoutTests/fast/forms/ValidityState-typeMismatch-email.html
+++ b/LayoutTests/fast/forms/ValidityState-typeMismatch-email.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-typeMismatch-number.html b/LayoutTests/fast/forms/ValidityState-typeMismatch-number.html
index faffd70..e45d45b 100644
--- a/LayoutTests/fast/forms/ValidityState-typeMismatch-number.html
+++ b/LayoutTests/fast/forms/ValidityState-typeMismatch-number.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-typeMismatch-url.html b/LayoutTests/fast/forms/ValidityState-typeMismatch-url.html
index 40ff601..b837a7b 100644
--- a/LayoutTests/fast/forms/ValidityState-typeMismatch-url.html
+++ b/LayoutTests/fast/forms/ValidityState-typeMismatch-url.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-valueMissing-001.html b/LayoutTests/fast/forms/ValidityState-valueMissing-001.html
index 1ca6a3c..4b1071c 100644
--- a/LayoutTests/fast/forms/ValidityState-valueMissing-001.html
+++ b/LayoutTests/fast/forms/ValidityState-valueMissing-001.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>required and basic valueMissing</title>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-valueMissing-002.html b/LayoutTests/fast/forms/ValidityState-valueMissing-002.html
index 9cf3da2..064c8f0 100644
--- a/LayoutTests/fast/forms/ValidityState-valueMissing-002.html
+++ b/LayoutTests/fast/forms/ValidityState-valueMissing-002.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>required and basic valueMissing 2</title>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-valueMissing-003.html b/LayoutTests/fast/forms/ValidityState-valueMissing-003.html
index 9eb0f63..01a6f15 100644
--- a/LayoutTests/fast/forms/ValidityState-valueMissing-003.html
+++ b/LayoutTests/fast/forms/ValidityState-valueMissing-003.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>required and valueMissing on disabled elements</title>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/ValidityState-valueMissing-radio.html b/LayoutTests/fast/forms/ValidityState-valueMissing-radio.html
index 75d1396..13a0fbf 100644
--- a/LayoutTests/fast/forms/ValidityState-valueMissing-radio.html
+++ b/LayoutTests/fast/forms/ValidityState-valueMissing-radio.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/checkValidity-001.html b/LayoutTests/fast/forms/checkValidity-001.html
index b4cfa42..94b22b4 100644
--- a/LayoutTests/fast/forms/checkValidity-001.html
+++ b/LayoutTests/fast/forms/checkValidity-001.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/checkValidity-002.html b/LayoutTests/fast/forms/checkValidity-002.html
index ed90533..3a06d41 100644
--- a/LayoutTests/fast/forms/checkValidity-002.html
+++ b/LayoutTests/fast/forms/checkValidity-002.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/checkValidity-003.html b/LayoutTests/fast/forms/checkValidity-003.html
index 9f42e8f..0116e7c 100644
--- a/LayoutTests/fast/forms/checkValidity-003.html
+++ b/LayoutTests/fast/forms/checkValidity-003.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/checkValidity-004.html b/LayoutTests/fast/forms/checkValidity-004.html
index c2a74a7..1e0781e 100644
--- a/LayoutTests/fast/forms/checkValidity-004.html
+++ b/LayoutTests/fast/forms/checkValidity-004.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/checkValidity-cancel.html b/LayoutTests/fast/forms/checkValidity-cancel.html
index d931754..9b965ee 100644
--- a/LayoutTests/fast/forms/checkValidity-cancel.html
+++ b/LayoutTests/fast/forms/checkValidity-cancel.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/checkValidity-handler-updates-dom.html b/LayoutTests/fast/forms/checkValidity-handler-updates-dom.html
index da2fcf6..5236dc8 100644
--- a/LayoutTests/fast/forms/checkValidity-handler-updates-dom.html
+++ b/LayoutTests/fast/forms/checkValidity-handler-updates-dom.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/checkbox-click-indeterminate.html b/LayoutTests/fast/forms/checkbox-click-indeterminate.html
index 29c4da8..c5fcb45 100644
--- a/LayoutTests/fast/forms/checkbox-click-indeterminate.html
+++ b/LayoutTests/fast/forms/checkbox-click-indeterminate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/color/input-color-onchange-event.html b/LayoutTests/fast/forms/color/input-color-onchange-event.html
index 704aced..2636e83 100644
--- a/LayoutTests/fast/forms/color/input-color-onchange-event.html
+++ b/LayoutTests/fast/forms/color/input-color-onchange-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
 <script src="../../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/color/input-value-sanitization-color.html b/LayoutTests/fast/forms/color/input-value-sanitization-color.html
index 915f8ca..11135ad 100644
--- a/LayoutTests/fast/forms/color/input-value-sanitization-color.html
+++ b/LayoutTests/fast/forms/color/input-value-sanitization-color.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
 <script src="../../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datalist-nonoption-child.html b/LayoutTests/fast/forms/datalist-nonoption-child.html
index 6229b6b..0eb2675 100644
--- a/LayoutTests/fast/forms/datalist-nonoption-child.html
+++ b/LayoutTests/fast/forms/datalist-nonoption-child.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datalist.html b/LayoutTests/fast/forms/datalist.html
index 1da926b..61dd9d5 100644
--- a/LayoutTests/fast/forms/datalist.html
+++ b/LayoutTests/fast/forms/datalist.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/ValidityState-rangeOverflow-date.html b/LayoutTests/fast/forms/date/ValidityState-rangeOverflow-date.html
index 236087d..fe35987 100644
--- a/LayoutTests/fast/forms/date/ValidityState-rangeOverflow-date.html
+++ b/LayoutTests/fast/forms/date/ValidityState-rangeOverflow-date.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date.html b/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date.html
index 6179e45..9fee3a0a 100644
--- a/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date.html
+++ b/LayoutTests/fast/forms/date/ValidityState-rangeUnderflow-date.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/ValidityState-stepMismatch-date.html b/LayoutTests/fast/forms/date/ValidityState-stepMismatch-date.html
index 15e38d2..708cddc 100644
--- a/LayoutTests/fast/forms/date/ValidityState-stepMismatch-date.html
+++ b/LayoutTests/fast/forms/date/ValidityState-stepMismatch-date.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/ValidityState-typeMismatch-date.html b/LayoutTests/fast/forms/date/ValidityState-typeMismatch-date.html
index b0a9a53e..f65ea49 100644
--- a/LayoutTests/fast/forms/date/ValidityState-typeMismatch-date.html
+++ b/LayoutTests/fast/forms/date/ValidityState-typeMismatch-date.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/date-input-type.html b/LayoutTests/fast/forms/date/date-input-type.html
index 0cac88e..286b1b8 100644
--- a/LayoutTests/fast/forms/date/date-input-type.html
+++ b/LayoutTests/fast/forms/date/date-input-type.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/date-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/date/date-stepup-stepdown-from-renderer.html
index 7e487a7..04d2888 100644
--- a/LayoutTests/fast/forms/date/date-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/date/date-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/date-stepup-stepdown.html b/LayoutTests/fast/forms/date/date-stepup-stepdown.html
index cda39b0..6dbb5b6 100644
--- a/LayoutTests/fast/forms/date/date-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/date/date-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/input-valueasdate-date.html b/LayoutTests/fast/forms/date/input-valueasdate-date.html
index 4dae8ef..0373ae4 100644
--- a/LayoutTests/fast/forms/date/input-valueasdate-date.html
+++ b/LayoutTests/fast/forms/date/input-valueasdate-date.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/date/input-valueasnumber-date.html b/LayoutTests/fast/forms/date/input-valueasnumber-date.html
index 8992c97..0e4a353 100644
--- a/LayoutTests/fast/forms/date/input-valueasnumber-date.html
+++ b/LayoutTests/fast/forms/date/input-valueasnumber-date.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/ValidityState-rangeOverflow-datetime.html b/LayoutTests/fast/forms/datetime/ValidityState-rangeOverflow-datetime.html
index ec770d6..825ff63 100644
--- a/LayoutTests/fast/forms/datetime/ValidityState-rangeOverflow-datetime.html
+++ b/LayoutTests/fast/forms/datetime/ValidityState-rangeOverflow-datetime.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/ValidityState-rangeUnderflow-datetime.html b/LayoutTests/fast/forms/datetime/ValidityState-rangeUnderflow-datetime.html
index 86e21aa..c9a4884 100644
--- a/LayoutTests/fast/forms/datetime/ValidityState-rangeUnderflow-datetime.html
+++ b/LayoutTests/fast/forms/datetime/ValidityState-rangeUnderflow-datetime.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/ValidityState-stepMismatch-datetime.html b/LayoutTests/fast/forms/datetime/ValidityState-stepMismatch-datetime.html
index b946f4b..bcfad8b 100644
--- a/LayoutTests/fast/forms/datetime/ValidityState-stepMismatch-datetime.html
+++ b/LayoutTests/fast/forms/datetime/ValidityState-stepMismatch-datetime.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/ValidityState-typeMismatch-datetime.html b/LayoutTests/fast/forms/datetime/ValidityState-typeMismatch-datetime.html
index 92e65e4..d5eb26c 100644
--- a/LayoutTests/fast/forms/datetime/ValidityState-typeMismatch-datetime.html
+++ b/LayoutTests/fast/forms/datetime/ValidityState-typeMismatch-datetime.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/datetime-input-type.html b/LayoutTests/fast/forms/datetime/datetime-input-type.html
index 4e6d0db..eae71dc 100644
--- a/LayoutTests/fast/forms/datetime/datetime-input-type.html
+++ b/LayoutTests/fast/forms/datetime/datetime-input-type.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown-from-renderer.html
index 44302a2..e520ba5 100644
--- a/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown.html b/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown.html
index c2cbfaa..3f7c132 100644
--- a/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/datetime/datetime-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/input-valueasdate-datetime.html b/LayoutTests/fast/forms/datetime/input-valueasdate-datetime.html
index 2c64f27..c0c197a 100644
--- a/LayoutTests/fast/forms/datetime/input-valueasdate-datetime.html
+++ b/LayoutTests/fast/forms/datetime/input-valueasdate-datetime.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetime/input-valueasnumber-datetime.html b/LayoutTests/fast/forms/datetime/input-valueasnumber-datetime.html
index 1248a7b..a1a9a15 100644
--- a/LayoutTests/fast/forms/datetime/input-valueasnumber-datetime.html
+++ b/LayoutTests/fast/forms/datetime/input-valueasnumber-datetime.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal.html b/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal.html
index 804725f..72c822c 100644
--- a/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal.html
+++ b/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeOverflow-datetimelocal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html b/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html
index a28dbb4..cb90582f 100644
--- a/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html
+++ b/LayoutTests/fast/forms/datetimelocal/ValidityState-rangeUnderflow-datetimelocal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/ValidityState-stepMismatch-datetimelocal.html b/LayoutTests/fast/forms/datetimelocal/ValidityState-stepMismatch-datetimelocal.html
index f50b004..3a194f3 100644
--- a/LayoutTests/fast/forms/datetimelocal/ValidityState-stepMismatch-datetimelocal.html
+++ b/LayoutTests/fast/forms/datetimelocal/ValidityState-stepMismatch-datetimelocal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/ValidityState-typeMismatch-datetimelocal.html b/LayoutTests/fast/forms/datetimelocal/ValidityState-typeMismatch-datetimelocal.html
index 0388511..98047d0 100644
--- a/LayoutTests/fast/forms/datetimelocal/ValidityState-typeMismatch-datetimelocal.html
+++ b/LayoutTests/fast/forms/datetimelocal/ValidityState-typeMismatch-datetimelocal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/datetimelocal-input-type.html b/LayoutTests/fast/forms/datetimelocal/datetimelocal-input-type.html
index 3cf427e..a3d9feb 100644
--- a/LayoutTests/fast/forms/datetimelocal/datetimelocal-input-type.html
+++ b/LayoutTests/fast/forms/datetimelocal/datetimelocal-input-type.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown-from-renderer.html
index e1df38d..0f6b4d5 100644
--- a/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown.html b/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown.html
index 5727d53..a79bfff 100644
--- a/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/datetimelocal/datetimelocal-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal.html b/LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal.html
index 02d7bf8..4391e84 100644
--- a/LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal.html
+++ b/LayoutTests/fast/forms/datetimelocal/input-valueasdate-datetimelocal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal.html b/LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal.html
index c681207..f545bd3 100644
--- a/LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal.html
+++ b/LayoutTests/fast/forms/datetimelocal/input-valueasnumber-datetimelocal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/enctype-attribute.html b/LayoutTests/fast/forms/enctype-attribute.html
index 0fb5fb3..45feed7 100644
--- a/LayoutTests/fast/forms/enctype-attribute.html
+++ b/LayoutTests/fast/forms/enctype-attribute.html
@@ -1,6 +1,5 @@
 <!DOCTYPE html>
 <html>
-<link rel=stylesheet href="../js/resources/js-test-style.css">
 <body>
 <script src="../js/resources/js-test-pre.js"></script>
 
diff --git a/LayoutTests/fast/forms/file/file-input-change-event-expected.txt b/LayoutTests/fast/forms/file/file-input-change-event-expected.txt
index b639602..6f7b8c5 100644
--- a/LayoutTests/fast/forms/file/file-input-change-event-expected.txt
+++ b/LayoutTests/fast/forms/file/file-input-change-event-expected.txt
@@ -1,6 +1,8 @@
- 
 This tests the condition that triggers a 'change' event on file input forms.
 
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
 Test that the 'change' event is triggered on a single file form when a selected file is changed:
 PASS singleFileInput.value is "C:\\fakepath\\foo.txt"
 PASS changeDispatched is true
@@ -37,4 +39,4 @@
 PASS successfullyParsed is true
 
 TEST COMPLETE
-
+ 
diff --git a/LayoutTests/fast/forms/file/file-input-change-event.html b/LayoutTests/fast/forms/file/file-input-change-event.html
index b9599bb..7763b15 100644
--- a/LayoutTests/fast/forms/file/file-input-change-event.html
+++ b/LayoutTests/fast/forms/file/file-input-change-event.html
@@ -6,14 +6,11 @@
 <body>
 <input type="file" id="singleFile" name="upfile" onchange="singleFileSelected()" />
 <input type="file" id="multipleFiles" name="upfile[]" multiple="multiple" onchange="multipleFilesSelected()" />
-<div id="console">
-<p>
-This tests the condition that triggers a 'change' event on file input forms.
-</p>
-</div>
 <script>
 var changeDispatched;
 
+description("This tests the condition that triggers a 'change' event on file input forms.");
+
 if (window.layoutTestController) {
     var singleFileInput = document.getElementById("singleFile");
     var multipleFilesInput = document.getElementById("multipleFiles");
diff --git a/LayoutTests/fast/forms/focus-with-display-block.html b/LayoutTests/fast/forms/focus-with-display-block.html
index a070412..6d6b9cf 100644
--- a/LayoutTests/fast/forms/focus-with-display-block.html
+++ b/LayoutTests/fast/forms/focus-with-display-block.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <style>
 output, meter, progress {
diff --git a/LayoutTests/fast/forms/form-attribute-elements-order.html b/LayoutTests/fast/forms/form-attribute-elements-order.html
index 2e1721d..92654fe 100644
--- a/LayoutTests/fast/forms/form-attribute-elements-order.html
+++ b/LayoutTests/fast/forms/form-attribute-elements-order.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/form-attribute-elements-order2.html b/LayoutTests/fast/forms/form-attribute-elements-order2.html
index 493a7db..371312b 100644
--- a/LayoutTests/fast/forms/form-attribute-elements-order2.html
+++ b/LayoutTests/fast/forms/form-attribute-elements-order2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/form-attribute-elements.html b/LayoutTests/fast/forms/form-attribute-elements.html
index 3389bce..512a1cd 100644
--- a/LayoutTests/fast/forms/form-attribute-elements.html
+++ b/LayoutTests/fast/forms/form-attribute-elements.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/form-attribute-nonexistence-form-id.html b/LayoutTests/fast/forms/form-attribute-nonexistence-form-id.html
index 4de14b4..30c45c8 100644
--- a/LayoutTests/fast/forms/form-attribute-nonexistence-form-id.html
+++ b/LayoutTests/fast/forms/form-attribute-nonexistence-form-id.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/form-attribute.html b/LayoutTests/fast/forms/form-attribute.html
index 3069b0c..b1dd0ac 100644
--- a/LayoutTests/fast/forms/form-attribute.html
+++ b/LayoutTests/fast/forms/form-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/form-collection-elements-order.html b/LayoutTests/fast/forms/form-collection-elements-order.html
index 9975c62..5853511 100644
--- a/LayoutTests/fast/forms/form-collection-elements-order.html
+++ b/LayoutTests/fast/forms/form-collection-elements-order.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/form-collection-elements.html b/LayoutTests/fast/forms/form-collection-elements.html
index 7adcc84..adbf8b4 100644
--- a/LayoutTests/fast/forms/form-collection-elements.html
+++ b/LayoutTests/fast/forms/form-collection-elements.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/form-image-access-by-name.html b/LayoutTests/fast/forms/form-image-access-by-name.html
index 279277f..40f61d5 100644
--- a/LayoutTests/fast/forms/form-image-access-by-name.html
+++ b/LayoutTests/fast/forms/form-image-access-by-name.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/formaction-attribute.html b/LayoutTests/fast/forms/formaction-attribute.html
index 5907c6f..4061b43 100644
--- a/LayoutTests/fast/forms/formaction-attribute.html
+++ b/LayoutTests/fast/forms/formaction-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/formmethod-attribute-button-html.html b/LayoutTests/fast/forms/formmethod-attribute-button-html.html
index e4ecb2c..986ce92 100644
--- a/LayoutTests/fast/forms/formmethod-attribute-button-html.html
+++ b/LayoutTests/fast/forms/formmethod-attribute-button-html.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/formmethod-attribute-input-html.html b/LayoutTests/fast/forms/formmethod-attribute-input-html.html
index 76f0074..5a61312 100644
--- a/LayoutTests/fast/forms/formmethod-attribute-input-html.html
+++ b/LayoutTests/fast/forms/formmethod-attribute-input-html.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/formnovalidate-attribute.html b/LayoutTests/fast/forms/formnovalidate-attribute.html
index a1b9d6a..70ab158 100644
--- a/LayoutTests/fast/forms/formnovalidate-attribute.html
+++ b/LayoutTests/fast/forms/formnovalidate-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/formtarget-attribute-button-html.html b/LayoutTests/fast/forms/formtarget-attribute-button-html.html
index 72a70f0..ae49c6d 100644
--- a/LayoutTests/fast/forms/formtarget-attribute-button-html.html
+++ b/LayoutTests/fast/forms/formtarget-attribute-button-html.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <script src="../../fast/js/resources/js-test-post-function.js"></script>
 </head>
diff --git a/LayoutTests/fast/forms/formtarget-attribute-input-html.html b/LayoutTests/fast/forms/formtarget-attribute-input-html.html
index 7989007..624310b 100644
--- a/LayoutTests/fast/forms/formtarget-attribute-input-html.html
+++ b/LayoutTests/fast/forms/formtarget-attribute-input-html.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <script src="../../fast/js/resources/js-test-post-function.js"></script>
 </head>
diff --git a/LayoutTests/fast/forms/get-forms-to-about-blank.html b/LayoutTests/fast/forms/get-forms-to-about-blank.html
index 60ef87f..5a158e6 100644
--- a/LayoutTests/fast/forms/get-forms-to-about-blank.html
+++ b/LayoutTests/fast/forms/get-forms-to-about-blank.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
   <head>
-    <link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
     <script src="../../fast/js/resources/js-test-pre.js"></script>
     <script src="../../fast/js/resources/js-test-post-function.js"></script>
     <script>
diff --git a/LayoutTests/fast/forms/incremental-dom-property.html b/LayoutTests/fast/forms/incremental-dom-property.html
index 64fdcbf..89735ef 100644
--- a/LayoutTests/fast/forms/incremental-dom-property.html
+++ b/LayoutTests/fast/forms/incremental-dom-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-appearance-maxlength-expected.txt b/LayoutTests/fast/forms/input-appearance-maxlength-expected.txt
index 02d2713..419303a 100644
--- a/LayoutTests/fast/forms/input-appearance-maxlength-expected.txt
+++ b/LayoutTests/fast/forms/input-appearance-maxlength-expected.txt
@@ -3,8 +3,8 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
-PASS Maxlength shouldn't work for default value. 
-PASS Maxlength works for inserted text. 
+PASS Maxlength shouldn't work for default value.
+PASS Maxlength works for inserted text.
 PASS successfullyParsed is true
 
 TEST COMPLETE
diff --git a/LayoutTests/fast/forms/input-appearance-maxlength.html b/LayoutTests/fast/forms/input-appearance-maxlength.html
index 260c744..16d5f7c 100644
--- a/LayoutTests/fast/forms/input-appearance-maxlength.html
+++ b/LayoutTests/fast/forms/input-appearance-maxlength.html
@@ -4,8 +4,6 @@
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
-<p id="description"></p>
-<div id="console"></div>
 
 <input type="text" id="sp" style="-khtml-appearance:textfield" maxlength=5 value="123456"></input>
 
@@ -15,9 +13,9 @@
 var input = document.getElementById('sp');
 
 if (input.value != "12345") {
-    testPassed('Maxlength shouldn\'t work for default value.\n');
+    testPassed('Maxlength shouldn\'t work for default value.');
 } else {
-    testFailed('Maxlength unexpectedly works for default value.\n');
+    testFailed('Maxlength unexpectedly works for default value.');
 }
     
 input.value = "123";
@@ -27,9 +25,9 @@
 document.execCommand("InsertText", false, 'efghi');
     
 if (input.value == "abcde") {
-    testPassed('Maxlength works for inserted text.\n');
+    testPassed('Maxlength works for inserted text.');
 } else {
-    testFailed('Maxlength does not work for inserted text.\n');
+    testFailed('Maxlength does not work for inserted text.');
 }
 
 var successfullyParsed = true;
diff --git a/LayoutTests/fast/forms/input-appearance-spinbutton-disabled-readonly.html b/LayoutTests/fast/forms/input-appearance-spinbutton-disabled-readonly.html
index 8370415..953b0f0 100644
--- a/LayoutTests/fast/forms/input-appearance-spinbutton-disabled-readonly.html
+++ b/LayoutTests/fast/forms/input-appearance-spinbutton-disabled-readonly.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../../fast/js/resources/js-test-style.css">
 <style>
 input {
     font-size: 20px;
diff --git a/LayoutTests/fast/forms/input-image-submit.html b/LayoutTests/fast/forms/input-image-submit.html
index 17b622d..626ce21 100644
--- a/LayoutTests/fast/forms/input-image-submit.html
+++ b/LayoutTests/fast/forms/input-image-submit.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body onload="startTests()">
diff --git a/LayoutTests/fast/forms/input-list.html b/LayoutTests/fast/forms/input-list.html
index 5bd4170..e0cb738 100644
--- a/LayoutTests/fast/forms/input-list.html
+++ b/LayoutTests/fast/forms/input-list.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-live-pseudo-selectors.html b/LayoutTests/fast/forms/input-live-pseudo-selectors.html
index bd02ebc..6301f13 100644
--- a/LayoutTests/fast/forms/input-live-pseudo-selectors.html
+++ b/LayoutTests/fast/forms/input-live-pseudo-selectors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <link rel="stylesheet" href="resources/live-pseudo-selectors.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/forms/input-maxlength-ime-completed.html b/LayoutTests/fast/forms/input-maxlength-ime-completed.html
index 15208f7..3378d1e 100644
--- a/LayoutTests/fast/forms/input-maxlength-ime-completed.html
+++ b/LayoutTests/fast/forms/input-maxlength-ime-completed.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-maxlength-ime-preedit.html b/LayoutTests/fast/forms/input-maxlength-ime-preedit.html
index 3acc6cea..1d15c0a 100644
--- a/LayoutTests/fast/forms/input-maxlength-ime-preedit.html
+++ b/LayoutTests/fast/forms/input-maxlength-ime-preedit.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-maxlength-unsupported.html b/LayoutTests/fast/forms/input-maxlength-unsupported.html
index f9835ab..082b22fe 100644
--- a/LayoutTests/fast/forms/input-maxlength-unsupported.html
+++ b/LayoutTests/fast/forms/input-maxlength-unsupported.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-minmax.html b/LayoutTests/fast/forms/input-minmax.html
index 22f8dd9..806787a 100644
--- a/LayoutTests/fast/forms/input-minmax.html
+++ b/LayoutTests/fast/forms/input-minmax.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-blur-twice.html b/LayoutTests/fast/forms/input-number-blur-twice.html
index 994825e..eb379a1 100644
--- a/LayoutTests/fast/forms/input-number-blur-twice.html
+++ b/LayoutTests/fast/forms/input-number-blur-twice.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-change-type-on-focus.html b/LayoutTests/fast/forms/input-number-change-type-on-focus.html
index f515739..d7df2bf 100644
--- a/LayoutTests/fast/forms/input-number-change-type-on-focus.html
+++ b/LayoutTests/fast/forms/input-number-change-type-on-focus.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-commit-valid-only.html b/LayoutTests/fast/forms/input-number-commit-valid-only.html
index c1e09fc..2676b6d 100644
--- a/LayoutTests/fast/forms/input-number-commit-valid-only.html
+++ b/LayoutTests/fast/forms/input-number-commit-valid-only.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-events.html b/LayoutTests/fast/forms/input-number-events.html
index 0bd27e1..3d96275 100644
--- a/LayoutTests/fast/forms/input-number-events.html
+++ b/LayoutTests/fast/forms/input-number-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-keyoperation.html b/LayoutTests/fast/forms/input-number-keyoperation.html
index 0a9e1a1..0ad8415 100644
--- a/LayoutTests/fast/forms/input-number-keyoperation.html
+++ b/LayoutTests/fast/forms/input-number-keyoperation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-large-padding.html b/LayoutTests/fast/forms/input-number-large-padding.html
index 1239758..78d5f5c 100644
--- a/LayoutTests/fast/forms/input-number-large-padding.html
+++ b/LayoutTests/fast/forms/input-number-large-padding.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-outofrange.html b/LayoutTests/fast/forms/input-number-outofrange.html
index 7e0324c..7ca7bc8 100644
--- a/LayoutTests/fast/forms/input-number-outofrange.html
+++ b/LayoutTests/fast/forms/input-number-outofrange.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-number-size.html b/LayoutTests/fast/forms/input-number-size.html
index 7b55203..b20c337 100644
--- a/LayoutTests/fast/forms/input-number-size.html
+++ b/LayoutTests/fast/forms/input-number-size.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <style>
 
diff --git a/LayoutTests/fast/forms/input-number-unacceptable-style.html b/LayoutTests/fast/forms/input-number-unacceptable-style.html
index a944185..b7971d7 100644
--- a/LayoutTests/fast/forms/input-number-unacceptable-style.html
+++ b/LayoutTests/fast/forms/input-number-unacceptable-style.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <style>
 :invalid {
diff --git a/LayoutTests/fast/forms/input-number-wheel.html b/LayoutTests/fast/forms/input-number-wheel.html
index 79145dd..71a8d89 100644
--- a/LayoutTests/fast/forms/input-number-wheel.html
+++ b/LayoutTests/fast/forms/input-number-wheel.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-pattern.html b/LayoutTests/fast/forms/input-pattern.html
index 6ca47a4..608741b 100644
--- a/LayoutTests/fast/forms/input-pattern.html
+++ b/LayoutTests/fast/forms/input-pattern.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-search-press-escape-key-expected.txt b/LayoutTests/fast/forms/input-search-press-escape-key-expected.txt
index b34aacf..b498bb6 100644
--- a/LayoutTests/fast/forms/input-search-press-escape-key-expected.txt
+++ b/LayoutTests/fast/forms/input-search-press-escape-key-expected.txt
@@ -1,6 +1,3 @@
-
-This tests if the value in a search input form is cleared and a 'search' event is triggered, when we press the Escape key. To run (a part of) this test manually, type some text in the search form and then press the Escape key. If the text is cleared, then the test passes.
-
 PASS input.value is ""
 PASS searchEventObserved is true
 PASS input.value is ""
@@ -15,3 +12,6 @@
 
 TEST COMPLETE
 
+This tests if the value in a search input form is cleared and a 'search' event is triggered, when we press the Escape key. To run (a part of) this test manually, type some text in the search form and then press the Escape key. If the text is cleared, then the test passes.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
diff --git a/LayoutTests/fast/forms/input-search-press-escape-key.html b/LayoutTests/fast/forms/input-search-press-escape-key.html
index 2db8bac..9ee88c6 100644
--- a/LayoutTests/fast/forms/input-search-press-escape-key.html
+++ b/LayoutTests/fast/forms/input-search-press-escape-key.html
@@ -6,18 +6,17 @@
 </head>
 <body>
 <input id="search" type="search" onsearch="searchEventDispatched()" />
-<div id="console">
-<p>
-This tests if the value in a search input form is cleared
-and a 'search' event is triggered, when we press the Escape key.
-To run (a part of) this test manually,
-type some text in the search form and then press the Escape key.
-If the text is cleared, then the test passes.
+<p id="description">
+
 </p>
-</div>
+
 <script>
 var searchEventObserved;
 
+description("This tests if the value in a search input form is cleared and a 'search' event is triggered, when we press the Escape key. " +
+            "To run (a part of) this test manually, type some text in the search form and then press the Escape key. " +
+            "If the text is cleared, then the test passes.");
+
 if (window.layoutTestController && window.eventSender) {
     var input = $("search");
     var enabled = false;
diff --git a/LayoutTests/fast/forms/input-selectedoption.html b/LayoutTests/fast/forms/input-selectedoption.html
index 201b0db..939f169 100644
--- a/LayoutTests/fast/forms/input-selectedoption.html
+++ b/LayoutTests/fast/forms/input-selectedoption.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-spinbutton-capturing.html b/LayoutTests/fast/forms/input-spinbutton-capturing.html
index 4982d194..8f72b6e 100644
--- a/LayoutTests/fast/forms/input-spinbutton-capturing.html
+++ b/LayoutTests/fast/forms/input-spinbutton-capturing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-step.html b/LayoutTests/fast/forms/input-step.html
index 37e3d49..bef8a38 100644
--- a/LayoutTests/fast/forms/input-step.html
+++ b/LayoutTests/fast/forms/input-step.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/input-stepup-stepdown-from-renderer.html
index a4ffffd..3c7411c 100644
--- a/LayoutTests/fast/forms/input-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/input-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-stepup-stepdown.html b/LayoutTests/fast/forms/input-stepup-stepdown.html
index 043b987..e50b106 100644
--- a/LayoutTests/fast/forms/input-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/input-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-text-maxlength.html b/LayoutTests/fast/forms/input-text-maxlength.html
index 013f735..523e625 100644
--- a/LayoutTests/fast/forms/input-text-maxlength.html
+++ b/LayoutTests/fast/forms/input-text-maxlength.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-text-paste-maxlength.html b/LayoutTests/fast/forms/input-text-paste-maxlength.html
index 15bb8dd..7fc519c 100644
--- a/LayoutTests/fast/forms/input-text-paste-maxlength.html
+++ b/LayoutTests/fast/forms/input-text-paste-maxlength.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-type-change.html b/LayoutTests/fast/forms/input-type-change.html
index a060d02..0779202 100644
--- a/LayoutTests/fast/forms/input-type-change.html
+++ b/LayoutTests/fast/forms/input-type-change.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body onload="change()">
diff --git a/LayoutTests/fast/forms/input-type-change3.html b/LayoutTests/fast/forms/input-type-change3.html
index f19820f..5518660 100644
--- a/LayoutTests/fast/forms/input-type-change3.html
+++ b/LayoutTests/fast/forms/input-type-change3.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-value-sanitization.html b/LayoutTests/fast/forms/input-value-sanitization.html
index 6e06f3f..9ed0ffd 100644
--- a/LayoutTests/fast/forms/input-value-sanitization.html
+++ b/LayoutTests/fast/forms/input-value-sanitization.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-valueasnumber-number.html b/LayoutTests/fast/forms/input-valueasnumber-number.html
index 9c67821..c790985 100644
--- a/LayoutTests/fast/forms/input-valueasnumber-number.html
+++ b/LayoutTests/fast/forms/input-valueasnumber-number.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-valueasnumber-unsupported.html b/LayoutTests/fast/forms/input-valueasnumber-unsupported.html
index ed3e55d..5feff12 100644
--- a/LayoutTests/fast/forms/input-valueasnumber-unsupported.html
+++ b/LayoutTests/fast/forms/input-valueasnumber-unsupported.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/input-widths.html b/LayoutTests/fast/forms/input-widths.html
index dc9deb1..e4cc874 100644
--- a/LayoutTests/fast/forms/input-widths.html
+++ b/LayoutTests/fast/forms/input-widths.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-attach-assertion.html b/LayoutTests/fast/forms/interactive-validation-attach-assertion.html
index 15e180b..e3cc2a9 100644
--- a/LayoutTests/fast/forms/interactive-validation-attach-assertion.html
+++ b/LayoutTests/fast/forms/interactive-validation-attach-assertion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-cancel.html b/LayoutTests/fast/forms/interactive-validation-cancel.html
index 518199e..1f45054 100644
--- a/LayoutTests/fast/forms/interactive-validation-cancel.html
+++ b/LayoutTests/fast/forms/interactive-validation-cancel.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-formnovalidate.html b/LayoutTests/fast/forms/interactive-validation-formnovalidate.html
index 69db698..d633331 100644
--- a/LayoutTests/fast/forms/interactive-validation-formnovalidate.html
+++ b/LayoutTests/fast/forms/interactive-validation-formnovalidate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-novalidate.html b/LayoutTests/fast/forms/interactive-validation-novalidate.html
index c978a6f..2c6786c 100644
--- a/LayoutTests/fast/forms/interactive-validation-novalidate.html
+++ b/LayoutTests/fast/forms/interactive-validation-novalidate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-prevented.html b/LayoutTests/fast/forms/interactive-validation-prevented.html
index 8efac56..d02d52e 100644
--- a/LayoutTests/fast/forms/interactive-validation-prevented.html
+++ b/LayoutTests/fast/forms/interactive-validation-prevented.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-remove-node-in-handler.html b/LayoutTests/fast/forms/interactive-validation-remove-node-in-handler.html
index 4178cac..aa7a643 100644
--- a/LayoutTests/fast/forms/interactive-validation-remove-node-in-handler.html
+++ b/LayoutTests/fast/forms/interactive-validation-remove-node-in-handler.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-required-checkbox.html b/LayoutTests/fast/forms/interactive-validation-required-checkbox.html
index f99d4cc..1f84daa 100644
--- a/LayoutTests/fast/forms/interactive-validation-required-checkbox.html
+++ b/LayoutTests/fast/forms/interactive-validation-required-checkbox.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/interactive-validation-required-radio.html b/LayoutTests/fast/forms/interactive-validation-required-radio.html
index 5422581..0d3a370 100644
--- a/LayoutTests/fast/forms/interactive-validation-required-radio.html
+++ b/LayoutTests/fast/forms/interactive-validation-required-radio.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-add-htmlFor-label.html b/LayoutTests/fast/forms/labels-add-htmlFor-label.html
index 06fd97d..955d0f8 100644
--- a/LayoutTests/fast/forms/labels-add-htmlFor-label.html
+++ b/LayoutTests/fast/forms/labels-add-htmlFor-label.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-add-parent-label.html b/LayoutTests/fast/forms/labels-add-parent-label.html
index 69d133f..6c9c8a4 100644
--- a/LayoutTests/fast/forms/labels-add-parent-label.html
+++ b/LayoutTests/fast/forms/labels-add-parent-label.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-change-htmlFor-attribute.html b/LayoutTests/fast/forms/labels-change-htmlFor-attribute.html
index dd1cd77..b1a9896 100644
--- a/LayoutTests/fast/forms/labels-change-htmlFor-attribute.html
+++ b/LayoutTests/fast/forms/labels-change-htmlFor-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-custom-property.html b/LayoutTests/fast/forms/labels-custom-property.html
index 41479ad..60f2780 100644
--- a/LayoutTests/fast/forms/labels-custom-property.html
+++ b/LayoutTests/fast/forms/labels-custom-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-item-index.html b/LayoutTests/fast/forms/labels-item-index.html
index 062d7d1..229985d 100644
--- a/LayoutTests/fast/forms/labels-item-index.html
+++ b/LayoutTests/fast/forms/labels-item-index.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-remove-htmlFor-attribute.html b/LayoutTests/fast/forms/labels-remove-htmlFor-attribute.html
index e0a2753..c0ab0cc 100644
--- a/LayoutTests/fast/forms/labels-remove-htmlFor-attribute.html
+++ b/LayoutTests/fast/forms/labels-remove-htmlFor-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-remove-htmlFor-label.html b/LayoutTests/fast/forms/labels-remove-htmlFor-label.html
index 7efc106..30f7064 100644
--- a/LayoutTests/fast/forms/labels-remove-htmlFor-label.html
+++ b/LayoutTests/fast/forms/labels-remove-htmlFor-label.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-remove-parent-label.html b/LayoutTests/fast/forms/labels-remove-parent-label.html
index 1b3b9f9..88dd0a1 100644
--- a/LayoutTests/fast/forms/labels-remove-parent-label.html
+++ b/LayoutTests/fast/forms/labels-remove-parent-label.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/labels-set-htmlFor-attribute.html b/LayoutTests/fast/forms/labels-set-htmlFor-attribute.html
index b4e7e9f3..2cb4a36 100644
--- a/LayoutTests/fast/forms/labels-set-htmlFor-attribute.html
+++ b/LayoutTests/fast/forms/labels-set-htmlFor-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/listbox-deselect-scroll.html b/LayoutTests/fast/forms/listbox-deselect-scroll.html
index 75c9ad2..c64ed91c 100644
--- a/LayoutTests/fast/forms/listbox-deselect-scroll.html
+++ b/LayoutTests/fast/forms/listbox-deselect-scroll.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/listbox-selection-2.html b/LayoutTests/fast/forms/listbox-selection-2.html
index a30a624..3421ec3 100644
--- a/LayoutTests/fast/forms/listbox-selection-2.html
+++ b/LayoutTests/fast/forms/listbox-selection-2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/listbox-selection.html b/LayoutTests/fast/forms/listbox-selection.html
index 7ea3d10..94c026c 100644
--- a/LayoutTests/fast/forms/listbox-selection.html
+++ b/LayoutTests/fast/forms/listbox-selection.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/menulist-disabled-selected-option.html b/LayoutTests/fast/forms/menulist-disabled-selected-option.html
index f4b478b5..52d919b 100644
--- a/LayoutTests/fast/forms/menulist-disabled-selected-option.html
+++ b/LayoutTests/fast/forms/menulist-disabled-selected-option.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/menulist-submit-without-selection.html b/LayoutTests/fast/forms/menulist-submit-without-selection.html
index f281422..5f3b107 100644
--- a/LayoutTests/fast/forms/menulist-submit-without-selection.html
+++ b/LayoutTests/fast/forms/menulist-submit-without-selection.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/method-attribute.html b/LayoutTests/fast/forms/method-attribute.html
index 929d093..04bdf4f 100644
--- a/LayoutTests/fast/forms/method-attribute.html
+++ b/LayoutTests/fast/forms/method-attribute.html
@@ -1,6 +1,5 @@
 <!DOCTYPE html>
 <html>
-<link rel=stylesheet href="../js/resources/js-test-style.css">
 <body>
 <script src="../js/resources/js-test-pre.js"></script>
 
diff --git a/LayoutTests/fast/forms/month/ValidityState-rangeOverflow-month.html b/LayoutTests/fast/forms/month/ValidityState-rangeOverflow-month.html
index e4db2ad..22bca67 100644
--- a/LayoutTests/fast/forms/month/ValidityState-rangeOverflow-month.html
+++ b/LayoutTests/fast/forms/month/ValidityState-rangeOverflow-month.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month.html b/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month.html
index dd32baa..5917490 100644
--- a/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month.html
+++ b/LayoutTests/fast/forms/month/ValidityState-rangeUnderflow-month.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/ValidityState-stepMismatch-month.html b/LayoutTests/fast/forms/month/ValidityState-stepMismatch-month.html
index a4c3deb..f174092 100644
--- a/LayoutTests/fast/forms/month/ValidityState-stepMismatch-month.html
+++ b/LayoutTests/fast/forms/month/ValidityState-stepMismatch-month.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/ValidityState-typeMismatch-month.html b/LayoutTests/fast/forms/month/ValidityState-typeMismatch-month.html
index ee48956..af0d43d 100644
--- a/LayoutTests/fast/forms/month/ValidityState-typeMismatch-month.html
+++ b/LayoutTests/fast/forms/month/ValidityState-typeMismatch-month.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/input-valueasdate-month.html b/LayoutTests/fast/forms/month/input-valueasdate-month.html
index 46e0aff..cb7fa5f 100644
--- a/LayoutTests/fast/forms/month/input-valueasdate-month.html
+++ b/LayoutTests/fast/forms/month/input-valueasdate-month.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/input-valueasdate.html b/LayoutTests/fast/forms/month/input-valueasdate.html
index 9f5f5bd..73ac3b2 100644
--- a/LayoutTests/fast/forms/month/input-valueasdate.html
+++ b/LayoutTests/fast/forms/month/input-valueasdate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/input-valueasnumber-month.html b/LayoutTests/fast/forms/month/input-valueasnumber-month.html
index a3ef4a4..ff7555c 100644
--- a/LayoutTests/fast/forms/month/input-valueasnumber-month.html
+++ b/LayoutTests/fast/forms/month/input-valueasnumber-month.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/month-input-type.html b/LayoutTests/fast/forms/month/month-input-type.html
index e92ce47..d9d5336 100644
--- a/LayoutTests/fast/forms/month/month-input-type.html
+++ b/LayoutTests/fast/forms/month/month-input-type.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/month-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/month/month-stepup-stepdown-from-renderer.html
index 5503f30..f69efc2 100644
--- a/LayoutTests/fast/forms/month/month-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/month/month-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/month/month-stepup-stepdown.html b/LayoutTests/fast/forms/month/month-stepup-stepdown.html
index 3b79365..9a46ce1 100644
--- a/LayoutTests/fast/forms/month/month-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/month/month-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/novalidate-attribute.html b/LayoutTests/fast/forms/novalidate-attribute.html
index b782233..6d27dda 100644
--- a/LayoutTests/fast/forms/novalidate-attribute.html
+++ b/LayoutTests/fast/forms/novalidate-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/number-input-changeevent-expected.txt b/LayoutTests/fast/forms/number-input-changeevent-expected.txt
index 45851bd..24ec6bc 100644
--- a/LayoutTests/fast/forms/number-input-changeevent-expected.txt
+++ b/LayoutTests/fast/forms/number-input-changeevent-expected.txt
@@ -2,7 +2,8 @@
 
 PASS eventSender.keyDown('1');eventSender.keyDown('2');dummy.focus();numberOfChangeEventsFired is 1
 PASS test.value = '34';numberOfChangeEventsFired is 1
-PASS test.focus();test.value = '34';document.execCommand('SelectAll'); eventSender.keyDown('1');eventSender.keyDown('2');dummy.focus();numberOfChangeEventsFired is 2
+PASS test.focus();test.value = '34';document.execCommand('SelectAll');
+eventSender.keyDown('1');eventSender.keyDown('2');dummy.focus();numberOfChangeEventsFired is 2
 PASS successfullyParsed is true
 
 TEST COMPLETE
diff --git a/LayoutTests/fast/forms/old-names.html b/LayoutTests/fast/forms/old-names.html
index b17fb7d..b2915dd 100644
--- a/LayoutTests/fast/forms/old-names.html
+++ b/LayoutTests/fast/forms/old-names.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" type="text/css" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 function runTest()
diff --git a/LayoutTests/fast/forms/option-label-trim-html-spaces.html b/LayoutTests/fast/forms/option-label-trim-html-spaces.html
index 12e68a7..e3c5857 100644
--- a/LayoutTests/fast/forms/option-label-trim-html-spaces.html
+++ b/LayoutTests/fast/forms/option-label-trim-html-spaces.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/option-strip-unicode-spaces.html b/LayoutTests/fast/forms/option-strip-unicode-spaces.html
index b057989..91d624d 100644
--- a/LayoutTests/fast/forms/option-strip-unicode-spaces.html
+++ b/LayoutTests/fast/forms/option-strip-unicode-spaces.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/option-value-and-label-changed-by-js.html b/LayoutTests/fast/forms/option-value-and-label-changed-by-js.html
index 8b4bf68..b20a3ca 100644
--- a/LayoutTests/fast/forms/option-value-and-label-changed-by-js.html
+++ b/LayoutTests/fast/forms/option-value-and-label-changed-by-js.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/option-value-and-label.html b/LayoutTests/fast/forms/option-value-and-label.html
index 655cecd..5113dc6 100644
--- a/LayoutTests/fast/forms/option-value-and-label.html
+++ b/LayoutTests/fast/forms/option-value-and-label.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/output-reset-assertion-failed.html b/LayoutTests/fast/forms/output-reset-assertion-failed.html
index a172a43..b2b6aa8 100644
--- a/LayoutTests/fast/forms/output-reset-assertion-failed.html
+++ b/LayoutTests/fast/forms/output-reset-assertion-failed.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/placeholder-dom-property.html b/LayoutTests/fast/forms/placeholder-dom-property.html
index b19f60a..30fb2a9 100644
--- a/LayoutTests/fast/forms/placeholder-dom-property.html
+++ b/LayoutTests/fast/forms/placeholder-dom-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/range/ValidityState-stepMismatch-range.html b/LayoutTests/fast/forms/range/ValidityState-stepMismatch-range.html
index fc90333..ac70971 100644
--- a/LayoutTests/fast/forms/range/ValidityState-stepMismatch-range.html
+++ b/LayoutTests/fast/forms/range/ValidityState-stepMismatch-range.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/range/input-valueasnumber-range.html b/LayoutTests/fast/forms/range/input-valueasnumber-range.html
index 7f2573e..36d431d 100644
--- a/LayoutTests/fast/forms/range/input-valueasnumber-range.html
+++ b/LayoutTests/fast/forms/range/input-valueasnumber-range.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/range/range-default-value.html b/LayoutTests/fast/forms/range/range-default-value.html
index 21d4c9e..cd4a4e2 100644
--- a/LayoutTests/fast/forms/range/range-default-value.html
+++ b/LayoutTests/fast/forms/range/range-default-value.html
@@ -1,6 +1,5 @@
 <html
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <body>
 <p id="description"></p>
diff --git a/LayoutTests/fast/forms/range/range-drag.html b/LayoutTests/fast/forms/range/range-drag.html
index 1e172e3..59bc1f9 100644
--- a/LayoutTests/fast/forms/range/range-drag.html
+++ b/LayoutTests/fast/forms/range/range-drag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/range/range-keyoperation.html b/LayoutTests/fast/forms/range/range-keyoperation.html
index de2ef16..916df11 100644
--- a/LayoutTests/fast/forms/range/range-keyoperation.html
+++ b/LayoutTests/fast/forms/range/range-keyoperation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/range/range-reset.html b/LayoutTests/fast/forms/range/range-reset.html
index 31003eb..38300c1 100644
--- a/LayoutTests/fast/forms/range/range-reset.html
+++ b/LayoutTests/fast/forms/range/range-reset.html
@@ -1,6 +1,5 @@
 <html
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <body>
 <p id="description"></p>
diff --git a/LayoutTests/fast/forms/range/range-set-attribute.html b/LayoutTests/fast/forms/range/range-set-attribute.html
index 26b83ce..ce0caff 100644
--- a/LayoutTests/fast/forms/range/range-set-attribute.html
+++ b/LayoutTests/fast/forms/range/range-set-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html
index 3940635..b69f76a 100644
--- a/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/range/range-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/range/range-stepup-stepdown.html b/LayoutTests/fast/forms/range/range-stepup-stepdown.html
index f8b4f66..ee0fc58 100644
--- a/LayoutTests/fast/forms/range/range-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/range/range-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/required-attribute-001.html b/LayoutTests/fast/forms/required-attribute-001.html
index 8aea57c..d709e1e 100644
--- a/LayoutTests/fast/forms/required-attribute-001.html
+++ b/LayoutTests/fast/forms/required-attribute-001.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>required attribute presence test</title>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/required-attribute-002.html b/LayoutTests/fast/forms/required-attribute-002.html
index 928e33f..dab820e 100644
--- a/LayoutTests/fast/forms/required-attribute-002.html
+++ b/LayoutTests/fast/forms/required-attribute-002.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title>required attribute JS set</title>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/script-tests/TEMPLATE.html b/LayoutTests/fast/forms/script-tests/TEMPLATE.html
index 70ce56c..e439eb3 100644
--- a/LayoutTests/fast/forms/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/forms/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/search-cancel-button-events.html b/LayoutTests/fast/forms/search-cancel-button-events.html
index 8030343..de11731 100644
--- a/LayoutTests/fast/forms/search-cancel-button-events.html
+++ b/LayoutTests/fast/forms/search-cancel-button-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/search-disabled-readonly-expected.txt b/LayoutTests/fast/forms/search-disabled-readonly-expected.txt
index 4081630..7dc02fc 100644
--- a/LayoutTests/fast/forms/search-disabled-readonly-expected.txt
+++ b/LayoutTests/fast/forms/search-disabled-readonly-expected.txt
@@ -1,6 +1,9 @@
 
+
+
 This tests the behavior of a cancel button in search input forms.
 
+
 Test on the input form with disabled=false and readonly=false
 Click the cancel button:
 PASS input.value is ""
diff --git a/LayoutTests/fast/forms/search-hide-cancel-on-cancel.html b/LayoutTests/fast/forms/search-hide-cancel-on-cancel.html
index 2b7cbb9..e2ee808 100644
--- a/LayoutTests/fast/forms/search-hide-cancel-on-cancel.html
+++ b/LayoutTests/fast/forms/search-hide-cancel-on-cancel.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/select-live-pseudo-selectors.html b/LayoutTests/fast/forms/select-live-pseudo-selectors.html
index 02e9f876..8874655 100644
--- a/LayoutTests/fast/forms/select-live-pseudo-selectors.html
+++ b/LayoutTests/fast/forms/select-live-pseudo-selectors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <link rel="stylesheet" href="resources/live-pseudo-selectors.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/forms/select-option-accesskey-crash.html b/LayoutTests/fast/forms/select-option-accesskey-crash.html
index 18c272c..0df4d10 100644
--- a/LayoutTests/fast/forms/select-option-accesskey-crash.html
+++ b/LayoutTests/fast/forms/select-option-accesskey-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 var successfullyParsed = false;
diff --git a/LayoutTests/fast/forms/select-set-length-optgroup.html b/LayoutTests/fast/forms/select-set-length-optgroup.html
index 9a35a4f..d6c3c06 100644
--- a/LayoutTests/fast/forms/select-set-length-optgroup.html
+++ b/LayoutTests/fast/forms/select-set-length-optgroup.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/select-set-length-with-mutation-remove.html b/LayoutTests/fast/forms/select-set-length-with-mutation-remove.html
index ac84ec5..5189d80 100644
--- a/LayoutTests/fast/forms/select-set-length-with-mutation-remove.html
+++ b/LayoutTests/fast/forms/select-set-length-with-mutation-remove.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/select-set-length-with-mutation-reorder.html b/LayoutTests/fast/forms/select-set-length-with-mutation-reorder.html
index 4e6e587..edffc3c 100644
--- a/LayoutTests/fast/forms/select-set-length-with-mutation-reorder.html
+++ b/LayoutTests/fast/forms/select-set-length-with-mutation-reorder.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/select-set-length-with-mutation-reparent.html b/LayoutTests/fast/forms/select-set-length-with-mutation-reparent.html
index 3974de8..81431aa 100644
--- a/LayoutTests/fast/forms/select-set-length-with-mutation-reparent.html
+++ b/LayoutTests/fast/forms/select-set-length-with-mutation-reparent.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/select-set-length-with-mutation.html b/LayoutTests/fast/forms/select-set-length-with-mutation.html
index 93e8f68..a984ad0 100644
--- a/LayoutTests/fast/forms/select-set-length-with-mutation.html
+++ b/LayoutTests/fast/forms/select-set-length-with-mutation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/select-set-length.html b/LayoutTests/fast/forms/select-set-length.html
index 3f066ac..67ecc77 100644
--- a/LayoutTests/fast/forms/select-set-length.html
+++ b/LayoutTests/fast/forms/select-set-length.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/selection-direction.html b/LayoutTests/fast/forms/selection-direction.html
index fa898aa..fb31c37 100644
--- a/LayoutTests/fast/forms/selection-direction.html
+++ b/LayoutTests/fast/forms/selection-direction.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>

 <html>

 <head>

-<link rel="stylesheet" href="../js/resources/js-test-style.css">

 <script src="../js/resources/js-test-pre.js"></script>

 </head>

 <body>

diff --git a/LayoutTests/fast/forms/selection-start-end-readonly.html b/LayoutTests/fast/forms/selection-start-end-readonly.html
index 65e396f..6dc4863 100644
--- a/LayoutTests/fast/forms/selection-start-end-readonly.html
+++ b/LayoutTests/fast/forms/selection-start-end-readonly.html
@@ -2,7 +2,6 @@
 <html>

 <head>

 <meta charset="utf-8">

-<link rel="stylesheet" href="../js/resources/js-test-style.css">

 <script src="../js/resources/js-test-pre.js"></script>

 </head>

 <body>

diff --git a/LayoutTests/fast/forms/selection-wrongtype.html b/LayoutTests/fast/forms/selection-wrongtype.html
index b5eaffe..5e9cc25 100644
--- a/LayoutTests/fast/forms/selection-wrongtype.html
+++ b/LayoutTests/fast/forms/selection-wrongtype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>

 <html>

 <head>

-<link rel="stylesheet" href="../js/resources/js-test-style.css">

 <script src="../js/resources/js-test-pre.js"></script>

 </head>

 <body>

diff --git a/LayoutTests/fast/forms/setCustomValidity-existence.html b/LayoutTests/fast/forms/setCustomValidity-existence.html
index 21264ba..c63445f 100644
--- a/LayoutTests/fast/forms/setCustomValidity-existence.html
+++ b/LayoutTests/fast/forms/setCustomValidity-existence.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/setCustomValidity.html b/LayoutTests/fast/forms/setCustomValidity.html
index 3942b6b..dff9728 100644
--- a/LayoutTests/fast/forms/setCustomValidity.html
+++ b/LayoutTests/fast/forms/setCustomValidity.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <style>
 
 [name=victim] {
diff --git a/LayoutTests/fast/forms/shadow-tree-exposure.html b/LayoutTests/fast/forms/shadow-tree-exposure.html
index 86eb52e..1969f31 100644
--- a/LayoutTests/fast/forms/shadow-tree-exposure.html
+++ b/LayoutTests/fast/forms/shadow-tree-exposure.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/spin-button-gets-disabled-or-readonly.html b/LayoutTests/fast/forms/spin-button-gets-disabled-or-readonly.html
index 930d418..4a55d9b 100644
--- a/LayoutTests/fast/forms/spin-button-gets-disabled-or-readonly.html
+++ b/LayoutTests/fast/forms/spin-button-gets-disabled-or-readonly.html
@@ -6,7 +6,6 @@
 <body>
 <input id="readonlyNumber" type="number" onmouseup="mouseupEventOnReadonlyNumber()" />
 <input id="disabledNumber" type="number" onmouseup="mouseupEventOnDisabledNumber()" />
-<div id="console">
 <p>
 This tests if the value of a number input form does not continue
 to increase/decrease in the following scenario.<br/>
@@ -19,7 +18,7 @@
 do not move the cursor from the spin-down button after the click.
 If the value decreases by just 1, this test passes.
 </p>
-</div>
+<div id="console"></div>
 <script>
 var testInputs;
 var testDelays;
diff --git a/LayoutTests/fast/forms/state-restore-radio-group.html b/LayoutTests/fast/forms/state-restore-radio-group.html
index 39715ec..5b5871b 100644
--- a/LayoutTests/fast/forms/state-restore-radio-group.html
+++ b/LayoutTests/fast/forms/state-restore-radio-group.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body onload="runTest()">
diff --git a/LayoutTests/fast/forms/state-restore-to-non-autocomplete-form.html b/LayoutTests/fast/forms/state-restore-to-non-autocomplete-form.html
index 377e32d..00f7895 100644
--- a/LayoutTests/fast/forms/state-restore-to-non-autocomplete-form.html
+++ b/LayoutTests/fast/forms/state-restore-to-non-autocomplete-form.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body onload="runTest()">
diff --git a/LayoutTests/fast/forms/state-restore-to-non-edited-controls.html b/LayoutTests/fast/forms/state-restore-to-non-edited-controls.html
index 4793268..c9d8f1e 100644
--- a/LayoutTests/fast/forms/state-restore-to-non-edited-controls.html
+++ b/LayoutTests/fast/forms/state-restore-to-non-edited-controls.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body onload="runTest()">
diff --git a/LayoutTests/fast/forms/state-save-of-detached-control.html b/LayoutTests/fast/forms/state-save-of-detached-control.html
index d14c531..a5830fa 100644
--- a/LayoutTests/fast/forms/state-save-of-detached-control.html
+++ b/LayoutTests/fast/forms/state-save-of-detached-control.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body onload="runTest()">
diff --git a/LayoutTests/fast/forms/submit-form-attributes.html b/LayoutTests/fast/forms/submit-form-attributes.html
index a7686a7..bffc9ee 100644
--- a/LayoutTests/fast/forms/submit-form-attributes.html
+++ b/LayoutTests/fast/forms/submit-form-attributes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/text-control-intrinsic-widths.html b/LayoutTests/fast/forms/text-control-intrinsic-widths.html
index 2d5f792..0c7a7ac 100644
--- a/LayoutTests/fast/forms/text-control-intrinsic-widths.html
+++ b/LayoutTests/fast/forms/text-control-intrinsic-widths.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-initial-caret-position.html b/LayoutTests/fast/forms/textarea-initial-caret-position.html
index ef3d119..0d5fbd5 100644
--- a/LayoutTests/fast/forms/textarea-initial-caret-position.html
+++ b/LayoutTests/fast/forms/textarea-initial-caret-position.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" type="text/css" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-input-event.html b/LayoutTests/fast/forms/textarea-input-event.html
index 3bad041..27d15ab 100644
--- a/LayoutTests/fast/forms/textarea-input-event.html
+++ b/LayoutTests/fast/forms/textarea-input-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-live-pseudo-selectors.html b/LayoutTests/fast/forms/textarea-live-pseudo-selectors.html
index d532c01..8784989 100644
--- a/LayoutTests/fast/forms/textarea-live-pseudo-selectors.html
+++ b/LayoutTests/fast/forms/textarea-live-pseudo-selectors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <link rel="stylesheet" href="resources/live-pseudo-selectors.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/forms/textarea-maxlength.html b/LayoutTests/fast/forms/textarea-maxlength.html
index ac5ecdb..8730a85 100644
--- a/LayoutTests/fast/forms/textarea-maxlength.html
+++ b/LayoutTests/fast/forms/textarea-maxlength.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-metrics.html b/LayoutTests/fast/forms/textarea-metrics.html
index cf2145c..4e5e248 100644
--- a/LayoutTests/fast/forms/textarea-metrics.html
+++ b/LayoutTests/fast/forms/textarea-metrics.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-newline.html b/LayoutTests/fast/forms/textarea-newline.html
index a99688cf..483a034 100644
--- a/LayoutTests/fast/forms/textarea-newline.html
+++ b/LayoutTests/fast/forms/textarea-newline.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-placeholder-dom-property.html b/LayoutTests/fast/forms/textarea-placeholder-dom-property.html
index bd76ea3..074ae7c 100644
--- a/LayoutTests/fast/forms/textarea-placeholder-dom-property.html
+++ b/LayoutTests/fast/forms/textarea-placeholder-dom-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-rows-cols.html b/LayoutTests/fast/forms/textarea-rows-cols.html
index 658a9be..c081305 100644
--- a/LayoutTests/fast/forms/textarea-rows-cols.html
+++ b/LayoutTests/fast/forms/textarea-rows-cols.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-selection-preservation.html b/LayoutTests/fast/forms/textarea-selection-preservation.html
index 0d6d73a..a08c1cc 100644
--- a/LayoutTests/fast/forms/textarea-selection-preservation.html
+++ b/LayoutTests/fast/forms/textarea-selection-preservation.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" type="text/css" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-set-defaultvalue-after-value.html b/LayoutTests/fast/forms/textarea-set-defaultvalue-after-value.html
index ccc00df..a17f29b 100644
--- a/LayoutTests/fast/forms/textarea-set-defaultvalue-after-value.html
+++ b/LayoutTests/fast/forms/textarea-set-defaultvalue-after-value.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-textlength.html b/LayoutTests/fast/forms/textarea-textlength.html
index 41785ba..8817c4f 100644
--- a/LayoutTests/fast/forms/textarea-textlength.html
+++ b/LayoutTests/fast/forms/textarea-textlength.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textarea-wrap-attribute.html b/LayoutTests/fast/forms/textarea-wrap-attribute.html
index def8864..145b3eb 100644
--- a/LayoutTests/fast/forms/textarea-wrap-attribute.html
+++ b/LayoutTests/fast/forms/textarea-wrap-attribute.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textfield-lastchange-was-useredit.html b/LayoutTests/fast/forms/textfield-lastchange-was-useredit.html
index 77205e1..c0a7a5b 100644
--- a/LayoutTests/fast/forms/textfield-lastchange-was-useredit.html
+++ b/LayoutTests/fast/forms/textfield-lastchange-was-useredit.html
@@ -1,7 +1,6 @@
 <!DOCTYPE>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/textfield-to-password-on-focus.html b/LayoutTests/fast/forms/textfield-to-password-on-focus.html
index 16a4c6f..34dd42d 100644
--- a/LayoutTests/fast/forms/textfield-to-password-on-focus.html
+++ b/LayoutTests/fast/forms/textfield-to-password-on-focus.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
-<head>    
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
+<head>
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 if (window.layoutTestController) {
diff --git a/LayoutTests/fast/forms/time/ValidityState-rangeOverflow-time.html b/LayoutTests/fast/forms/time/ValidityState-rangeOverflow-time.html
index 6a83aec..f94c037 100644
--- a/LayoutTests/fast/forms/time/ValidityState-rangeOverflow-time.html
+++ b/LayoutTests/fast/forms/time/ValidityState-rangeOverflow-time.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/ValidityState-rangeUnderflow-time.html b/LayoutTests/fast/forms/time/ValidityState-rangeUnderflow-time.html
index 2fc73ba..4c60efe 100644
--- a/LayoutTests/fast/forms/time/ValidityState-rangeUnderflow-time.html
+++ b/LayoutTests/fast/forms/time/ValidityState-rangeUnderflow-time.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/ValidityState-stepMismatch-time.html b/LayoutTests/fast/forms/time/ValidityState-stepMismatch-time.html
index 7ef4565..d281bd7 100644
--- a/LayoutTests/fast/forms/time/ValidityState-stepMismatch-time.html
+++ b/LayoutTests/fast/forms/time/ValidityState-stepMismatch-time.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/ValidityState-typeMismatch-time.html b/LayoutTests/fast/forms/time/ValidityState-typeMismatch-time.html
index 075afe4..91fc342 100644
--- a/LayoutTests/fast/forms/time/ValidityState-typeMismatch-time.html
+++ b/LayoutTests/fast/forms/time/ValidityState-typeMismatch-time.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/input-valueasdate-time.html b/LayoutTests/fast/forms/time/input-valueasdate-time.html
index 2c09837..c0025a2 100644
--- a/LayoutTests/fast/forms/time/input-valueasdate-time.html
+++ b/LayoutTests/fast/forms/time/input-valueasdate-time.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/input-valueasnumber-time.html b/LayoutTests/fast/forms/time/input-valueasnumber-time.html
index 06d0242..1868380 100644
--- a/LayoutTests/fast/forms/time/input-valueasnumber-time.html
+++ b/LayoutTests/fast/forms/time/input-valueasnumber-time.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/time-input-type.html b/LayoutTests/fast/forms/time/time-input-type.html
index 4106507..b52d45e 100644
--- a/LayoutTests/fast/forms/time/time-input-type.html
+++ b/LayoutTests/fast/forms/time/time-input-type.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/time-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/time/time-stepup-stepdown-from-renderer.html
index 3f8dc6f..cca86cb 100644
--- a/LayoutTests/fast/forms/time/time-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/time/time-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/time/time-stepup-stepdown.html b/LayoutTests/fast/forms/time/time-stepup-stepdown.html
index 7b2dec4..5dbd1b9 100644
--- a/LayoutTests/fast/forms/time/time-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/time/time-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/validationMessage.html b/LayoutTests/fast/forms/validationMessage.html
index af1bbff..64e9322 100644
--- a/LayoutTests/fast/forms/validationMessage.html
+++ b/LayoutTests/fast/forms/validationMessage.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/ValidityState-rangeOverflow-week.html b/LayoutTests/fast/forms/week/ValidityState-rangeOverflow-week.html
index b48db6d..8df3f23 100644
--- a/LayoutTests/fast/forms/week/ValidityState-rangeOverflow-week.html
+++ b/LayoutTests/fast/forms/week/ValidityState-rangeOverflow-week.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week.html b/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week.html
index e0be8f7..a6f71c5 100644
--- a/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week.html
+++ b/LayoutTests/fast/forms/week/ValidityState-rangeUnderflow-week.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/ValidityState-stepMismatch-week.html b/LayoutTests/fast/forms/week/ValidityState-stepMismatch-week.html
index 8c7579f..40ba186 100644
--- a/LayoutTests/fast/forms/week/ValidityState-stepMismatch-week.html
+++ b/LayoutTests/fast/forms/week/ValidityState-stepMismatch-week.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/ValidityState-typeMismatch-week.html b/LayoutTests/fast/forms/week/ValidityState-typeMismatch-week.html
index cf845aa..11bcb9a 100644
--- a/LayoutTests/fast/forms/week/ValidityState-typeMismatch-week.html
+++ b/LayoutTests/fast/forms/week/ValidityState-typeMismatch-week.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../../fast/js/resources/js-test-style.css">
 <script src="../../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/input-valueasdate-week.html b/LayoutTests/fast/forms/week/input-valueasdate-week.html
index bd40e49..1d6ba93 100644
--- a/LayoutTests/fast/forms/week/input-valueasdate-week.html
+++ b/LayoutTests/fast/forms/week/input-valueasdate-week.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/input-valueasnumber-week.html b/LayoutTests/fast/forms/week/input-valueasnumber-week.html
index 0ae8c65..fdcedf9 100644
--- a/LayoutTests/fast/forms/week/input-valueasnumber-week.html
+++ b/LayoutTests/fast/forms/week/input-valueasnumber-week.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/week-input-type.html b/LayoutTests/fast/forms/week/week-input-type.html
index 4464025..6c00b6a 100644
--- a/LayoutTests/fast/forms/week/week-input-type.html
+++ b/LayoutTests/fast/forms/week/week-input-type.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/week-stepup-stepdown-from-renderer.html b/LayoutTests/fast/forms/week/week-stepup-stepdown-from-renderer.html
index 970d755..71f9019 100644
--- a/LayoutTests/fast/forms/week/week-stepup-stepdown-from-renderer.html
+++ b/LayoutTests/fast/forms/week/week-stepup-stepdown-from-renderer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/week/week-stepup-stepdown.html b/LayoutTests/fast/forms/week/week-stepup-stepdown.html
index 3fff9f8..ca6d532 100644
--- a/LayoutTests/fast/forms/week/week-stepup-stepdown.html
+++ b/LayoutTests/fast/forms/week/week-stepup-stepdown.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/forms/willvalidate.html b/LayoutTests/fast/forms/willvalidate.html
index 258fa97..eef71be 100644
--- a/LayoutTests/fast/forms/willvalidate.html
+++ b/LayoutTests/fast/forms/willvalidate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/frames/frame-unload-crash.html b/LayoutTests/fast/frames/frame-unload-crash.html
index 33324b7..32fa8c0 100644
--- a/LayoutTests/fast/frames/frame-unload-crash.html
+++ b/LayoutTests/fast/frames/frame-unload-crash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script>
 
 if (window.layoutTestController) {
diff --git a/LayoutTests/fast/frames/iframe-no-src-local-origin-allow.html b/LayoutTests/fast/frames/iframe-no-src-local-origin-allow.html
index 59e47b8..75c5f13 100644
--- a/LayoutTests/fast/frames/iframe-no-src-local-origin-allow.html
+++ b/LayoutTests/fast/frames/iframe-no-src-local-origin-allow.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/iframe-no-src-set-location.html b/LayoutTests/fast/frames/iframe-no-src-set-location.html
index c66c3e9..83a9818 100644
--- a/LayoutTests/fast/frames/iframe-no-src-set-location.html
+++ b/LayoutTests/fast/frames/iframe-no-src-set-location.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/iframe-reparenting-new-page.html b/LayoutTests/fast/frames/iframe-reparenting-new-page.html
index 646a791..281cb13 100644
--- a/LayoutTests/fast/frames/iframe-reparenting-new-page.html
+++ b/LayoutTests/fast/frames/iframe-reparenting-new-page.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/frames/resources/frame-element-name.html b/LayoutTests/fast/frames/resources/frame-element-name.html
index 44ad86c..9911564 100644
--- a/LayoutTests/fast/frames/resources/frame-element-name.html
+++ b/LayoutTests/fast/frames/resources/frame-element-name.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-allowed.html b/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-allowed.html
index de6cc7f..b26743e 100644
--- a/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-allowed.html
+++ b/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-allowed.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html b/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html
index 5febca0..2e48a1d 100644
--- a/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html
+++ b/LayoutTests/fast/frames/resources/sandboxed-iframe-storage-disallowed.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/sandboxed-iframe-about-blank.html b/LayoutTests/fast/frames/sandboxed-iframe-about-blank.html
index c956b84..d23c6d4 100644
--- a/LayoutTests/fast/frames/sandboxed-iframe-about-blank.html
+++ b/LayoutTests/fast/frames/sandboxed-iframe-about-blank.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/sandboxed-iframe-navigation-allowed.html b/LayoutTests/fast/frames/sandboxed-iframe-navigation-allowed.html
index 58438d2..fac43a1 100644
--- a/LayoutTests/fast/frames/sandboxed-iframe-navigation-allowed.html
+++ b/LayoutTests/fast/frames/sandboxed-iframe-navigation-allowed.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/sandboxed-iframe-plugins.html b/LayoutTests/fast/frames/sandboxed-iframe-plugins.html
index 3f40691..7c93eb4 100644
--- a/LayoutTests/fast/frames/sandboxed-iframe-plugins.html
+++ b/LayoutTests/fast/frames/sandboxed-iframe-plugins.html
@@ -1,6 +1,5 @@
 <html> 
-<head> 
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
+<head>
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script> 
diff --git a/LayoutTests/fast/frames/sandboxed-iframe-scripting.html b/LayoutTests/fast/frames/sandboxed-iframe-scripting.html
index 0c76a93..af3fe19 100644
--- a/LayoutTests/fast/frames/sandboxed-iframe-scripting.html
+++ b/LayoutTests/fast/frames/sandboxed-iframe-scripting.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/sandboxed-iframe-storage.html b/LayoutTests/fast/frames/sandboxed-iframe-storage.html
index f622b5d..b8665b5 100644
--- a/LayoutTests/fast/frames/sandboxed-iframe-storage.html
+++ b/LayoutTests/fast/frames/sandboxed-iframe-storage.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/frames/script-tests/TEMPLATE.html b/LayoutTests/fast/frames/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/frames/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/frames/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/gradients/css3-gradient-parsing.html b/LayoutTests/fast/gradients/css3-gradient-parsing.html
index 127bb4f..5541209 100644
--- a/LayoutTests/fast/gradients/css3-gradient-parsing.html
+++ b/LayoutTests/fast/gradients/css3-gradient-parsing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/history/history-back-forward-within-subframe-hash.html b/LayoutTests/fast/history/history-back-forward-within-subframe-hash.html
index dbbcec1..8a9402c 100644
--- a/LayoutTests/fast/history/history-back-forward-within-subframe-hash.html
+++ b/LayoutTests/fast/history/history-back-forward-within-subframe-hash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-  <link rel="stylesheet" href="../js/resources/js-test-style.css">
   <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/history/history-subframe-with-name.html b/LayoutTests/fast/history/history-subframe-with-name.html
index f192010..ac3c499 100644
--- a/LayoutTests/fast/history/history-subframe-with-name.html
+++ b/LayoutTests/fast/history/history-subframe-with-name.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/history/history-traversal-is-asynchronous.html b/LayoutTests/fast/history/history-traversal-is-asynchronous.html
index e1b87c0..bd25661 100644
--- a/LayoutTests/fast/history/history-traversal-is-asynchronous.html
+++ b/LayoutTests/fast/history/history-traversal-is-asynchronous.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-  <link rel="stylesheet" href="../js/resources/js-test-style.css">
   <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/history/location-replace-hash.html b/LayoutTests/fast/history/location-replace-hash.html
index 6808ca3..d95fe6e 100644
--- a/LayoutTests/fast/history/location-replace-hash.html
+++ b/LayoutTests/fast/history/location-replace-hash.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/history/same-document-iframes-changing-fragment.html b/LayoutTests/fast/history/same-document-iframes-changing-fragment.html
index 2a169a7..a505930 100644
--- a/LayoutTests/fast/history/same-document-iframes-changing-fragment.html
+++ b/LayoutTests/fast/history/same-document-iframes-changing-fragment.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html> 
 <html> 
-<head> 
-  <link rel="stylesheet" href="../js/resources/js-test-style.css">
+<head>
   <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/history/same-document-iframes-changing-pushstate.html b/LayoutTests/fast/history/same-document-iframes-changing-pushstate.html
index 73d90ac..4b6ea91 100644
--- a/LayoutTests/fast/history/same-document-iframes-changing-pushstate.html
+++ b/LayoutTests/fast/history/same-document-iframes-changing-pushstate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html> 
 <html> 
-<head> 
-  <link rel="stylesheet" href="../js/resources/js-test-style.css">
+<head>
   <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/article-element.html b/LayoutTests/fast/html/article-element.html
index e829e7c..0f96830 100644
--- a/LayoutTests/fast/html/article-element.html
+++ b/LayoutTests/fast/html/article-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/aside-element.html b/LayoutTests/fast/html/aside-element.html
index 1994a75..9414541 100644
--- a/LayoutTests/fast/html/aside-element.html
+++ b/LayoutTests/fast/html/aside-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/clone-keygen.html b/LayoutTests/fast/html/clone-keygen.html
index b9bace0..dde500e 100644
--- a/LayoutTests/fast/html/clone-keygen.html
+++ b/LayoutTests/fast/html/clone-keygen.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <script src="../js/resources/js-test-pre.js"></script>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <style type="text/css">
 *::-webkit-keygen-select {
   color: purple;
diff --git a/LayoutTests/fast/html/clone-range.html b/LayoutTests/fast/html/clone-range.html
index b8f4d2a..4a638cc 100644
--- a/LayoutTests/fast/html/clone-range.html
+++ b/LayoutTests/fast/html/clone-range.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <script src="../js/resources/js-test-pre.js"></script>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 </head>
 <body>
 <p>
diff --git a/LayoutTests/fast/html/details-clone.html b/LayoutTests/fast/html/details-clone.html
index 577fe90..e5c07db 100644
--- a/LayoutTests/fast/html/details-clone.html
+++ b/LayoutTests/fast/html/details-clone.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <script>
 function runTest()
diff --git a/LayoutTests/fast/html/disable-style-element.html b/LayoutTests/fast/html/disable-style-element.html
index 0079b9e..801d620b 100644
--- a/LayoutTests/fast/html/disable-style-element.html
+++ b/LayoutTests/fast/html/disable-style-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 <style>
 .test {
diff --git a/LayoutTests/fast/html/figcaption-element.html b/LayoutTests/fast/html/figcaption-element.html
index 7694dee..04e4498 100644
--- a/LayoutTests/fast/html/figcaption-element.html
+++ b/LayoutTests/fast/html/figcaption-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/figure-element.html b/LayoutTests/fast/html/figure-element.html
index 07d99e8..fe9e3f8 100644
--- a/LayoutTests/fast/html/figure-element.html
+++ b/LayoutTests/fast/html/figure-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/footer-element.html b/LayoutTests/fast/html/footer-element.html
index fcdf7b5..2d3373c 100644
--- a/LayoutTests/fast/html/footer-element.html
+++ b/LayoutTests/fast/html/footer-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/header-element.html b/LayoutTests/fast/html/header-element.html
index 83798d3..aef775a 100644
--- a/LayoutTests/fast/html/header-element.html
+++ b/LayoutTests/fast/html/header-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/hgroup-element.html b/LayoutTests/fast/html/hgroup-element.html
index 1e3f885..de0df51 100644
--- a/LayoutTests/fast/html/hgroup-element.html
+++ b/LayoutTests/fast/html/hgroup-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/hidden-attr-dom.html b/LayoutTests/fast/html/hidden-attr-dom.html
index 3e5779a..cdbf28d 100644
--- a/LayoutTests/fast/html/hidden-attr-dom.html
+++ b/LayoutTests/fast/html/hidden-attr-dom.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/hidden-attr.html b/LayoutTests/fast/html/hidden-attr.html
index 7f9af11..46fddd9 100644
--- a/LayoutTests/fast/html/hidden-attr.html
+++ b/LayoutTests/fast/html/hidden-attr.html
@@ -1,6 +1,5 @@
 <!DOCTYPE html>

 <meta charset=utf8>

-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">

 <script src="../../fast/js/resources/js-test-pre.js"></script>

 

 <p id="description"></p>

diff --git a/LayoutTests/fast/html/mark-element.html b/LayoutTests/fast/html/mark-element.html
index 8a51c7d..37d455f 100644
--- a/LayoutTests/fast/html/mark-element.html
+++ b/LayoutTests/fast/html/mark-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/marquee-element.html b/LayoutTests/fast/html/marquee-element.html
index d489cc3..c46aca9 100644
--- a/LayoutTests/fast/html/marquee-element.html
+++ b/LayoutTests/fast/html/marquee-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/numbered-header-element.html b/LayoutTests/fast/html/numbered-header-element.html
index d0e06b9..7035cca 100644
--- a/LayoutTests/fast/html/numbered-header-element.html
+++ b/LayoutTests/fast/html/numbered-header-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/object-border.html b/LayoutTests/fast/html/object-border.html
index dc30a93..e95eb9a 100644
--- a/LayoutTests/fast/html/object-border.html
+++ b/LayoutTests/fast/html/object-border.html
@@ -1,6 +1,5 @@
 <html xmlns='http://www.w3.org/1999/xhtml'>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <title>OBJECT - border=pixel</title>
 </head>
diff --git a/LayoutTests/fast/html/script-tests/TEMPLATE.html b/LayoutTests/fast/html/script-tests/TEMPLATE.html
index 4c34a58..2812e79 100644
--- a/LayoutTests/fast/html/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/html/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/section-element.html b/LayoutTests/fast/html/section-element.html
index 39b4e66..768f19e 100644
--- a/LayoutTests/fast/html/section-element.html
+++ b/LayoutTests/fast/html/section-element.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/set-text-direction.html b/LayoutTests/fast/html/set-text-direction.html
index 7e55397..24a0432 100644
--- a/LayoutTests/fast/html/set-text-direction.html
+++ b/LayoutTests/fast/html/set-text-direction.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/html/unknown-tag.html b/LayoutTests/fast/html/unknown-tag.html
index 5816f38..4969c40 100644
--- a/LayoutTests/fast/html/unknown-tag.html
+++ b/LayoutTests/fast/html/unknown-tag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/images/border.html b/LayoutTests/fast/images/border.html
index 6f8c234..15ec737 100644
--- a/LayoutTests/fast/images/border.html
+++ b/LayoutTests/fast/images/border.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/images/cmyk-jpeg-with-color-profile.html b/LayoutTests/fast/images/cmyk-jpeg-with-color-profile.html
index bcdac97..44e3d53 100644
--- a/LayoutTests/fast/images/cmyk-jpeg-with-color-profile.html
+++ b/LayoutTests/fast/images/cmyk-jpeg-with-color-profile.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/images/imagemap-dynamic-area-updates.html b/LayoutTests/fast/images/imagemap-dynamic-area-updates.html
index 744b33c9..1d02a2f 100644
--- a/LayoutTests/fast/images/imagemap-dynamic-area-updates.html
+++ b/LayoutTests/fast/images/imagemap-dynamic-area-updates.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/images/move-image-to-new-document.html b/LayoutTests/fast/images/move-image-to-new-document.html
index 427eae1..2a2d883 100644
--- a/LayoutTests/fast/images/move-image-to-new-document.html
+++ b/LayoutTests/fast/images/move-image-to-new-document.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/images/script-tests/TEMPLATE.html b/LayoutTests/fast/images/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/images/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/images/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/inline/inline-position-top-align.html b/LayoutTests/fast/inline/inline-position-top-align.html
index 9452903..779ed87 100644
--- a/LayoutTests/fast/inline/inline-position-top-align.html
+++ b/LayoutTests/fast/inline/inline-position-top-align.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <style>
 	body{
         font-size: 16px;
diff --git a/LayoutTests/fast/innerHTML/innerHTML-special-elements.html b/LayoutTests/fast/innerHTML/innerHTML-special-elements.html
index 7211a0e..c7b2687 100644
--- a/LayoutTests/fast/innerHTML/innerHTML-special-elements.html
+++ b/LayoutTests/fast/innerHTML/innerHTML-special-elements.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html b/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html
index 6427ae5..2a42e64 100644
--- a/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html
+++ b/LayoutTests/fast/innerHTML/innerHTML-uri-resolution.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/Array-isArray.html b/LayoutTests/fast/js/Array-isArray.html
index b79836a..388499f 100644
--- a/LayoutTests/fast/js/Array-isArray.html
+++ b/LayoutTests/fast/js/Array-isArray.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/JSON-parse-reviver.html b/LayoutTests/fast/js/JSON-parse-reviver.html
index 9a6a93a..d465b49 100644
--- a/LayoutTests/fast/js/JSON-parse-reviver.html
+++ b/LayoutTests/fast/js/JSON-parse-reviver.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/JSON-parse.html b/LayoutTests/fast/js/JSON-parse.html
index 7eed9ec..518b576 100644
--- a/LayoutTests/fast/js/JSON-parse.html
+++ b/LayoutTests/fast/js/JSON-parse.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/JSON-stringify-replacer.html b/LayoutTests/fast/js/JSON-stringify-replacer.html
index 0a01fb7..824b57f 100644
--- a/LayoutTests/fast/js/JSON-stringify-replacer.html
+++ b/LayoutTests/fast/js/JSON-stringify-replacer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/JSON-stringify.html b/LayoutTests/fast/js/JSON-stringify.html
index fa96063..ee349ad 100644
--- a/LayoutTests/fast/js/JSON-stringify.html
+++ b/LayoutTests/fast/js/JSON-stringify.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/Object-create.html b/LayoutTests/fast/js/Object-create.html
index 810afff..a57570a 100644
--- a/LayoutTests/fast/js/Object-create.html
+++ b/LayoutTests/fast/js/Object-create.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/Object-defineProperties.html b/LayoutTests/fast/js/Object-defineProperties.html
index 7b49966..08c1524 100644
--- a/LayoutTests/fast/js/Object-defineProperties.html
+++ b/LayoutTests/fast/js/Object-defineProperties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/Object-defineProperty.html b/LayoutTests/fast/js/Object-defineProperty.html
index 31280ec..3e0d395 100644
--- a/LayoutTests/fast/js/Object-defineProperty.html
+++ b/LayoutTests/fast/js/Object-defineProperty.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/Object-getOwnPropertyNames.html b/LayoutTests/fast/js/Object-getOwnPropertyNames.html
index ac85668..84ac6b6 100644
--- a/LayoutTests/fast/js/Object-getOwnPropertyNames.html
+++ b/LayoutTests/fast/js/Object-getOwnPropertyNames.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/Object-keys.html b/LayoutTests/fast/js/Object-keys.html
index 1e69107..890af12 100644
--- a/LayoutTests/fast/js/Object-keys.html
+++ b/LayoutTests/fast/js/Object-keys.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/ToNumber.html b/LayoutTests/fast/js/ToNumber.html
index 28630a7..acf0b53 100644
--- a/LayoutTests/fast/js/ToNumber.html
+++ b/LayoutTests/fast/js/ToNumber.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/activation-proto.html b/LayoutTests/fast/js/activation-proto.html
index a031bdb..e774bc6 100644
--- a/LayoutTests/fast/js/activation-proto.html
+++ b/LayoutTests/fast/js/activation-proto.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/add-recovery.html b/LayoutTests/fast/js/add-recovery.html
index 2dff7b2..59142d7 100644
--- a/LayoutTests/fast/js/add-recovery.html
+++ b/LayoutTests/fast/js/add-recovery.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/arguments-bad-index.html b/LayoutTests/fast/js/arguments-bad-index.html
index 5540cde..9de70d5 100644
--- a/LayoutTests/fast/js/arguments-bad-index.html
+++ b/LayoutTests/fast/js/arguments-bad-index.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/arguments.html b/LayoutTests/fast/js/arguments.html
index bd75401..d015de5 100644
--- a/LayoutTests/fast/js/arguments.html
+++ b/LayoutTests/fast/js/arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-constructor-host-call.html b/LayoutTests/fast/js/array-constructor-host-call.html
index e6e2435..7ecfc23 100644
--- a/LayoutTests/fast/js/array-constructor-host-call.html
+++ b/LayoutTests/fast/js/array-constructor-host-call.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-enumerators-functions.html b/LayoutTests/fast/js/array-enumerators-functions.html
index c38b42e..6258817 100644
--- a/LayoutTests/fast/js/array-enumerators-functions.html
+++ b/LayoutTests/fast/js/array-enumerators-functions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-every.html b/LayoutTests/fast/js/array-every.html
index a1af407..2bd0608 100644
--- a/LayoutTests/fast/js/array-every.html
+++ b/LayoutTests/fast/js/array-every.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-filter.html b/LayoutTests/fast/js/array-filter.html
index f97de39..d477024 100644
--- a/LayoutTests/fast/js/array-filter.html
+++ b/LayoutTests/fast/js/array-filter.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-float-delete.html b/LayoutTests/fast/js/array-float-delete.html
index 7fb8433..30f2ec5 100644
--- a/LayoutTests/fast/js/array-float-delete.html
+++ b/LayoutTests/fast/js/array-float-delete.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-functions-non-arrays.html b/LayoutTests/fast/js/array-functions-non-arrays.html
index bcf7a14..c5652cf 100644
--- a/LayoutTests/fast/js/array-functions-non-arrays.html
+++ b/LayoutTests/fast/js/array-functions-non-arrays.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-holes.html b/LayoutTests/fast/js/array-holes.html
index 630d240..cd4598f 100644
--- a/LayoutTests/fast/js/array-holes.html
+++ b/LayoutTests/fast/js/array-holes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-index-immediate-types.html b/LayoutTests/fast/js/array-index-immediate-types.html
index 85749c5..3b0817b 100644
--- a/LayoutTests/fast/js/array-index-immediate-types.html
+++ b/LayoutTests/fast/js/array-index-immediate-types.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-indexing.html b/LayoutTests/fast/js/array-indexing.html
index 2d60f9c..911182b 100644
--- a/LayoutTests/fast/js/array-indexing.html
+++ b/LayoutTests/fast/js/array-indexing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-iterate-backwards.html b/LayoutTests/fast/js/array-iterate-backwards.html
index b188535..edb6e00 100644
--- a/LayoutTests/fast/js/array-iterate-backwards.html
+++ b/LayoutTests/fast/js/array-iterate-backwards.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-join-bug-11524.html b/LayoutTests/fast/js/array-join-bug-11524.html
index c2fb08f..004a4df 100644
--- a/LayoutTests/fast/js/array-join-bug-11524.html
+++ b/LayoutTests/fast/js/array-join-bug-11524.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-lastIndexOf.html b/LayoutTests/fast/js/array-lastIndexOf.html
index c100153..408a292 100644
--- a/LayoutTests/fast/js/array-lastIndexOf.html
+++ b/LayoutTests/fast/js/array-lastIndexOf.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-proto-func-length-getter-except.html b/LayoutTests/fast/js/array-proto-func-length-getter-except.html
index 44ee5fc..f3507b6 100644
--- a/LayoutTests/fast/js/array-proto-func-length-getter-except.html
+++ b/LayoutTests/fast/js/array-proto-func-length-getter-except.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-proto-func-property-getter-except.html b/LayoutTests/fast/js/array-proto-func-property-getter-except.html
index 07da5cf..9004794 100644
--- a/LayoutTests/fast/js/array-proto-func-property-getter-except.html
+++ b/LayoutTests/fast/js/array-proto-func-property-getter-except.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-prototype-properties.html b/LayoutTests/fast/js/array-prototype-properties.html
index 35c1d1e..de170b5 100644
--- a/LayoutTests/fast/js/array-prototype-properties.html
+++ b/LayoutTests/fast/js/array-prototype-properties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-reduce.html b/LayoutTests/fast/js/array-reduce.html
index a8cf9fc..2cae527 100644
--- a/LayoutTests/fast/js/array-reduce.html
+++ b/LayoutTests/fast/js/array-reduce.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-reduceRight.html b/LayoutTests/fast/js/array-reduceRight.html
index 5e954bd..09eb82f 100644
--- a/LayoutTests/fast/js/array-reduceRight.html
+++ b/LayoutTests/fast/js/array-reduceRight.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-reset-large-index.html b/LayoutTests/fast/js/array-reset-large-index.html
index ae68fe1..978984d 100644
--- a/LayoutTests/fast/js/array-reset-large-index.html
+++ b/LayoutTests/fast/js/array-reset-large-index.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-sort-exception.html b/LayoutTests/fast/js/array-sort-exception.html
index 9354276..dc96d7b 100644
--- a/LayoutTests/fast/js/array-sort-exception.html
+++ b/LayoutTests/fast/js/array-sort-exception.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-sort-modifying-tostring.html b/LayoutTests/fast/js/array-sort-modifying-tostring.html
index 4122407..697b44c 100644
--- a/LayoutTests/fast/js/array-sort-modifying-tostring.html
+++ b/LayoutTests/fast/js/array-sort-modifying-tostring.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-sort-numericCompare.html b/LayoutTests/fast/js/array-sort-numericCompare.html
index 7e34938..3aeb976 100644
--- a/LayoutTests/fast/js/array-sort-numericCompare.html
+++ b/LayoutTests/fast/js/array-sort-numericCompare.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-sort-reentrance.html b/LayoutTests/fast/js/array-sort-reentrance.html
index 1e67c45..47f1224 100644
--- a/LayoutTests/fast/js/array-sort-reentrance.html
+++ b/LayoutTests/fast/js/array-sort-reentrance.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-splice.html b/LayoutTests/fast/js/array-splice.html
index b2885e1..a65b229 100644
--- a/LayoutTests/fast/js/array-splice.html
+++ b/LayoutTests/fast/js/array-splice.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-tostring-and-join.html b/LayoutTests/fast/js/array-tostring-and-join.html
index 762b957..8443cff 100644
--- a/LayoutTests/fast/js/array-tostring-and-join.html
+++ b/LayoutTests/fast/js/array-tostring-and-join.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-tostring-ignore-separator.html b/LayoutTests/fast/js/array-tostring-ignore-separator.html
index 8b0b674..1958bfb 100644
--- a/LayoutTests/fast/js/array-tostring-ignore-separator.html
+++ b/LayoutTests/fast/js/array-tostring-ignore-separator.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/array-type-speculation.html b/LayoutTests/fast/js/array-type-speculation.html
index b0bf60a..811f782 100644
--- a/LayoutTests/fast/js/array-type-speculation.html
+++ b/LayoutTests/fast/js/array-type-speculation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/assign.html b/LayoutTests/fast/js/assign.html
index b899162..ced2510 100644
--- a/LayoutTests/fast/js/assign.html
+++ b/LayoutTests/fast/js/assign.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/avl-crash.html b/LayoutTests/fast/js/avl-crash.html
index 891c193..ecf61b9 100644
--- a/LayoutTests/fast/js/avl-crash.html
+++ b/LayoutTests/fast/js/avl-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/basic-strict-mode.html b/LayoutTests/fast/js/basic-strict-mode.html
index 1e6beb5..5c6484d 100644
--- a/LayoutTests/fast/js/basic-strict-mode.html
+++ b/LayoutTests/fast/js/basic-strict-mode.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/bitops-type-tag.html b/LayoutTests/fast/js/bitops-type-tag.html
index 50c857a..f3cf45f 100644
--- a/LayoutTests/fast/js/bitops-type-tag.html
+++ b/LayoutTests/fast/js/bitops-type-tag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/bom-in-file-retains-correct-offset.html b/LayoutTests/fast/js/bom-in-file-retains-correct-offset.html
index cdaf111..e8e1792 100644
--- a/LayoutTests/fast/js/bom-in-file-retains-correct-offset.html
+++ b/LayoutTests/fast/js/bom-in-file-retains-correct-offset.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/boolean-argument-prediction.html b/LayoutTests/fast/js/boolean-argument-prediction.html
index 97d5f18..84b1ac2 100644
--- a/LayoutTests/fast/js/boolean-argument-prediction.html
+++ b/LayoutTests/fast/js/boolean-argument-prediction.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/boxed-double-to-int.html b/LayoutTests/fast/js/boxed-double-to-int.html
index 4b07f67..fc309d7 100644
--- a/LayoutTests/fast/js/boxed-double-to-int.html
+++ b/LayoutTests/fast/js/boxed-double-to-int.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/break-ASI.html b/LayoutTests/fast/js/break-ASI.html
index acc9f52..f281124 100644
--- a/LayoutTests/fast/js/break-ASI.html
+++ b/LayoutTests/fast/js/break-ASI.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/cached-eval-gc.html b/LayoutTests/fast/js/cached-eval-gc.html
index 359684c..366f9d1 100644
--- a/LayoutTests/fast/js/cached-eval-gc.html
+++ b/LayoutTests/fast/js/cached-eval-gc.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/call-apply-crash.html b/LayoutTests/fast/js/call-apply-crash.html
index d78e6ed..4cf7eba 100644
--- a/LayoutTests/fast/js/call-apply-crash.html
+++ b/LayoutTests/fast/js/call-apply-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/call-base-resolution.html b/LayoutTests/fast/js/call-base-resolution.html
index 4bbac87..937a672 100644
--- a/LayoutTests/fast/js/call-base-resolution.html
+++ b/LayoutTests/fast/js/call-base-resolution.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 </head>
 <body>
 
diff --git a/LayoutTests/fast/js/caller-property.html b/LayoutTests/fast/js/caller-property.html
index 6277260..100b3eb 100644
--- a/LayoutTests/fast/js/caller-property.html
+++ b/LayoutTests/fast/js/caller-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/char-at.html b/LayoutTests/fast/js/char-at.html
index 2f0856e..f6f14c5 100644
--- a/LayoutTests/fast/js/char-at.html
+++ b/LayoutTests/fast/js/char-at.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/closure-inside-extra-arg-call.html b/LayoutTests/fast/js/closure-inside-extra-arg-call.html
index a4f00cd..ebb05af 100644
--- a/LayoutTests/fast/js/closure-inside-extra-arg-call.html
+++ b/LayoutTests/fast/js/closure-inside-extra-arg-call.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/code-serialize-paren.html b/LayoutTests/fast/js/code-serialize-paren.html
index aec93ca..2a49758 100644
--- a/LayoutTests/fast/js/code-serialize-paren.html
+++ b/LayoutTests/fast/js/code-serialize-paren.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/codegen-jless.html b/LayoutTests/fast/js/codegen-jless.html
index ea3a1d3..d08a9bb 100644
--- a/LayoutTests/fast/js/codegen-jless.html
+++ b/LayoutTests/fast/js/codegen-jless.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/codegen-loops-logical-nodes.html b/LayoutTests/fast/js/codegen-loops-logical-nodes.html
index fc68395..1bb1acb 100644
--- a/LayoutTests/fast/js/codegen-loops-logical-nodes.html
+++ b/LayoutTests/fast/js/codegen-loops-logical-nodes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/codegen-peephole-locals.html b/LayoutTests/fast/js/codegen-peephole-locals.html
index 8b64493..71c3b29 100644
--- a/LayoutTests/fast/js/codegen-peephole-locals.html
+++ b/LayoutTests/fast/js/codegen-peephole-locals.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/codegen-temporaries-multiple-global-blocks.html b/LayoutTests/fast/js/codegen-temporaries-multiple-global-blocks.html
index d1fba3b..12ecfa9 100644
--- a/LayoutTests/fast/js/codegen-temporaries-multiple-global-blocks.html
+++ b/LayoutTests/fast/js/codegen-temporaries-multiple-global-blocks.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/codegen-temporaries.html b/LayoutTests/fast/js/codegen-temporaries.html
index 5d56390..dfcca31 100644
--- a/LayoutTests/fast/js/codegen-temporaries.html
+++ b/LayoutTests/fast/js/codegen-temporaries.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/comparefn-sort-stability.html b/LayoutTests/fast/js/comparefn-sort-stability.html
index 94d5d72..b3401eb 100644
--- a/LayoutTests/fast/js/comparefn-sort-stability.html
+++ b/LayoutTests/fast/js/comparefn-sort-stability.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/comparison-operators-greater.html b/LayoutTests/fast/js/comparison-operators-greater.html
index 8f39438..d80da65 100644
--- a/LayoutTests/fast/js/comparison-operators-greater.html
+++ b/LayoutTests/fast/js/comparison-operators-greater.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/comparison-operators-less.html b/LayoutTests/fast/js/comparison-operators-less.html
index c4f85cc..0b7f483 100644
--- a/LayoutTests/fast/js/comparison-operators-less.html
+++ b/LayoutTests/fast/js/comparison-operators-less.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/comparison-operators.html b/LayoutTests/fast/js/comparison-operators.html
index b8940bd..c93b4cb 100644
--- a/LayoutTests/fast/js/comparison-operators.html
+++ b/LayoutTests/fast/js/comparison-operators.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/console-non-string-values-expected.txt b/LayoutTests/fast/js/console-non-string-values-expected.txt
index 7dd48f9..28845e0 100644
--- a/LayoutTests/fast/js/console-non-string-values-expected.txt
+++ b/LayoutTests/fast/js/console-non-string-values-expected.txt
@@ -1,5 +1,5 @@
-CONSOLE MESSAGE: line 10: I am a string
-CONSOLE MESSAGE: line 11: 42
+CONSOLE MESSAGE: line 9: I am a string
+CONSOLE MESSAGE: line 10: 42
 Should see two console messages, the first a string, and the second a number.
 PASS successfullyParsed is true
 
diff --git a/LayoutTests/fast/js/console-non-string-values.html b/LayoutTests/fast/js/console-non-string-values.html
index 43d13fb..4c1d942 100644
--- a/LayoutTests/fast/js/console-non-string-values.html
+++ b/LayoutTests/fast/js/console-non-string-values.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/const-without-initializer.html b/LayoutTests/fast/js/const-without-initializer.html
index 6b0fc68..0be6644 100644
--- a/LayoutTests/fast/js/const-without-initializer.html
+++ b/LayoutTests/fast/js/const-without-initializer.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/const.html b/LayoutTests/fast/js/const.html
index 6a36c1c..2f190a3 100644
--- a/LayoutTests/fast/js/const.html
+++ b/LayoutTests/fast/js/const.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body id="bodyId">
diff --git a/LayoutTests/fast/js/constant-count.html b/LayoutTests/fast/js/constant-count.html
index d397c18..31ad5f0 100644
--- a/LayoutTests/fast/js/constant-count.html
+++ b/LayoutTests/fast/js/constant-count.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/constant-encoding.html b/LayoutTests/fast/js/constant-encoding.html
index bb1bb68..8264984 100644
--- a/LayoutTests/fast/js/constant-encoding.html
+++ b/LayoutTests/fast/js/constant-encoding.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/constant-folding.html b/LayoutTests/fast/js/constant-folding.html
index b1c8408..8324040 100644
--- a/LayoutTests/fast/js/constant-folding.html
+++ b/LayoutTests/fast/js/constant-folding.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/constructor-attributes.html b/LayoutTests/fast/js/constructor-attributes.html
index 393a9dc..12a9538 100644
--- a/LayoutTests/fast/js/constructor-attributes.html
+++ b/LayoutTests/fast/js/constructor-attributes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/constructor.html b/LayoutTests/fast/js/constructor.html
index 335a9b2..c77c1e5 100644
--- a/LayoutTests/fast/js/constructor.html
+++ b/LayoutTests/fast/js/constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/continue-break-multiple-labels.html b/LayoutTests/fast/js/continue-break-multiple-labels.html
index e8495f8..cd46e66 100644
--- a/LayoutTests/fast/js/continue-break-multiple-labels.html
+++ b/LayoutTests/fast/js/continue-break-multiple-labels.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/convert-nan-to-bool.html b/LayoutTests/fast/js/convert-nan-to-bool.html
index bb3c965..2433abe 100644
--- a/LayoutTests/fast/js/convert-nan-to-bool.html
+++ b/LayoutTests/fast/js/convert-nan-to-bool.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/cross-frame-prototype.html b/LayoutTests/fast/js/cross-frame-prototype.html
index 45490e8..f4c6103 100644
--- a/LayoutTests/fast/js/cross-frame-prototype.html
+++ b/LayoutTests/fast/js/cross-frame-prototype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/custom-constructors.html b/LayoutTests/fast/js/custom-constructors.html
index 7dbb9fb..e5bf91a 100644
--- a/LayoutTests/fast/js/custom-constructors.html
+++ b/LayoutTests/fast/js/custom-constructors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/cyclic-proto.html b/LayoutTests/fast/js/cyclic-proto.html
index b1cd160..1780d94 100644
--- a/LayoutTests/fast/js/cyclic-proto.html
+++ b/LayoutTests/fast/js/cyclic-proto.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/cyclic-prototypes.html b/LayoutTests/fast/js/cyclic-prototypes.html
index f10e7f9..cbb0b22 100644
--- a/LayoutTests/fast/js/cyclic-prototypes.html
+++ b/LayoutTests/fast/js/cyclic-prototypes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/cyclic-ref-toString.html b/LayoutTests/fast/js/cyclic-ref-toString.html
index 95be22c..019390c 100644
--- a/LayoutTests/fast/js/cyclic-ref-toString.html
+++ b/LayoutTests/fast/js/cyclic-ref-toString.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-DST-pre-1970.html b/LayoutTests/fast/js/date-DST-pre-1970.html
index fdc87c2..e0f2e99 100644
--- a/LayoutTests/fast/js/date-DST-pre-1970.html
+++ b/LayoutTests/fast/js/date-DST-pre-1970.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-DST-time-cusps.html b/LayoutTests/fast/js/date-DST-time-cusps.html
index 5c24fba..8818764 100644
--- a/LayoutTests/fast/js/date-DST-time-cusps.html
+++ b/LayoutTests/fast/js/date-DST-time-cusps.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-big-constructor.html b/LayoutTests/fast/js/date-big-constructor.html
index 2ed9d10..1f6a6b0 100644
--- a/LayoutTests/fast/js/date-big-constructor.html
+++ b/LayoutTests/fast/js/date-big-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-big-setdate.html b/LayoutTests/fast/js/date-big-setdate.html
index 31dbdd4..46d4b67 100644
--- a/LayoutTests/fast/js/date-big-setdate.html
+++ b/LayoutTests/fast/js/date-big-setdate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-big-setmonth.html b/LayoutTests/fast/js/date-big-setmonth.html
index 00b7cbe..4d48229 100644
--- a/LayoutTests/fast/js/date-big-setmonth.html
+++ b/LayoutTests/fast/js/date-big-setmonth.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-constructor.html b/LayoutTests/fast/js/date-constructor.html
index 2769b7b..64c48d8 100644
--- a/LayoutTests/fast/js/date-constructor.html
+++ b/LayoutTests/fast/js/date-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-daysfrom1970-overflow.html b/LayoutTests/fast/js/date-daysfrom1970-overflow.html
index 67e3bff..e1f4262 100644
--- a/LayoutTests/fast/js/date-daysfrom1970-overflow.html
+++ b/LayoutTests/fast/js/date-daysfrom1970-overflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-negative-setmonth.html b/LayoutTests/fast/js/date-negative-setmonth.html
index 61eaf27..bba12ca 100644
--- a/LayoutTests/fast/js/date-negative-setmonth.html
+++ b/LayoutTests/fast/js/date-negative-setmonth.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-parse-comments-test.html b/LayoutTests/fast/js/date-parse-comments-test.html
index 5c6ca3f..49ac402 100644
--- a/LayoutTests/fast/js/date-parse-comments-test.html
+++ b/LayoutTests/fast/js/date-parse-comments-test.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-parse-test.html b/LayoutTests/fast/js/date-parse-test.html
index 372631b..ae522a8 100644
--- a/LayoutTests/fast/js/date-parse-test.html
+++ b/LayoutTests/fast/js/date-parse-test.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-preserve-milliseconds.html b/LayoutTests/fast/js/date-preserve-milliseconds.html
index 004e2d4..ac2b4a2 100644
--- a/LayoutTests/fast/js/date-preserve-milliseconds.html
+++ b/LayoutTests/fast/js/date-preserve-milliseconds.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-proto-generic-invocation.html b/LayoutTests/fast/js/date-proto-generic-invocation.html
index 83cf248..9ff4169 100644
--- a/LayoutTests/fast/js/date-proto-generic-invocation.html
+++ b/LayoutTests/fast/js/date-proto-generic-invocation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-set-to-nan.html b/LayoutTests/fast/js/date-set-to-nan.html
index 24eb234..e31bef3 100644
--- a/LayoutTests/fast/js/date-set-to-nan.html
+++ b/LayoutTests/fast/js/date-set-to-nan.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-toisostring.html b/LayoutTests/fast/js/date-toisostring.html
index 5e265cb..0b429b8 100644
--- a/LayoutTests/fast/js/date-toisostring.html
+++ b/LayoutTests/fast/js/date-toisostring.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/date-utc-timeclip.html b/LayoutTests/fast/js/date-utc-timeclip.html
index 9558f1b..396c350 100644
--- a/LayoutTests/fast/js/date-utc-timeclip.html
+++ b/LayoutTests/fast/js/date-utc-timeclip.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/debugger.html b/LayoutTests/fast/js/debugger.html
index a692b93..4095bbc 100644
--- a/LayoutTests/fast/js/debugger.html
+++ b/LayoutTests/fast/js/debugger.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/declaration-in-block.html b/LayoutTests/fast/js/declaration-in-block.html
index bc9cc64..c0e4878 100644
--- a/LayoutTests/fast/js/declaration-in-block.html
+++ b/LayoutTests/fast/js/declaration-in-block.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/deep-recursion-test.html b/LayoutTests/fast/js/deep-recursion-test.html
index 91f0caa..cd14f33 100644
--- a/LayoutTests/fast/js/deep-recursion-test.html
+++ b/LayoutTests/fast/js/deep-recursion-test.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/delete-getters-setters.html b/LayoutTests/fast/js/delete-getters-setters.html
index 7e7a2f1..2d5972d 100644
--- a/LayoutTests/fast/js/delete-getters-setters.html
+++ b/LayoutTests/fast/js/delete-getters-setters.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/delete-multiple-global-blocks.html b/LayoutTests/fast/js/delete-multiple-global-blocks.html
index 069539a..8d73b2b 100644
--- a/LayoutTests/fast/js/delete-multiple-global-blocks.html
+++ b/LayoutTests/fast/js/delete-multiple-global-blocks.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/delete-syntax.html b/LayoutTests/fast/js/delete-syntax.html
index 19c5fc2..95b8303 100644
--- a/LayoutTests/fast/js/delete-syntax.html
+++ b/LayoutTests/fast/js/delete-syntax.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/delete-then-put.html b/LayoutTests/fast/js/delete-then-put.html
index d3f2c0f..424bffe 100644
--- a/LayoutTests/fast/js/delete-then-put.html
+++ b/LayoutTests/fast/js/delete-then-put.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/dfg-min-max.html b/LayoutTests/fast/js/dfg-min-max.html
index cee28cb..f479d36 100644
--- a/LayoutTests/fast/js/dfg-min-max.html
+++ b/LayoutTests/fast/js/dfg-min-max.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/dictionary-no-cache.html b/LayoutTests/fast/js/dictionary-no-cache.html
index 5bc8dcf..a32010f 100644
--- a/LayoutTests/fast/js/dictionary-no-cache.html
+++ b/LayoutTests/fast/js/dictionary-no-cache.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/dictionary-prototype-caching.html b/LayoutTests/fast/js/dictionary-prototype-caching.html
index 5007eb4..4927b70 100644
--- a/LayoutTests/fast/js/dictionary-prototype-caching.html
+++ b/LayoutTests/fast/js/dictionary-prototype-caching.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/do-while-semicolon.html b/LayoutTests/fast/js/do-while-semicolon.html
index 750936c..a6da707 100644
--- a/LayoutTests/fast/js/do-while-semicolon.html
+++ b/LayoutTests/fast/js/do-while-semicolon.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/dot-node-base-exception.html b/LayoutTests/fast/js/dot-node-base-exception.html
index 7282315..7a1d845 100644
--- a/LayoutTests/fast/js/dot-node-base-exception.html
+++ b/LayoutTests/fast/js/dot-node-base-exception.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/duplicate-param-crash.html b/LayoutTests/fast/js/duplicate-param-crash.html
index 38acd6c..859a901 100644
--- a/LayoutTests/fast/js/duplicate-param-crash.html
+++ b/LayoutTests/fast/js/duplicate-param-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/duplicate-param-gc-crash.html b/LayoutTests/fast/js/duplicate-param-gc-crash.html
index 3743a63..40cedfc 100644
--- a/LayoutTests/fast/js/duplicate-param-gc-crash.html
+++ b/LayoutTests/fast/js/duplicate-param-gc-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/end-in-string-escape.html b/LayoutTests/fast/js/end-in-string-escape.html
index 9fe5d27..a3bc061 100644
--- a/LayoutTests/fast/js/end-in-string-escape.html
+++ b/LayoutTests/fast/js/end-in-string-escape.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/equality.html b/LayoutTests/fast/js/equality.html
index ad03354..3469841 100644
--- a/LayoutTests/fast/js/equality.html
+++ b/LayoutTests/fast/js/equality.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/eval-cache-crash.html b/LayoutTests/fast/js/eval-cache-crash.html
index c194c1a..983f971 100644
--- a/LayoutTests/fast/js/eval-cache-crash.html
+++ b/LayoutTests/fast/js/eval-cache-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/eval-contained-syntax-error.html b/LayoutTests/fast/js/eval-contained-syntax-error.html
index b66603c..6920303 100644
--- a/LayoutTests/fast/js/eval-contained-syntax-error.html
+++ b/LayoutTests/fast/js/eval-contained-syntax-error.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/eval-throw-return.html b/LayoutTests/fast/js/eval-throw-return.html
index 378f3c4..d967197 100644
--- a/LayoutTests/fast/js/eval-throw-return.html
+++ b/LayoutTests/fast/js/eval-throw-return.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/eval-var-decl.html b/LayoutTests/fast/js/eval-var-decl.html
index dc9aa2d..f830e81 100644
--- a/LayoutTests/fast/js/eval-var-decl.html
+++ b/LayoutTests/fast/js/eval-var-decl.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-expression-offset.html b/LayoutTests/fast/js/exception-expression-offset.html
index 52dc7fc..136c6cf 100644
--- a/LayoutTests/fast/js/exception-expression-offset.html
+++ b/LayoutTests/fast/js/exception-expression-offset.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-for-nonobject.html b/LayoutTests/fast/js/exception-for-nonobject.html
index 6e091bc..3d85ce6 100644
--- a/LayoutTests/fast/js/exception-for-nonobject.html
+++ b/LayoutTests/fast/js/exception-for-nonobject.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-linenums-in-html-1-expected.txt b/LayoutTests/fast/js/exception-linenums-in-html-1-expected.txt
index 855c1ce..a6a98c1 100644
--- a/LayoutTests/fast/js/exception-linenums-in-html-1-expected.txt
+++ b/LayoutTests/fast/js/exception-linenums-in-html-1-expected.txt
@@ -4,15 +4,15 @@
 
 
 PASS typeof e.sourceURL is "string"
-PASS e.line is 19
+PASS e.line is 18
 PASS typeof e.sourceURL is "string"
-PASS e.line is 29
+PASS e.line is 28
 PASS typeof e.sourceURL is "string"
-PASS e.line is 39
+PASS e.line is 38
 PASS typeof e.sourceURL is "string"
-PASS e.line is 49
+PASS e.line is 48
 PASS typeof e.sourceURL is "string"
-PASS e.line is 12
+PASS e.line is 11
 PASS successfullyParsed is true
 
 TEST COMPLETE
diff --git a/LayoutTests/fast/js/exception-linenums-in-html-1.html b/LayoutTests/fast/js/exception-linenums-in-html-1.html
index 1406ec6..79235ae 100644
--- a/LayoutTests/fast/js/exception-linenums-in-html-1.html
+++ b/LayoutTests/fast/js/exception-linenums-in-html-1.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
@@ -21,7 +20,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '19');
+shouldBe("e.line", '18');
 
 e = undefined;
 try {
@@ -31,7 +30,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '29');
+shouldBe("e.line", '28');
 
 e = undefined;
 try {
@@ -41,7 +40,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '39');
+shouldBe("e.line", '38');
 
 e = undefined;
 try {
@@ -51,7 +50,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '49');
+shouldBe("e.line", '48');
 
 e = undefined;
 // Raises an exception inside a function to check that its line number
@@ -62,7 +61,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '12');
+shouldBe("e.line", '11');
 
 var successfullyParsed = true;
 </script>
diff --git a/LayoutTests/fast/js/exception-linenums-in-html-2-expected.txt b/LayoutTests/fast/js/exception-linenums-in-html-2-expected.txt
index 498f052..b236d16 100644
--- a/LayoutTests/fast/js/exception-linenums-in-html-2-expected.txt
+++ b/LayoutTests/fast/js/exception-linenums-in-html-2-expected.txt
@@ -4,15 +4,15 @@
 
 
 PASS typeof e.sourceURL is "string"
-PASS e.line is 19
+PASS e.line is 18
 PASS typeof e.sourceURL is "string"
-PASS e.line is 29
+PASS e.line is 28
 PASS typeof e.sourceURL is "string"
-PASS e.line is 39
+PASS e.line is 38
 PASS typeof e.sourceURL is "string"
-PASS e.line is 49
+PASS e.line is 48
 PASS typeof e.sourceURL is "string"
-PASS e.line is 12
+PASS e.line is 11
 PASS successfullyParsed is true
 
 TEST COMPLETE
diff --git a/LayoutTests/fast/js/exception-linenums-in-html-2.html b/LayoutTests/fast/js/exception-linenums-in-html-2.html
index 7186641..7c09272 100644
--- a/LayoutTests/fast/js/exception-linenums-in-html-2.html
+++ b/LayoutTests/fast/js/exception-linenums-in-html-2.html
@@ -1,6 +1,5 @@
 <html>
 <head><title>title</title>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
@@ -21,7 +20,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '19');
+shouldBe("e.line", '18');
 
 e = undefined;
 try {
@@ -31,7 +30,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '29');
+shouldBe("e.line", '28');
 
 e = undefined;
 try {
@@ -41,7 +40,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '39');
+shouldBe("e.line", '38');
 
 e = undefined;
 try {
@@ -51,7 +50,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '49');
+shouldBe("e.line", '48');
 
 e = undefined;
 // Raises an exception inside a function to check that its line number
@@ -62,7 +61,7 @@
     e = exception;
 }
 shouldBe("typeof e.sourceURL", '"string"');
-shouldBe("e.line", '12');
+shouldBe("e.line", '11');
 
 var successfullyParsed = true;
 </script>
diff --git a/LayoutTests/fast/js/exception-linenums-in-html-3.html b/LayoutTests/fast/js/exception-linenums-in-html-3.html
index 07c3ac1..fb6af0b 100644
--- a/LayoutTests/fast/js/exception-linenums-in-html-3.html
+++ b/LayoutTests/fast/js/exception-linenums-in-html-3.html
@@ -2,7 +2,6 @@
 <head>
 <style>
 body { white-space: normal; }
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-linenums.html b/LayoutTests/fast/js/exception-linenums.html
index 799727f..9e59f47 100644
--- a/LayoutTests/fast/js/exception-linenums.html
+++ b/LayoutTests/fast/js/exception-linenums.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-properties.html b/LayoutTests/fast/js/exception-properties.html
index b54c0b7..da46f8f 100644
--- a/LayoutTests/fast/js/exception-properties.html
+++ b/LayoutTests/fast/js/exception-properties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-registerfile-shrink.html b/LayoutTests/fast/js/exception-registerfile-shrink.html
index 253a53a..8425b89 100644
--- a/LayoutTests/fast/js/exception-registerfile-shrink.html
+++ b/LayoutTests/fast/js/exception-registerfile-shrink.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-try-finally-scope-error.html b/LayoutTests/fast/js/exception-try-finally-scope-error.html
index d625db8..fed53c9 100644
--- a/LayoutTests/fast/js/exception-try-finally-scope-error.html
+++ b/LayoutTests/fast/js/exception-try-finally-scope-error.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/exception-with-handler-inside-eval-with-dynamic-scope.html b/LayoutTests/fast/js/exception-with-handler-inside-eval-with-dynamic-scope.html
index 42b0324..af7b172 100644
--- a/LayoutTests/fast/js/exception-with-handler-inside-eval-with-dynamic-scope.html
+++ b/LayoutTests/fast/js/exception-with-handler-inside-eval-with-dynamic-scope.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/excessive-comma-usage.html b/LayoutTests/fast/js/excessive-comma-usage.html
index 7140c3d..600d5e3 100644
--- a/LayoutTests/fast/js/excessive-comma-usage.html
+++ b/LayoutTests/fast/js/excessive-comma-usage.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/finally-codegen-failure.html b/LayoutTests/fast/js/finally-codegen-failure.html
index 0175b11..32fa05a 100644
--- a/LayoutTests/fast/js/finally-codegen-failure.html
+++ b/LayoutTests/fast/js/finally-codegen-failure.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/for-in-avoid-duplicates.html b/LayoutTests/fast/js/for-in-avoid-duplicates.html
index bed8069..3f3e9f7 100644
--- a/LayoutTests/fast/js/for-in-avoid-duplicates.html
+++ b/LayoutTests/fast/js/for-in-avoid-duplicates.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/for-in-cached.html b/LayoutTests/fast/js/for-in-cached.html
index 6960310..a08de36 100644
--- a/LayoutTests/fast/js/for-in-cached.html
+++ b/LayoutTests/fast/js/for-in-cached.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/for-in-exeception.html b/LayoutTests/fast/js/for-in-exeception.html
index 726386a..3911eff 100644
--- a/LayoutTests/fast/js/for-in-exeception.html
+++ b/LayoutTests/fast/js/for-in-exeception.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/for-in-to-text.html b/LayoutTests/fast/js/for-in-to-text.html
index e48a878..9837f5c 100644
--- a/LayoutTests/fast/js/for-in-to-text.html
+++ b/LayoutTests/fast/js/for-in-to-text.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/for-in-var-scope.html b/LayoutTests/fast/js/for-in-var-scope.html
index a9fa4c9..f48b146 100644
--- a/LayoutTests/fast/js/for-in-var-scope.html
+++ b/LayoutTests/fast/js/for-in-var-scope.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-apply-aliased.html b/LayoutTests/fast/js/function-apply-aliased.html
index 055bd9b..5345027 100644
--- a/LayoutTests/fast/js/function-apply-aliased.html
+++ b/LayoutTests/fast/js/function-apply-aliased.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-apply-many-args.html b/LayoutTests/fast/js/function-apply-many-args.html
index 4a282a3..0685572 100644
--- a/LayoutTests/fast/js/function-apply-many-args.html
+++ b/LayoutTests/fast/js/function-apply-many-args.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-apply.html b/LayoutTests/fast/js/function-apply.html
index c662434..941a961 100644
--- a/LayoutTests/fast/js/function-apply.html
+++ b/LayoutTests/fast/js/function-apply.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-bind.html b/LayoutTests/fast/js/function-bind.html
index ea1be65..1497fac 100644
--- a/LayoutTests/fast/js/function-bind.html
+++ b/LayoutTests/fast/js/function-bind.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-call-aliased.html b/LayoutTests/fast/js/function-call-aliased.html
index 5f404be..55682e0 100644
--- a/LayoutTests/fast/js/function-call-aliased.html
+++ b/LayoutTests/fast/js/function-call-aliased.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-call-register-allocation.html b/LayoutTests/fast/js/function-call-register-allocation.html
index 2587968..2bd4b97 100644
--- a/LayoutTests/fast/js/function-call-register-allocation.html
+++ b/LayoutTests/fast/js/function-call-register-allocation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-constructor-newline-after-brace.html b/LayoutTests/fast/js/function-constructor-newline-after-brace.html
index 69649cf..2b573dd 100644
--- a/LayoutTests/fast/js/function-constructor-newline-after-brace.html
+++ b/LayoutTests/fast/js/function-constructor-newline-after-brace.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-constructor-single-line-comment.html b/LayoutTests/fast/js/function-constructor-single-line-comment.html
index a38899c..ec2d819 100644
--- a/LayoutTests/fast/js/function-constructor-single-line-comment.html
+++ b/LayoutTests/fast/js/function-constructor-single-line-comment.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-declaration-statement.html b/LayoutTests/fast/js/function-declaration-statement.html
index 474392d..4bc19ee 100644
--- a/LayoutTests/fast/js/function-declaration-statement.html
+++ b/LayoutTests/fast/js/function-declaration-statement.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-declaration.html b/LayoutTests/fast/js/function-declaration.html
index f02762b..d186468 100644
--- a/LayoutTests/fast/js/function-declaration.html
+++ b/LayoutTests/fast/js/function-declaration.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-declarations-in-switch-statement.html b/LayoutTests/fast/js/function-declarations-in-switch-statement.html
index 1f31ec1..14a0d46 100644
--- a/LayoutTests/fast/js/function-declarations-in-switch-statement.html
+++ b/LayoutTests/fast/js/function-declarations-in-switch-statement.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-decompilation-operators.html b/LayoutTests/fast/js/function-decompilation-operators.html
index 486cf5e..f70991b 100644
--- a/LayoutTests/fast/js/function-decompilation-operators.html
+++ b/LayoutTests/fast/js/function-decompilation-operators.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-dot-arguments.html b/LayoutTests/fast/js/function-dot-arguments.html
index e3f44d5..0f5767b 100644
--- a/LayoutTests/fast/js/function-dot-arguments.html
+++ b/LayoutTests/fast/js/function-dot-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-name.html b/LayoutTests/fast/js/function-name.html
index c34c761..44897f8 100644
--- a/LayoutTests/fast/js/function-name.html
+++ b/LayoutTests/fast/js/function-name.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-names.html b/LayoutTests/fast/js/function-names.html
index bd47aa7..1400213 100644
--- a/LayoutTests/fast/js/function-names.html
+++ b/LayoutTests/fast/js/function-names.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-prototype-descriptor.html b/LayoutTests/fast/js/function-prototype-descriptor.html
index 799a2f6..1aa72b5 100644
--- a/LayoutTests/fast/js/function-prototype-descriptor.html
+++ b/LayoutTests/fast/js/function-prototype-descriptor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-prototype.html b/LayoutTests/fast/js/function-prototype.html
index 5b6f851..e35e11a 100644
--- a/LayoutTests/fast/js/function-prototype.html
+++ b/LayoutTests/fast/js/function-prototype.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
 if (window.layoutTestController) {
diff --git a/LayoutTests/fast/js/function-redefinition.html b/LayoutTests/fast/js/function-redefinition.html
index b56a082..32aaf4b 100644
--- a/LayoutTests/fast/js/function-redefinition.html
+++ b/LayoutTests/fast/js/function-redefinition.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-toString-object-literals.html b/LayoutTests/fast/js/function-toString-object-literals.html
index 159c801..9baa631 100644
--- a/LayoutTests/fast/js/function-toString-object-literals.html
+++ b/LayoutTests/fast/js/function-toString-object-literals.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-toString-parentheses.html b/LayoutTests/fast/js/function-toString-parentheses.html
index 7aa2a16..5b5edd8 100644
--- a/LayoutTests/fast/js/function-toString-parentheses.html
+++ b/LayoutTests/fast/js/function-toString-parentheses.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/function-toString-semicolon-insertion.html b/LayoutTests/fast/js/function-toString-semicolon-insertion.html
index 67f98c4..542a52e 100644
--- a/LayoutTests/fast/js/function-toString-semicolon-insertion.html
+++ b/LayoutTests/fast/js/function-toString-semicolon-insertion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/getOwnPropertyDescriptor.html b/LayoutTests/fast/js/getOwnPropertyDescriptor.html
index 8178df7..0ad251a 100644
--- a/LayoutTests/fast/js/getOwnPropertyDescriptor.html
+++ b/LayoutTests/fast/js/getOwnPropertyDescriptor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/getter-setter-gc.html b/LayoutTests/fast/js/getter-setter-gc.html
index 830df86..1c0288e 100644
--- a/LayoutTests/fast/js/getter-setter-gc.html
+++ b/LayoutTests/fast/js/getter-setter-gc.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/global-constructors.html b/LayoutTests/fast/js/global-constructors.html
index ab32590..9e54f58 100644
--- a/LayoutTests/fast/js/global-constructors.html
+++ b/LayoutTests/fast/js/global-constructors.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/global-function-resolve.html b/LayoutTests/fast/js/global-function-resolve.html
index 94f91f7..de99ad2 100644
--- a/LayoutTests/fast/js/global-function-resolve.html
+++ b/LayoutTests/fast/js/global-function-resolve.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/global-resolve-through-eval.html b/LayoutTests/fast/js/global-resolve-through-eval.html
index efda238..d536eda 100644
--- a/LayoutTests/fast/js/global-resolve-through-eval.html
+++ b/LayoutTests/fast/js/global-resolve-through-eval.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/gmail-re-re.html b/LayoutTests/fast/js/gmail-re-re.html
index 7f456cf..19fdc92 100644
--- a/LayoutTests/fast/js/gmail-re-re.html
+++ b/LayoutTests/fast/js/gmail-re-re.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/has-own-property.html b/LayoutTests/fast/js/has-own-property.html
index d015679..e08484e 100644
--- a/LayoutTests/fast/js/has-own-property.html
+++ b/LayoutTests/fast/js/has-own-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/i18n-bindings-locale.html b/LayoutTests/fast/js/i18n-bindings-locale.html
index 1feca19..8872c23 100644
--- a/LayoutTests/fast/js/i18n-bindings-locale.html
+++ b/LayoutTests/fast/js/i18n-bindings-locale.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/ignored-result-null-comparison-crash.html b/LayoutTests/fast/js/ignored-result-null-comparison-crash.html
index f55175f..84b1f6d 100644
--- a/LayoutTests/fast/js/ignored-result-null-comparison-crash.html
+++ b/LayoutTests/fast/js/ignored-result-null-comparison-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/ignored-result-ref-crash.html b/LayoutTests/fast/js/ignored-result-ref-crash.html
index b7be54a..d93d0b9 100644
--- a/LayoutTests/fast/js/ignored-result-ref-crash.html
+++ b/LayoutTests/fast/js/ignored-result-ref-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/immediate-constant-instead-of-cell.html b/LayoutTests/fast/js/immediate-constant-instead-of-cell.html
index c8d2ab7..cf475f5 100644
--- a/LayoutTests/fast/js/immediate-constant-instead-of-cell.html
+++ b/LayoutTests/fast/js/immediate-constant-instead-of-cell.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/implicit-call-with-global-reentry.html b/LayoutTests/fast/js/implicit-call-with-global-reentry.html
index c102451..6fada19 100644
--- a/LayoutTests/fast/js/implicit-call-with-global-reentry.html
+++ b/LayoutTests/fast/js/implicit-call-with-global-reentry.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/instance-of-immediates.html b/LayoutTests/fast/js/instance-of-immediates.html
index 8d427ff..04deb89 100644
--- a/LayoutTests/fast/js/instance-of-immediates.html
+++ b/LayoutTests/fast/js/instance-of-immediates.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/instanceof-XMLHttpRequest.html b/LayoutTests/fast/js/instanceof-XMLHttpRequest.html
index 2e96159..3f09690 100644
--- a/LayoutTests/fast/js/instanceof-XMLHttpRequest.html
+++ b/LayoutTests/fast/js/instanceof-XMLHttpRequest.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/instanceof-operator.html b/LayoutTests/fast/js/instanceof-operator.html
index 2f9ffb9..d48d17a 100644
--- a/LayoutTests/fast/js/instanceof-operator.html
+++ b/LayoutTests/fast/js/instanceof-operator.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/integer-extremes.html b/LayoutTests/fast/js/integer-extremes.html
index 4c8c480..a6bbcdc 100644
--- a/LayoutTests/fast/js/integer-extremes.html
+++ b/LayoutTests/fast/js/integer-extremes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/interpreter-no-activation.html b/LayoutTests/fast/js/interpreter-no-activation.html
index 7019d6a..19b0314 100644
--- a/LayoutTests/fast/js/interpreter-no-activation.html
+++ b/LayoutTests/fast/js/interpreter-no-activation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/invalid-callframe-during-unwind.html b/LayoutTests/fast/js/invalid-callframe-during-unwind.html
index 84bf6f5..99b5f48 100644
--- a/LayoutTests/fast/js/invalid-callframe-during-unwind.html
+++ b/LayoutTests/fast/js/invalid-callframe-during-unwind.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/isPrototypeOf.html b/LayoutTests/fast/js/isPrototypeOf.html
index 77665a6..003bf83 100644
--- a/LayoutTests/fast/js/isPrototypeOf.html
+++ b/LayoutTests/fast/js/isPrototypeOf.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/js-constructors-use-correct-global.html b/LayoutTests/fast/js/js-constructors-use-correct-global.html
index 920f15c..f2fdc46 100644
--- a/LayoutTests/fast/js/js-constructors-use-correct-global.html
+++ b/LayoutTests/fast/js/js-constructors-use-correct-global.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/js-continue-break-restrictions.html b/LayoutTests/fast/js/js-continue-break-restrictions.html
index 5665f664..3546f55 100644
--- a/LayoutTests/fast/js/js-continue-break-restrictions.html
+++ b/LayoutTests/fast/js/js-continue-break-restrictions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/Array.html b/LayoutTests/fast/js/kde/Array.html
index fc37969..770a714 100644
--- a/LayoutTests/fast/js/kde/Array.html
+++ b/LayoutTests/fast/js/kde/Array.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/Boolean.html b/LayoutTests/fast/js/kde/Boolean.html
index bdc13e8..d35f799 100644
--- a/LayoutTests/fast/js/kde/Boolean.html
+++ b/LayoutTests/fast/js/kde/Boolean.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/Date-setYear.html b/LayoutTests/fast/js/kde/Date-setYear.html
index 26f598b..5f10300 100644
--- a/LayoutTests/fast/js/kde/Date-setYear.html
+++ b/LayoutTests/fast/js/kde/Date-setYear.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/Error.html b/LayoutTests/fast/js/kde/Error.html
index bbd0f4b..2abe51a 100644
--- a/LayoutTests/fast/js/kde/Error.html
+++ b/LayoutTests/fast/js/kde/Error.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/GlobalObject.html b/LayoutTests/fast/js/kde/GlobalObject.html
index 5e8fdab..5095ee1 100644
--- a/LayoutTests/fast/js/kde/GlobalObject.html
+++ b/LayoutTests/fast/js/kde/GlobalObject.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/Number.html b/LayoutTests/fast/js/kde/Number.html
index 3c98f83..ba598a6 100644
--- a/LayoutTests/fast/js/kde/Number.html
+++ b/LayoutTests/fast/js/kde/Number.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/Object.html b/LayoutTests/fast/js/kde/Object.html
index 3580fde..efdd671 100644
--- a/LayoutTests/fast/js/kde/Object.html
+++ b/LayoutTests/fast/js/kde/Object.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/Prototype.html b/LayoutTests/fast/js/kde/Prototype.html
index bdf47a3..86aacce 100644
--- a/LayoutTests/fast/js/kde/Prototype.html
+++ b/LayoutTests/fast/js/kde/Prototype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/RegExp.html b/LayoutTests/fast/js/kde/RegExp.html
index 62f31e5..ca9525c 100644
--- a/LayoutTests/fast/js/kde/RegExp.html
+++ b/LayoutTests/fast/js/kde/RegExp.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/StringObject.html b/LayoutTests/fast/js/kde/StringObject.html
index 5089255..53ee44a 100644
--- a/LayoutTests/fast/js/kde/StringObject.html
+++ b/LayoutTests/fast/js/kde/StringObject.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/arguments-scope.html b/LayoutTests/fast/js/kde/arguments-scope.html
index 6d8bb51c..628c17c 100644
--- a/LayoutTests/fast/js/kde/arguments-scope.html
+++ b/LayoutTests/fast/js/kde/arguments-scope.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/assignments.html b/LayoutTests/fast/js/kde/assignments.html
index 5362a2e..e48fb8c 100644
--- a/LayoutTests/fast/js/kde/assignments.html
+++ b/LayoutTests/fast/js/kde/assignments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/cast.html b/LayoutTests/fast/js/kde/cast.html
index 2c19040..be7ac23 100644
--- a/LayoutTests/fast/js/kde/cast.html
+++ b/LayoutTests/fast/js/kde/cast.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/comment-1.html b/LayoutTests/fast/js/kde/comment-1.html
index 1b6138b..a72d020 100644
--- a/LayoutTests/fast/js/kde/comment-1.html
+++ b/LayoutTests/fast/js/kde/comment-1.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/comment-2.html b/LayoutTests/fast/js/kde/comment-2.html
index 401765e..817bf0b 100644
--- a/LayoutTests/fast/js/kde/comment-2.html
+++ b/LayoutTests/fast/js/kde/comment-2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/completion.html b/LayoutTests/fast/js/kde/completion.html
index 6dc8e5b..ff343e4 100644
--- a/LayoutTests/fast/js/kde/completion.html
+++ b/LayoutTests/fast/js/kde/completion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/conditional.html b/LayoutTests/fast/js/kde/conditional.html
index 0693018..33160b2 100644
--- a/LayoutTests/fast/js/kde/conditional.html
+++ b/LayoutTests/fast/js/kde/conditional.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/const.html b/LayoutTests/fast/js/kde/const.html
index 8592d03..57de0ff 100644
--- a/LayoutTests/fast/js/kde/const.html
+++ b/LayoutTests/fast/js/kde/const.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/constructor_length.html b/LayoutTests/fast/js/kde/constructor_length.html
index d00cfa82..4b0173c 100644
--- a/LayoutTests/fast/js/kde/constructor_length.html
+++ b/LayoutTests/fast/js/kde/constructor_length.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/crash-1.html b/LayoutTests/fast/js/kde/crash-1.html
index e1e03ef..5722427 100644
--- a/LayoutTests/fast/js/kde/crash-1.html
+++ b/LayoutTests/fast/js/kde/crash-1.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/crash-2.html b/LayoutTests/fast/js/kde/crash-2.html
index 64f82d5..3bf39e5 100644
--- a/LayoutTests/fast/js/kde/crash-2.html
+++ b/LayoutTests/fast/js/kde/crash-2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/delete.html b/LayoutTests/fast/js/kde/delete.html
index 2ebc576..5aaa168 100644
--- a/LayoutTests/fast/js/kde/delete.html
+++ b/LayoutTests/fast/js/kde/delete.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/empty.html b/LayoutTests/fast/js/kde/empty.html
index 220cc42..bc4c415 100644
--- a/LayoutTests/fast/js/kde/empty.html
+++ b/LayoutTests/fast/js/kde/empty.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/encode_decode_uri.html b/LayoutTests/fast/js/kde/encode_decode_uri.html
index 403c537..96cb288 100644
--- a/LayoutTests/fast/js/kde/encode_decode_uri.html
+++ b/LayoutTests/fast/js/kde/encode_decode_uri.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/eval.html b/LayoutTests/fast/js/kde/eval.html
index 69e8f32..5148f14 100644
--- a/LayoutTests/fast/js/kde/eval.html
+++ b/LayoutTests/fast/js/kde/eval.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/evil-n.html b/LayoutTests/fast/js/kde/evil-n.html
index b3b3aa0..cc24ca6 100644
--- a/LayoutTests/fast/js/kde/evil-n.html
+++ b/LayoutTests/fast/js/kde/evil-n.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/exception_propagation.html b/LayoutTests/fast/js/kde/exception_propagation.html
index 56f91a4..78646ea 100644
--- a/LayoutTests/fast/js/kde/exception_propagation.html
+++ b/LayoutTests/fast/js/kde/exception_propagation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/exceptions.html b/LayoutTests/fast/js/kde/exceptions.html
index cce628f..302f6f2 100644
--- a/LayoutTests/fast/js/kde/exceptions.html
+++ b/LayoutTests/fast/js/kde/exceptions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/func-decl.html b/LayoutTests/fast/js/kde/func-decl.html
index c3c2060..ad09777 100644
--- a/LayoutTests/fast/js/kde/func-decl.html
+++ b/LayoutTests/fast/js/kde/func-decl.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/function.html b/LayoutTests/fast/js/kde/function.html
index a1feeed..22a5e98 100644
--- a/LayoutTests/fast/js/kde/function.html
+++ b/LayoutTests/fast/js/kde/function.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/function_arguments.html b/LayoutTests/fast/js/kde/function_arguments.html
index 634ffc9..7b07710 100644
--- a/LayoutTests/fast/js/kde/function_arguments.html
+++ b/LayoutTests/fast/js/kde/function_arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/function_constructor.html b/LayoutTests/fast/js/kde/function_constructor.html
index 44d4ce8..c4c9639 100644
--- a/LayoutTests/fast/js/kde/function_constructor.html
+++ b/LayoutTests/fast/js/kde/function_constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/function_length.html b/LayoutTests/fast/js/kde/function_length.html
index fd9775b..f2530b0 100644
--- a/LayoutTests/fast/js/kde/function_length.html
+++ b/LayoutTests/fast/js/kde/function_length.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/garbage-n.html b/LayoutTests/fast/js/kde/garbage-n.html
index 18dd553..f2559c0 100644
--- a/LayoutTests/fast/js/kde/garbage-n.html
+++ b/LayoutTests/fast/js/kde/garbage-n.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/inbuilt_function_proto.html b/LayoutTests/fast/js/kde/inbuilt_function_proto.html
index 855adf3..3518d47 100644
--- a/LayoutTests/fast/js/kde/inbuilt_function_proto.html
+++ b/LayoutTests/fast/js/kde/inbuilt_function_proto.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/inbuilt_function_tostring.html b/LayoutTests/fast/js/kde/inbuilt_function_tostring.html
index ad615cf..1908709 100644
--- a/LayoutTests/fast/js/kde/inbuilt_function_tostring.html
+++ b/LayoutTests/fast/js/kde/inbuilt_function_tostring.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/iteration.html b/LayoutTests/fast/js/kde/iteration.html
index 519a1d4..1b02eb0 100644
--- a/LayoutTests/fast/js/kde/iteration.html
+++ b/LayoutTests/fast/js/kde/iteration.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/j-comment-3.html b/LayoutTests/fast/js/kde/j-comment-3.html
index a5135ff..3e82b8d 100644
--- a/LayoutTests/fast/js/kde/j-comment-3.html
+++ b/LayoutTests/fast/js/kde/j-comment-3.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/j-comment-4.html b/LayoutTests/fast/js/kde/j-comment-4.html
index 576bdc4..1a48c3e 100644
--- a/LayoutTests/fast/js/kde/j-comment-4.html
+++ b/LayoutTests/fast/js/kde/j-comment-4.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/literals.html b/LayoutTests/fast/js/kde/literals.html
index e802875..57e2ed5 100644
--- a/LayoutTests/fast/js/kde/literals.html
+++ b/LayoutTests/fast/js/kde/literals.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/lval-exceptions.html b/LayoutTests/fast/js/kde/lval-exceptions.html
index 1a9a5ed..fad8286 100644
--- a/LayoutTests/fast/js/kde/lval-exceptions.html
+++ b/LayoutTests/fast/js/kde/lval-exceptions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/math.html b/LayoutTests/fast/js/kde/math.html
index 9ada28f..794d6f0 100644
--- a/LayoutTests/fast/js/kde/math.html
+++ b/LayoutTests/fast/js/kde/math.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/md5-1.html b/LayoutTests/fast/js/kde/md5-1.html
index acf51e8..f5d3aeb 100644
--- a/LayoutTests/fast/js/kde/md5-1.html
+++ b/LayoutTests/fast/js/kde/md5-1.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/md5-2.html b/LayoutTests/fast/js/kde/md5-2.html
index 6b63952..f0b3a76 100644
--- a/LayoutTests/fast/js/kde/md5-2.html
+++ b/LayoutTests/fast/js/kde/md5-2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/object_prototype.html b/LayoutTests/fast/js/kde/object_prototype.html
index e99f0d2..d595c94 100644
--- a/LayoutTests/fast/js/kde/object_prototype.html
+++ b/LayoutTests/fast/js/kde/object_prototype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/object_prototype_tostring.html b/LayoutTests/fast/js/kde/object_prototype_tostring.html
index 7c6d25d..ece27aa 100644
--- a/LayoutTests/fast/js/kde/object_prototype_tostring.html
+++ b/LayoutTests/fast/js/kde/object_prototype_tostring.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/operators.html b/LayoutTests/fast/js/kde/operators.html
index 093349f..df7f620 100644
--- a/LayoutTests/fast/js/kde/operators.html
+++ b/LayoutTests/fast/js/kde/operators.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/parse.html b/LayoutTests/fast/js/kde/parse.html
index 91e2a05..f376ac0 100644
--- a/LayoutTests/fast/js/kde/parse.html
+++ b/LayoutTests/fast/js/kde/parse.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/prototype_length.html b/LayoutTests/fast/js/kde/prototype_length.html
index 0b0ef7d..a1899c2 100644
--- a/LayoutTests/fast/js/kde/prototype_length.html
+++ b/LayoutTests/fast/js/kde/prototype_length.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/prototype_proto.html b/LayoutTests/fast/js/kde/prototype_proto.html
index cd1cc28..4f1ae3c 100644
--- a/LayoutTests/fast/js/kde/prototype_proto.html
+++ b/LayoutTests/fast/js/kde/prototype_proto.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/scope.html b/LayoutTests/fast/js/kde/scope.html
index 5d6867e..91382de9 100644
--- a/LayoutTests/fast/js/kde/scope.html
+++ b/LayoutTests/fast/js/kde/scope.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/script-tests/TEMPLATE-n.html b/LayoutTests/fast/js/kde/script-tests/TEMPLATE-n.html
index a3cc8fe..822cd74 100644
--- a/LayoutTests/fast/js/kde/script-tests/TEMPLATE-n.html
+++ b/LayoutTests/fast/js/kde/script-tests/TEMPLATE-n.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/script-tests/TEMPLATE.html b/LayoutTests/fast/js/kde/script-tests/TEMPLATE.html
index c8f8f11..8734963 100644
--- a/LayoutTests/fast/js/kde/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/js/kde/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/statements.html b/LayoutTests/fast/js/kde/statements.html
index ccbac3b..0a11dfe 100644
--- a/LayoutTests/fast/js/kde/statements.html
+++ b/LayoutTests/fast/js/kde/statements.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/string-1-n.html b/LayoutTests/fast/js/kde/string-1-n.html
index 57f2e31..47cbf0d 100644
--- a/LayoutTests/fast/js/kde/string-1-n.html
+++ b/LayoutTests/fast/js/kde/string-1-n.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/string-2-n.html b/LayoutTests/fast/js/kde/string-2-n.html
index 67802b0..cd94126 100644
--- a/LayoutTests/fast/js/kde/string-2-n.html
+++ b/LayoutTests/fast/js/kde/string-2-n.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/kde/var_decl_init.html b/LayoutTests/fast/js/kde/var_decl_init.html
index 0e0f306..9d60582 100644
--- a/LayoutTests/fast/js/kde/var_decl_init.html
+++ b/LayoutTests/fast/js/kde/var_decl_init.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../resources/js-test-style.css">
 <script src="../resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/keywords-and-reserved_words.html b/LayoutTests/fast/js/keywords-and-reserved_words.html
index b01511e..6c26acb 100644
--- a/LayoutTests/fast/js/keywords-and-reserved_words.html
+++ b/LayoutTests/fast/js/keywords-and-reserved_words.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/large-expressions.html b/LayoutTests/fast/js/large-expressions.html
index 082397a..66aeebe 100644
--- a/LayoutTests/fast/js/large-expressions.html
+++ b/LayoutTests/fast/js/large-expressions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/lastModified.html b/LayoutTests/fast/js/lastModified.html
index 9546a18..d6f2111 100644
--- a/LayoutTests/fast/js/lastModified.html
+++ b/LayoutTests/fast/js/lastModified.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/logical-or-jless.html b/LayoutTests/fast/js/logical-or-jless.html
index f4d7eb5..f9c68eb 100644
--- a/LayoutTests/fast/js/logical-or-jless.html
+++ b/LayoutTests/fast/js/logical-or-jless.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/math-transforms.html b/LayoutTests/fast/js/math-transforms.html
index 1cdf66e..2b9e43e 100644
--- a/LayoutTests/fast/js/math-transforms.html
+++ b/LayoutTests/fast/js/math-transforms.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/math.html b/LayoutTests/fast/js/math.html
index b0cea02..477a781 100644
--- a/LayoutTests/fast/js/math.html
+++ b/LayoutTests/fast/js/math.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/method-check.html b/LayoutTests/fast/js/method-check.html
index 888e4dc..a071125 100644
--- a/LayoutTests/fast/js/method-check.html
+++ b/LayoutTests/fast/js/method-check.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/missing-style-end-tag-js.html b/LayoutTests/fast/js/missing-style-end-tag-js.html
index 2dbd671..a02d094 100644
--- a/LayoutTests/fast/js/missing-style-end-tag-js.html
+++ b/LayoutTests/fast/js/missing-style-end-tag-js.html
@@ -2,7 +2,6 @@
 <head>
 <style>
 .different { color: #0000ff; }
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script>
     var successfullyParsed = true;
     if (window.layoutTestController) {
diff --git a/LayoutTests/fast/js/missing-title-end-tag-js.html b/LayoutTests/fast/js/missing-title-end-tag-js.html
index c5909af..a4aebe9 100644
--- a/LayoutTests/fast/js/missing-title-end-tag-js.html
+++ b/LayoutTests/fast/js/missing-title-end-tag-js.html
@@ -1,6 +1,5 @@
 <html>
 <head><title>title
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script>
     var successfullyParsed = true;
 </script>
diff --git a/LayoutTests/fast/js/mod-by-zero.html b/LayoutTests/fast/js/mod-by-zero.html
index 08f52210..4cbceeb 100644
--- a/LayoutTests/fast/js/mod-by-zero.html
+++ b/LayoutTests/fast/js/mod-by-zero.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/mod-crash.html b/LayoutTests/fast/js/mod-crash.html
index b5ec68c..d9c596c 100644
--- a/LayoutTests/fast/js/mod-crash.html
+++ b/LayoutTests/fast/js/mod-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/modify-non-references.html b/LayoutTests/fast/js/modify-non-references.html
index 468ec7c..c62d1a2 100644
--- a/LayoutTests/fast/js/modify-non-references.html
+++ b/LayoutTests/fast/js/modify-non-references.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/multiline-comment-newline.html b/LayoutTests/fast/js/multiline-comment-newline.html
index 81a3fc6..8537cd5 100644
--- a/LayoutTests/fast/js/multiline-comment-newline.html
+++ b/LayoutTests/fast/js/multiline-comment-newline.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/named-function-expression.html b/LayoutTests/fast/js/named-function-expression.html
index 7ae4cae..3f14e0d 100644
--- a/LayoutTests/fast/js/named-function-expression.html
+++ b/LayoutTests/fast/js/named-function-expression.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/native-error-prototype.html b/LayoutTests/fast/js/native-error-prototype.html
index 7cad5d41..c7b84d8 100644
--- a/LayoutTests/fast/js/native-error-prototype.html
+++ b/LayoutTests/fast/js/native-error-prototype.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/navigator-language.html b/LayoutTests/fast/js/navigator-language.html
index 52decb7..e031462 100644
--- a/LayoutTests/fast/js/navigator-language.html
+++ b/LayoutTests/fast/js/navigator-language.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/nested-functions.html b/LayoutTests/fast/js/nested-functions.html
index e8604b6..c30e236 100644
--- a/LayoutTests/fast/js/nested-functions.html
+++ b/LayoutTests/fast/js/nested-functions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/nested-object-gc.html b/LayoutTests/fast/js/nested-object-gc.html
index ee94ce5..65077a9 100644
--- a/LayoutTests/fast/js/nested-object-gc.html
+++ b/LayoutTests/fast/js/nested-object-gc.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/no-semi-insertion-at-end-of-script.html b/LayoutTests/fast/js/no-semi-insertion-at-end-of-script.html
index d123dae..34dbb07 100644
--- a/LayoutTests/fast/js/no-semi-insertion-at-end-of-script.html
+++ b/LayoutTests/fast/js/no-semi-insertion-at-end-of-script.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/non-object-proto.html b/LayoutTests/fast/js/non-object-proto.html
index 2317afe..944627f 100644
--- a/LayoutTests/fast/js/non-object-proto.html
+++ b/LayoutTests/fast/js/non-object-proto.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/null-char-in-string.html b/LayoutTests/fast/js/null-char-in-string.html
index b3b9254..dc775d5 100644
--- a/LayoutTests/fast/js/null-char-in-string.html
+++ b/LayoutTests/fast/js/null-char-in-string.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/number-cell-reuse.html b/LayoutTests/fast/js/number-cell-reuse.html
index 91e1088..fcefe0a 100644
--- a/LayoutTests/fast/js/number-cell-reuse.html
+++ b/LayoutTests/fast/js/number-cell-reuse.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/number-parsing-crash.html b/LayoutTests/fast/js/number-parsing-crash.html
index 6ece4bb..9bc972f1 100644
--- a/LayoutTests/fast/js/number-parsing-crash.html
+++ b/LayoutTests/fast/js/number-parsing-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/number-toExponential.html b/LayoutTests/fast/js/number-toExponential.html
index 2a7fa86..1fa74b6 100644
--- a/LayoutTests/fast/js/number-toExponential.html
+++ b/LayoutTests/fast/js/number-toExponential.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/number-toString.html b/LayoutTests/fast/js/number-toString.html
index f07c0eb..87661e0 100644
--- a/LayoutTests/fast/js/number-toString.html
+++ b/LayoutTests/fast/js/number-toString.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/number-tofixed.html b/LayoutTests/fast/js/number-tofixed.html
index 48431ad..4d647ac 100644
--- a/LayoutTests/fast/js/number-tofixed.html
+++ b/LayoutTests/fast/js/number-tofixed.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/number-toprecision.html b/LayoutTests/fast/js/number-toprecision.html
index 73739a0..33d8115 100644
--- a/LayoutTests/fast/js/number-toprecision.html
+++ b/LayoutTests/fast/js/number-toprecision.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/numeric-compare.html b/LayoutTests/fast/js/numeric-compare.html
index 14e430a..f7bbf02 100644
--- a/LayoutTests/fast/js/numeric-compare.html
+++ b/LayoutTests/fast/js/numeric-compare.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/numeric-conversion.html b/LayoutTests/fast/js/numeric-conversion.html
index 0d02430..e415ca6 100644
--- a/LayoutTests/fast/js/numeric-conversion.html
+++ b/LayoutTests/fast/js/numeric-conversion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/numeric-escapes-in-string-literals.html b/LayoutTests/fast/js/numeric-escapes-in-string-literals.html
index c66fa5b..09f4920 100644
--- a/LayoutTests/fast/js/numeric-escapes-in-string-literals.html
+++ b/LayoutTests/fast/js/numeric-escapes-in-string-literals.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/object-extra-comma.html b/LayoutTests/fast/js/object-extra-comma.html
index e439524..703e0ca 100644
--- a/LayoutTests/fast/js/object-extra-comma.html
+++ b/LayoutTests/fast/js/object-extra-comma.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/object-literal-direct-put.html b/LayoutTests/fast/js/object-literal-direct-put.html
index c119eb5..f4dcfbe 100644
--- a/LayoutTests/fast/js/object-literal-direct-put.html
+++ b/LayoutTests/fast/js/object-literal-direct-put.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/object-literal-syntax.html b/LayoutTests/fast/js/object-literal-syntax.html
index 27892e4..6cf9dca 100644
--- a/LayoutTests/fast/js/object-literal-syntax.html
+++ b/LayoutTests/fast/js/object-literal-syntax.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/object-prototype-constructor.html b/LayoutTests/fast/js/object-prototype-constructor.html
index a6bdcad..8c2c1fe 100644
--- a/LayoutTests/fast/js/object-prototype-constructor.html
+++ b/LayoutTests/fast/js/object-prototype-constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/object-prototype-properties.html b/LayoutTests/fast/js/object-prototype-properties.html
index 97d7bda..c407163 100644
--- a/LayoutTests/fast/js/object-prototype-properties.html
+++ b/LayoutTests/fast/js/object-prototype-properties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/object-prototype-toLocaleString.html b/LayoutTests/fast/js/object-prototype-toLocaleString.html
index 25f0c19..37a49cf 100644
--- a/LayoutTests/fast/js/object-prototype-toLocaleString.html
+++ b/LayoutTests/fast/js/object-prototype-toLocaleString.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/order-of-operations.html b/LayoutTests/fast/js/order-of-operations.html
index 6c6edd5..46b2afa 100644
--- a/LayoutTests/fast/js/order-of-operations.html
+++ b/LayoutTests/fast/js/order-of-operations.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/parse-backslash-before-newline.html b/LayoutTests/fast/js/parse-backslash-before-newline.html
index 0335dc8..6811dd9 100644
--- a/LayoutTests/fast/js/parse-backslash-before-newline.html
+++ b/LayoutTests/fast/js/parse-backslash-before-newline.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/parse-nan.html b/LayoutTests/fast/js/parse-nan.html
index 98234b4..ca6637c1 100644
--- a/LayoutTests/fast/js/parse-nan.html
+++ b/LayoutTests/fast/js/parse-nan.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/parseFloat.html b/LayoutTests/fast/js/parseFloat.html
index 78ecab8..bd65fba 100644
--- a/LayoutTests/fast/js/parseFloat.html
+++ b/LayoutTests/fast/js/parseFloat.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/parseInt.html b/LayoutTests/fast/js/parseInt.html
index 032c1c5..7b98fcc 100644
--- a/LayoutTests/fast/js/parseInt.html
+++ b/LayoutTests/fast/js/parseInt.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/parser-high-byte-character.html b/LayoutTests/fast/js/parser-high-byte-character.html
index fd9780d..40deff8 100644
--- a/LayoutTests/fast/js/parser-high-byte-character.html
+++ b/LayoutTests/fast/js/parser-high-byte-character.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/parser-syntax-check.html b/LayoutTests/fast/js/parser-syntax-check.html
index 6f9aae2..642c1d5 100644
--- a/LayoutTests/fast/js/parser-syntax-check.html
+++ b/LayoutTests/fast/js/parser-syntax-check.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/parser-xml-close-comment.html b/LayoutTests/fast/js/parser-xml-close-comment.html
index f9affb3..30dec9d 100644
--- a/LayoutTests/fast/js/parser-xml-close-comment.html
+++ b/LayoutTests/fast/js/parser-xml-close-comment.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/polymorphic-construct.html b/LayoutTests/fast/js/polymorphic-construct.html
index 94ca8f0..1133bb3 100644
--- a/LayoutTests/fast/js/polymorphic-construct.html
+++ b/LayoutTests/fast/js/polymorphic-construct.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/postfix-syntax.html b/LayoutTests/fast/js/postfix-syntax.html
index c07175b..bc5f79c 100644
--- a/LayoutTests/fast/js/postfix-syntax.html
+++ b/LayoutTests/fast/js/postfix-syntax.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/prefix-syntax.html b/LayoutTests/fast/js/prefix-syntax.html
index 6937519..aae7b8a 100644
--- a/LayoutTests/fast/js/prefix-syntax.html
+++ b/LayoutTests/fast/js/prefix-syntax.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/pretty-print.html b/LayoutTests/fast/js/pretty-print.html
index dc5210d..ae6e940 100644
--- a/LayoutTests/fast/js/pretty-print.html
+++ b/LayoutTests/fast/js/pretty-print.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/preventExtensions.html b/LayoutTests/fast/js/preventExtensions.html
index 2bd3523..6b9b28b 100644
--- a/LayoutTests/fast/js/preventExtensions.html
+++ b/LayoutTests/fast/js/preventExtensions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/primitive-method-this.html b/LayoutTests/fast/js/primitive-method-this.html
index 64029d7..a9229fe 100644
--- a/LayoutTests/fast/js/primitive-method-this.html
+++ b/LayoutTests/fast/js/primitive-method-this.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/primitive-property-access-edge-cases.html b/LayoutTests/fast/js/primitive-property-access-edge-cases.html
index e3e690f..f4463da 100644
--- a/LayoutTests/fast/js/primitive-property-access-edge-cases.html
+++ b/LayoutTests/fast/js/primitive-property-access-edge-cases.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/property-getters-and-setters.html b/LayoutTests/fast/js/property-getters-and-setters.html
index e83c5ff..be0db43 100644
--- a/LayoutTests/fast/js/property-getters-and-setters.html
+++ b/LayoutTests/fast/js/property-getters-and-setters.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/propertyIsEnumerable.html b/LayoutTests/fast/js/propertyIsEnumerable.html
index 0a8f926..2c70ad7 100644
--- a/LayoutTests/fast/js/propertyIsEnumerable.html
+++ b/LayoutTests/fast/js/propertyIsEnumerable.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/prototypes.html b/LayoutTests/fast/js/prototypes.html
index 736d59b..6dfd8e7 100644
--- a/LayoutTests/fast/js/prototypes.html
+++ b/LayoutTests/fast/js/prototypes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/read-modify-eval.html b/LayoutTests/fast/js/read-modify-eval.html
index 6041e26..d968e67 100644
--- a/LayoutTests/fast/js/read-modify-eval.html
+++ b/LayoutTests/fast/js/read-modify-eval.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/recursion-limit-equal.html b/LayoutTests/fast/js/recursion-limit-equal.html
index e02276e..b6ac8bb 100644
--- a/LayoutTests/fast/js/recursion-limit-equal.html
+++ b/LayoutTests/fast/js/recursion-limit-equal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/reentrant-caching.html b/LayoutTests/fast/js/reentrant-caching.html
index 41e3a66..5f28f06 100644
--- a/LayoutTests/fast/js/reentrant-caching.html
+++ b/LayoutTests/fast/js/reentrant-caching.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/reentrant-call-unwind.html b/LayoutTests/fast/js/reentrant-call-unwind.html
index 79b5be9..9587704 100644
--- a/LayoutTests/fast/js/reentrant-call-unwind.html
+++ b/LayoutTests/fast/js/reentrant-call-unwind.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-alternatives.html b/LayoutTests/fast/js/regexp-alternatives.html
index 399c464..9bab08b 100644
--- a/LayoutTests/fast/js/regexp-alternatives.html
+++ b/LayoutTests/fast/js/regexp-alternatives.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-backreferences.html b/LayoutTests/fast/js/regexp-backreferences.html
index 7a9c66d..9f30ee4 100644
--- a/LayoutTests/fast/js/regexp-backreferences.html
+++ b/LayoutTests/fast/js/regexp-backreferences.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-bol-with-multiline.html b/LayoutTests/fast/js/regexp-bol-with-multiline.html
index 58d027c..5f29e87 100644
--- a/LayoutTests/fast/js/regexp-bol-with-multiline.html
+++ b/LayoutTests/fast/js/regexp-bol-with-multiline.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-bol.html b/LayoutTests/fast/js/regexp-bol.html
index 915e0c4..a5cfb6e 100644
--- a/LayoutTests/fast/js/regexp-bol.html
+++ b/LayoutTests/fast/js/regexp-bol.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-char-insensitive.html b/LayoutTests/fast/js/regexp-char-insensitive.html
index de9798d..b22496d 100644
--- a/LayoutTests/fast/js/regexp-char-insensitive.html
+++ b/LayoutTests/fast/js/regexp-char-insensitive.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-character-match-out-of-order.html b/LayoutTests/fast/js/regexp-character-match-out-of-order.html
index cdfe620..78f143c 100644
--- a/LayoutTests/fast/js/regexp-character-match-out-of-order.html
+++ b/LayoutTests/fast/js/regexp-character-match-out-of-order.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-compile-crash.html b/LayoutTests/fast/js/regexp-compile-crash.html
index ee5f2e5..d8773b5 100644
--- a/LayoutTests/fast/js/regexp-compile-crash.html
+++ b/LayoutTests/fast/js/regexp-compile-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-compile.html b/LayoutTests/fast/js/regexp-compile.html
index 7fa5462..5b6d763 100644
--- a/LayoutTests/fast/js/regexp-compile.html
+++ b/LayoutTests/fast/js/regexp-compile.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-divequal.html b/LayoutTests/fast/js/regexp-divequal.html
index 0905b8c..622c8fd 100644
--- a/LayoutTests/fast/js/regexp-divequal.html
+++ b/LayoutTests/fast/js/regexp-divequal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-extended-characters-crash.html b/LayoutTests/fast/js/regexp-extended-characters-crash.html
index 5edcb57..96c38a2 100644
--- a/LayoutTests/fast/js/regexp-extended-characters-crash.html
+++ b/LayoutTests/fast/js/regexp-extended-characters-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-extended-characters-match.html b/LayoutTests/fast/js/regexp-extended-characters-match.html
index 13a67ac..b237ffa 100644
--- a/LayoutTests/fast/js/regexp-extended-characters-match.html
+++ b/LayoutTests/fast/js/regexp-extended-characters-match.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-extended-characters-more.html b/LayoutTests/fast/js/regexp-extended-characters-more.html
index fa6cdd8..727a80d 100644
--- a/LayoutTests/fast/js/regexp-extended-characters-more.html
+++ b/LayoutTests/fast/js/regexp-extended-characters-more.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-find-first-asserted.html b/LayoutTests/fast/js/regexp-find-first-asserted.html
index fc5f878..db7a977 100644
--- a/LayoutTests/fast/js/regexp-find-first-asserted.html
+++ b/LayoutTests/fast/js/regexp-find-first-asserted.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-in-and-foreach-handling.html b/LayoutTests/fast/js/regexp-in-and-foreach-handling.html
index 71ea5b9..ea55a85 100644
--- a/LayoutTests/fast/js/regexp-in-and-foreach-handling.html
+++ b/LayoutTests/fast/js/regexp-in-and-foreach-handling.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-lastindex.html b/LayoutTests/fast/js/regexp-lastindex.html
index fa8a0e3..821b578 100644
--- a/LayoutTests/fast/js/regexp-lastindex.html
+++ b/LayoutTests/fast/js/regexp-lastindex.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-literals-arent-constants.html b/LayoutTests/fast/js/regexp-literals-arent-constants.html
index 7c9d074..ad85597 100644
--- a/LayoutTests/fast/js/regexp-literals-arent-constants.html
+++ b/LayoutTests/fast/js/regexp-literals-arent-constants.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-look-ahead-empty.html b/LayoutTests/fast/js/regexp-look-ahead-empty.html
index 38ce07c..14a0e7d 100644
--- a/LayoutTests/fast/js/regexp-look-ahead-empty.html
+++ b/LayoutTests/fast/js/regexp-look-ahead-empty.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-look-ahead.html b/LayoutTests/fast/js/regexp-look-ahead.html
index c452858..bbc8cf6 100644
--- a/LayoutTests/fast/js/regexp-look-ahead.html
+++ b/LayoutTests/fast/js/regexp-look-ahead.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-many-brackets.html b/LayoutTests/fast/js/regexp-many-brackets.html
index 951010f..8eba9fd 100644
--- a/LayoutTests/fast/js/regexp-many-brackets.html
+++ b/LayoutTests/fast/js/regexp-many-brackets.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-negative-special-characters.html b/LayoutTests/fast/js/regexp-negative-special-characters.html
index fa4e3ed..446fe7e 100644
--- a/LayoutTests/fast/js/regexp-negative-special-characters.html
+++ b/LayoutTests/fast/js/regexp-negative-special-characters.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-no-extensions.html b/LayoutTests/fast/js/regexp-no-extensions.html
index de1ae21..be4df0b 100644
--- a/LayoutTests/fast/js/regexp-no-extensions.html
+++ b/LayoutTests/fast/js/regexp-no-extensions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-non-bmp.html b/LayoutTests/fast/js/regexp-non-bmp.html
index 1de37c9..e43ba7c 100644
--- a/LayoutTests/fast/js/regexp-non-bmp.html
+++ b/LayoutTests/fast/js/regexp-non-bmp.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-non-capturing-groups.html b/LayoutTests/fast/js/regexp-non-capturing-groups.html
index a2791f6..661788d 100644
--- a/LayoutTests/fast/js/regexp-non-capturing-groups.html
+++ b/LayoutTests/fast/js/regexp-non-capturing-groups.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-non-character.html b/LayoutTests/fast/js/regexp-non-character.html
index ccaf59f..5eea440 100644
--- a/LayoutTests/fast/js/regexp-non-character.html
+++ b/LayoutTests/fast/js/regexp-non-character.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-non-greedy-parentheses.html b/LayoutTests/fast/js/regexp-non-greedy-parentheses.html
index 7b5f65c..76b9486 100644
--- a/LayoutTests/fast/js/regexp-non-greedy-parentheses.html
+++ b/LayoutTests/fast/js/regexp-non-greedy-parentheses.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-norepeat.html b/LayoutTests/fast/js/regexp-norepeat.html
index 2977314..09026a5 100644
--- a/LayoutTests/fast/js/regexp-norepeat.html
+++ b/LayoutTests/fast/js/regexp-norepeat.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-overflow-too-big.html b/LayoutTests/fast/js/regexp-overflow-too-big.html
index da7a38f..91396a5 100644
--- a/LayoutTests/fast/js/regexp-overflow-too-big.html
+++ b/LayoutTests/fast/js/regexp-overflow-too-big.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-overflow.html b/LayoutTests/fast/js/regexp-overflow.html
index 53b5f00..d7aaecd 100644
--- a/LayoutTests/fast/js/regexp-overflow.html
+++ b/LayoutTests/fast/js/regexp-overflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-range-bound-ffff.html b/LayoutTests/fast/js/regexp-range-bound-ffff.html
index 12c20eb..4482770 100644
--- a/LayoutTests/fast/js/regexp-range-bound-ffff.html
+++ b/LayoutTests/fast/js/regexp-range-bound-ffff.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-range-out-of-order.html b/LayoutTests/fast/js/regexp-range-out-of-order.html
index ae026a1..7cc25bc 100644
--- a/LayoutTests/fast/js/regexp-range-out-of-order.html
+++ b/LayoutTests/fast/js/regexp-range-out-of-order.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-ranges-and-escaped-hyphens.html b/LayoutTests/fast/js/regexp-ranges-and-escaped-hyphens.html
index b27faba..589829e 100644
--- a/LayoutTests/fast/js/regexp-ranges-and-escaped-hyphens.html
+++ b/LayoutTests/fast/js/regexp-ranges-and-escaped-hyphens.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-stack-overflow.html b/LayoutTests/fast/js/regexp-stack-overflow.html
index c735bc6..400d8ca 100644
--- a/LayoutTests/fast/js/regexp-stack-overflow.html
+++ b/LayoutTests/fast/js/regexp-stack-overflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-unicode-handling.html b/LayoutTests/fast/js/regexp-unicode-handling.html
index 64c40e4..d2cfe1f 100644
--- a/LayoutTests/fast/js/regexp-unicode-handling.html
+++ b/LayoutTests/fast/js/regexp-unicode-handling.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/regexp-unicode-overflow.html b/LayoutTests/fast/js/regexp-unicode-overflow.html
index 8601cb1..ca69b8c 100644
--- a/LayoutTests/fast/js/regexp-unicode-overflow.html
+++ b/LayoutTests/fast/js/regexp-unicode-overflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/registerCachingAcrossBranchTargets.html b/LayoutTests/fast/js/registerCachingAcrossBranchTargets.html
index 36840c7..6743ed1 100644
--- a/LayoutTests/fast/js/registerCachingAcrossBranchTargets.html
+++ b/LayoutTests/fast/js/registerCachingAcrossBranchTargets.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/rehash-assign.html b/LayoutTests/fast/js/rehash-assign.html
index 4deb1e6..0ecfa7b 100644
--- a/LayoutTests/fast/js/rehash-assign.html
+++ b/LayoutTests/fast/js/rehash-assign.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/removing-Cf-characters.html b/LayoutTests/fast/js/removing-Cf-characters.html
index b682d47..dc9db00 100644
--- a/LayoutTests/fast/js/removing-Cf-characters.html
+++ b/LayoutTests/fast/js/removing-Cf-characters.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/reparsing-semicolon-insertion.html b/LayoutTests/fast/js/reparsing-semicolon-insertion.html
index 267c669..3877e9d 100644
--- a/LayoutTests/fast/js/reparsing-semicolon-insertion.html
+++ b/LayoutTests/fast/js/reparsing-semicolon-insertion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/repeat-cached-vm-reentry.html b/LayoutTests/fast/js/repeat-cached-vm-reentry.html
index 0cf39f9..0fd3d84a 100644
--- a/LayoutTests/fast/js/repeat-cached-vm-reentry.html
+++ b/LayoutTests/fast/js/repeat-cached-vm-reentry.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/reserved-words-as-property.html b/LayoutTests/fast/js/reserved-words-as-property.html
index b1c2f99f..10c6dd4 100644
--- a/LayoutTests/fast/js/reserved-words-as-property.html
+++ b/LayoutTests/fast/js/reserved-words-as-property.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/reserved-words-strict.html b/LayoutTests/fast/js/reserved-words-strict.html
index 524f878..de1a326 100644
--- a/LayoutTests/fast/js/reserved-words-strict.html
+++ b/LayoutTests/fast/js/reserved-words-strict.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/reserved-words.html b/LayoutTests/fast/js/reserved-words.html
index c213fcd..5dd3344 100644
--- a/LayoutTests/fast/js/reserved-words.html
+++ b/LayoutTests/fast/js/reserved-words.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/resize-array-assign.html b/LayoutTests/fast/js/resize-array-assign.html
index 2528dee..a0a33d4 100644
--- a/LayoutTests/fast/js/resize-array-assign.html
+++ b/LayoutTests/fast/js/resize-array-assign.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/resources/js-test-pre.js b/LayoutTests/fast/js/resources/js-test-pre.js
index 60d60fa..f0ad2bf 100644
--- a/LayoutTests/fast/js/resources/js-test-pre.js
+++ b/LayoutTests/fast/js/resources/js-test-pre.js
@@ -47,6 +47,50 @@
         getOrCreate("console", "div").appendChild(span); // insert it first so XHTML knows the namespace
         span.innerHTML = msg + '<br />';
     };
+
+    function findPath() {
+        var scripts = document.getElementsByTagName("script");
+        var regExp = /^(.*resources\/)js-test-pre\.js/;
+        for (var i = scripts.length - 1; i >= 0; i--) {
+            var src = scripts[i].getAttribute("src");
+            var match;
+            regExp.lastIndex = 0;
+            if (src && (match = regExp.exec(src)))
+                return match[1];
+        }
+        return null;
+    }
+
+    // FIXME: No test should depend on this stylesheet.
+    function hasStyleSheet() {
+        var links = document.getElementsByTagName("link");
+        var regExp = /resources\/js-test-style.css/;
+        for (var i = 0; i < links.length; i++) {
+            var link = links[i];
+            if (link.rel.toLowerCase() === "stylesheet" && regExp.test(link.href))
+                return true;
+        }
+        return false;
+    }
+
+    function insertStyleSheet() {
+        if (hasStyleSheet())
+            return;
+
+        // FIXME: Once all tests have been updated to not depend on this link element
+        // we should remove this and replace with a simple style element instead.
+        var path = findPath();
+        if (!path == null)
+            return;
+
+        var link = document.createElement("link");
+        link.rel = "stylesheet";
+        link.href = path + "js-test-style.css";
+        document.documentElement.appendChild(link);
+    }
+    
+    insertStyleSheet();
+
 })();
 
 function descriptionQuiet(msg) { description(msg, true); }
diff --git a/LayoutTests/fast/js/script-line-number-expected.txt b/LayoutTests/fast/js/script-line-number-expected.txt
index 5f86f6d..9d4ad4b 100644
--- a/LayoutTests/fast/js/script-line-number-expected.txt
+++ b/LayoutTests/fast/js/script-line-number-expected.txt
@@ -3,8 +3,8 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
-PASS 14 is 14
-PASS 17 is 17
+PASS 13 is 13
+PASS 16 is 16
 PASS successfullyParsed is true
 
 TEST COMPLETE
diff --git a/LayoutTests/fast/js/script-line-number.html b/LayoutTests/fast/js/script-line-number.html
index fe77a64..5897ad1 100644
--- a/LayoutTests/fast/js/script-line-number.html
+++ b/LayoutTests/fast/js/script-line-number.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
@@ -11,12 +10,12 @@
 document.write("\n\n\n");
 </script>
 
-<script src="resources/script-line-number.js" onload="try { nonExistentFunctionOnLine14(); } catch (e) { assertErrorOnLine(e, 14); }"></script>
+<script src="resources/script-line-number.js" onload="try { nonExistentFunctionOnLine13(); } catch (e) { assertErrorOnLine(e, 13); }"></script>
 <script>
 try {
-    nonExistentFunctionOnLine17();
+    nonExistentFunctionOnLine16();
 } catch (e) {
-    assertErrorOnLine(e, 17);
+    assertErrorOnLine(e, 16);
 }
 </script>
 <script src="resources/js-test-post.js"></script>
diff --git a/LayoutTests/fast/js/script-tests/TEMPLATE.html b/LayoutTests/fast/js/script-tests/TEMPLATE.html
index 992a783..bcca7e9 100644
--- a/LayoutTests/fast/js/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/js/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/select-options-add.html b/LayoutTests/fast/js/select-options-add.html
index fb26e43..37a37761 100644
--- a/LayoutTests/fast/js/select-options-add.html
+++ b/LayoutTests/fast/js/select-options-add.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/select-options-remove-gc.html b/LayoutTests/fast/js/select-options-remove-gc.html
index aa9849c..469be80 100644
--- a/LayoutTests/fast/js/select-options-remove-gc.html
+++ b/LayoutTests/fast/js/select-options-remove-gc.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/select-options-remove.html b/LayoutTests/fast/js/select-options-remove.html
index 42305c3..3f61f0a 100644
--- a/LayoutTests/fast/js/select-options-remove.html
+++ b/LayoutTests/fast/js/select-options-remove.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/slash-lineterminator-parse.html b/LayoutTests/fast/js/slash-lineterminator-parse.html
index 3c24648..e238770 100644
--- a/LayoutTests/fast/js/slash-lineterminator-parse.html
+++ b/LayoutTests/fast/js/slash-lineterminator-parse.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/sort-large-array.html b/LayoutTests/fast/js/sort-large-array.html
index e2006d8..66a0b84 100644
--- a/LayoutTests/fast/js/sort-large-array.html
+++ b/LayoutTests/fast/js/sort-large-array.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/sort-no-jit-code-crash.html b/LayoutTests/fast/js/sort-no-jit-code-crash.html
index c2001c4..8c6a909 100644
--- a/LayoutTests/fast/js/sort-no-jit-code-crash.html
+++ b/LayoutTests/fast/js/sort-no-jit-code-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/sort-non-numbers.html b/LayoutTests/fast/js/sort-non-numbers.html
index 9a1f17c..6d5671b 100644
--- a/LayoutTests/fast/js/sort-non-numbers.html
+++ b/LayoutTests/fast/js/sort-non-numbers.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/sort-randomly.html b/LayoutTests/fast/js/sort-randomly.html
index a7c8b46..55e35c0 100644
--- a/LayoutTests/fast/js/sort-randomly.html
+++ b/LayoutTests/fast/js/sort-randomly.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/sort-stability.html b/LayoutTests/fast/js/sort-stability.html
index fb66454..fbf5b1a 100644
--- a/LayoutTests/fast/js/sort-stability.html
+++ b/LayoutTests/fast/js/sort-stability.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/sparse-array.html b/LayoutTests/fast/js/sparse-array.html
index 5c7cadb..5aa0a7e 100644
--- a/LayoutTests/fast/js/sparse-array.html
+++ b/LayoutTests/fast/js/sparse-array.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/stack-overflow-arrity-catch.html b/LayoutTests/fast/js/stack-overflow-arrity-catch.html
index 619c037..8f39fba 100644
--- a/LayoutTests/fast/js/stack-overflow-arrity-catch.html
+++ b/LayoutTests/fast/js/stack-overflow-arrity-catch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/stack-overflow-catch.html b/LayoutTests/fast/js/stack-overflow-catch.html
index d4e48b9..abc509d6 100644
--- a/LayoutTests/fast/js/stack-overflow-catch.html
+++ b/LayoutTests/fast/js/stack-overflow-catch.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/stack-unwinding.html b/LayoutTests/fast/js/stack-unwinding.html
index 464d658..ff54878 100644
--- a/LayoutTests/fast/js/stack-unwinding.html
+++ b/LayoutTests/fast/js/stack-unwinding.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/statement-list-register-crash.html b/LayoutTests/fast/js/statement-list-register-crash.html
index d3cdc31..90f9e64 100644
--- a/LayoutTests/fast/js/statement-list-register-crash.html
+++ b/LayoutTests/fast/js/statement-list-register-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/static-scope-object.html b/LayoutTests/fast/js/static-scope-object.html
index 79f86c5..62a2892 100644
--- a/LayoutTests/fast/js/static-scope-object.html
+++ b/LayoutTests/fast/js/static-scope-object.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/strict-callback-this.html b/LayoutTests/fast/js/strict-callback-this.html
index c8f2a46..9c9d092 100644
--- a/LayoutTests/fast/js/strict-callback-this.html
+++ b/LayoutTests/fast/js/strict-callback-this.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-capitalization.html b/LayoutTests/fast/js/string-capitalization.html
index c464691..ddb80b5 100644
--- a/LayoutTests/fast/js/string-capitalization.html
+++ b/LayoutTests/fast/js/string-capitalization.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-from-char-code.html b/LayoutTests/fast/js/string-from-char-code.html
index 7b5af62..bf7c4cd 100644
--- a/LayoutTests/fast/js/string-from-char-code.html
+++ b/LayoutTests/fast/js/string-from-char-code.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-index-overflow.html b/LayoutTests/fast/js/string-index-overflow.html
index 1d1afa1..7099014 100644
--- a/LayoutTests/fast/js/string-index-overflow.html
+++ b/LayoutTests/fast/js/string-index-overflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-property-deletion.html b/LayoutTests/fast/js/string-property-deletion.html
index 617e89d..5475ace 100644
--- a/LayoutTests/fast/js/string-property-deletion.html
+++ b/LayoutTests/fast/js/string-property-deletion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-property-iteration.html b/LayoutTests/fast/js/string-property-iteration.html
index 66843e1..b84f79a 100644
--- a/LayoutTests/fast/js/string-property-iteration.html
+++ b/LayoutTests/fast/js/string-property-iteration.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-prototype-properties.html b/LayoutTests/fast/js/string-prototype-properties.html
index ef5960e..a39f964 100644
--- a/LayoutTests/fast/js/string-prototype-properties.html
+++ b/LayoutTests/fast/js/string-prototype-properties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-replace-2.html b/LayoutTests/fast/js/string-replace-2.html
index 041718c..8805c35 100644
--- a/LayoutTests/fast/js/string-replace-2.html
+++ b/LayoutTests/fast/js/string-replace-2.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-replace-3.html b/LayoutTests/fast/js/string-replace-3.html
index aed4979..41458f4 100644
--- a/LayoutTests/fast/js/string-replace-3.html
+++ b/LayoutTests/fast/js/string-replace-3.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-slice-abnormal-values.html b/LayoutTests/fast/js/string-slice-abnormal-values.html
index 4154416..5b64434 100644
--- a/LayoutTests/fast/js/string-slice-abnormal-values.html
+++ b/LayoutTests/fast/js/string-slice-abnormal-values.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-sort.html b/LayoutTests/fast/js/string-sort.html
index be53381..cef82d1 100644
--- a/LayoutTests/fast/js/string-sort.html
+++ b/LayoutTests/fast/js/string-sort.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-split-conformance.html b/LayoutTests/fast/js/string-split-conformance.html
index 12e67b3..a6222b6 100644
--- a/LayoutTests/fast/js/string-split-conformance.html
+++ b/LayoutTests/fast/js/string-split-conformance.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-split-double-empty.html b/LayoutTests/fast/js/string-split-double-empty.html
index 6112bde..eef3cff 100644
--- a/LayoutTests/fast/js/string-split-double-empty.html
+++ b/LayoutTests/fast/js/string-split-double-empty.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-split-ignore-case.html b/LayoutTests/fast/js/string-split-ignore-case.html
index 99d0ec5..8467e6d 100644
--- a/LayoutTests/fast/js/string-split-ignore-case.html
+++ b/LayoutTests/fast/js/string-split-ignore-case.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-substr.html b/LayoutTests/fast/js/string-substr.html
index 0b66efb..ffdb0ef 100644
--- a/LayoutTests/fast/js/string-substr.html
+++ b/LayoutTests/fast/js/string-substr.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string-trim.html b/LayoutTests/fast/js/string-trim.html
index 42b664c..6f98377 100644
--- a/LayoutTests/fast/js/string-trim.html
+++ b/LayoutTests/fast/js/string-trim.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/string_replace.html b/LayoutTests/fast/js/string_replace.html
index 53ed0ed..9d06fdd 100644
--- a/LayoutTests/fast/js/string_replace.html
+++ b/LayoutTests/fast/js/string_replace.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/switch-behaviour.html b/LayoutTests/fast/js/switch-behaviour.html
index 72ba40b..a0d07bc 100644
--- a/LayoutTests/fast/js/switch-behaviour.html
+++ b/LayoutTests/fast/js/switch-behaviour.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/this-non-object-proto.html b/LayoutTests/fast/js/this-non-object-proto.html
index 26b293d..aa31e46 100644
--- a/LayoutTests/fast/js/this-non-object-proto.html
+++ b/LayoutTests/fast/js/this-non-object-proto.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toInt32UInt32.html b/LayoutTests/fast/js/toInt32UInt32.html
index a9c960f..865ddb0 100644
--- a/LayoutTests/fast/js/toInt32UInt32.html
+++ b/LayoutTests/fast/js/toInt32UInt32.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-elision-trailing-comma.html b/LayoutTests/fast/js/toString-elision-trailing-comma.html
index 8752432..0583845 100644
--- a/LayoutTests/fast/js/toString-elision-trailing-comma.html
+++ b/LayoutTests/fast/js/toString-elision-trailing-comma.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-exception.html b/LayoutTests/fast/js/toString-exception.html
index 2cafc05..c8490e1 100644
--- a/LayoutTests/fast/js/toString-exception.html
+++ b/LayoutTests/fast/js/toString-exception.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-for-var-decl.html b/LayoutTests/fast/js/toString-for-var-decl.html
index d75da37..4464ddb 100644
--- a/LayoutTests/fast/js/toString-for-var-decl.html
+++ b/LayoutTests/fast/js/toString-for-var-decl.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-number-dot-expr.html b/LayoutTests/fast/js/toString-number-dot-expr.html
index e1b15bf..0391e61 100644
--- a/LayoutTests/fast/js/toString-number-dot-expr.html
+++ b/LayoutTests/fast/js/toString-number-dot-expr.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-overrides.html b/LayoutTests/fast/js/toString-overrides.html
index 4c5d75f..dafbad4 100644
--- a/LayoutTests/fast/js/toString-overrides.html
+++ b/LayoutTests/fast/js/toString-overrides.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-prefix-postfix-preserve-parens.html b/LayoutTests/fast/js/toString-prefix-postfix-preserve-parens.html
index 179c3ab..3090dd6 100644
--- a/LayoutTests/fast/js/toString-prefix-postfix-preserve-parens.html
+++ b/LayoutTests/fast/js/toString-prefix-postfix-preserve-parens.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-recursion.html b/LayoutTests/fast/js/toString-recursion.html
index 91441fd..4836ebf 100644
--- a/LayoutTests/fast/js/toString-recursion.html
+++ b/LayoutTests/fast/js/toString-recursion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-stack-overflow.html b/LayoutTests/fast/js/toString-stack-overflow.html
index f6df0d7..2d26c30 100644
--- a/LayoutTests/fast/js/toString-stack-overflow.html
+++ b/LayoutTests/fast/js/toString-stack-overflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/toString-try-else.html b/LayoutTests/fast/js/toString-try-else.html
index e4a36df..9f336d7 100644
--- a/LayoutTests/fast/js/toString-try-else.html
+++ b/LayoutTests/fast/js/toString-try-else.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/tostring-exception-in-property-access.html b/LayoutTests/fast/js/tostring-exception-in-property-access.html
index 3809458..a5f112d 100644
--- a/LayoutTests/fast/js/tostring-exception-in-property-access.html
+++ b/LayoutTests/fast/js/tostring-exception-in-property-access.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/transition-cache-dictionary-crash.html b/LayoutTests/fast/js/transition-cache-dictionary-crash.html
index bd2eed5..fc99ac1 100644
--- a/LayoutTests/fast/js/transition-cache-dictionary-crash.html
+++ b/LayoutTests/fast/js/transition-cache-dictionary-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/typeof-codegen-crash.html b/LayoutTests/fast/js/typeof-codegen-crash.html
index c75a3c7..986ccaa 100644
--- a/LayoutTests/fast/js/typeof-codegen-crash.html
+++ b/LayoutTests/fast/js/typeof-codegen-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/typeof-constant-string.html b/LayoutTests/fast/js/typeof-constant-string.html
index e61bffc..411137a 100644
--- a/LayoutTests/fast/js/typeof-constant-string.html
+++ b/LayoutTests/fast/js/typeof-constant-string.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/typeof-syntax.html b/LayoutTests/fast/js/typeof-syntax.html
index 1b1f8d7..17718e4 100644
--- a/LayoutTests/fast/js/typeof-syntax.html
+++ b/LayoutTests/fast/js/typeof-syntax.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/unexpected-constant-crash.html b/LayoutTests/fast/js/unexpected-constant-crash.html
index ca8aafa..86ceb69 100644
--- a/LayoutTests/fast/js/unexpected-constant-crash.html
+++ b/LayoutTests/fast/js/unexpected-constant-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/unmatching-argument-count.html b/LayoutTests/fast/js/unmatching-argument-count.html
index 767a783..b5f08c1 100644
--- a/LayoutTests/fast/js/unmatching-argument-count.html
+++ b/LayoutTests/fast/js/unmatching-argument-count.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/unshift-multi.html b/LayoutTests/fast/js/unshift-multi.html
index f1a67b5..48fb8ef 100644
--- a/LayoutTests/fast/js/unshift-multi.html
+++ b/LayoutTests/fast/js/unshift-multi.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/var-shadows-arg-crash.html b/LayoutTests/fast/js/var-shadows-arg-crash.html
index 2ac3511..9e4c6cb 100644
--- a/LayoutTests/fast/js/var-shadows-arg-crash.html
+++ b/LayoutTests/fast/js/var-shadows-arg-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/var-shadows-arg-gc-crash.html b/LayoutTests/fast/js/var-shadows-arg-gc-crash.html
index 573a720..563fc7b 100644
--- a/LayoutTests/fast/js/var-shadows-arg-gc-crash.html
+++ b/LayoutTests/fast/js/var-shadows-arg-gc-crash.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/vardecl-blocks-init.html b/LayoutTests/fast/js/vardecl-blocks-init.html
index 63a0057..e7b4d80 100644
--- a/LayoutTests/fast/js/vardecl-blocks-init.html
+++ b/LayoutTests/fast/js/vardecl-blocks-init.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/vardecl-preserve-arguments.html b/LayoutTests/fast/js/vardecl-preserve-arguments.html
index 7570b1b..0424a4b 100644
--- a/LayoutTests/fast/js/vardecl-preserve-arguments.html
+++ b/LayoutTests/fast/js/vardecl-preserve-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/webcore-string-comparison.html b/LayoutTests/fast/js/webcore-string-comparison.html
index b1aebb3..f320d2b 100644
--- a/LayoutTests/fast/js/webcore-string-comparison.html
+++ b/LayoutTests/fast/js/webcore-string-comparison.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/js/with-scope-gc.html b/LayoutTests/fast/js/with-scope-gc.html
index 1dabfa0..042b054 100644
--- a/LayoutTests/fast/js/with-scope-gc.html
+++ b/LayoutTests/fast/js/with-scope-gc.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="resources/js-test-style.css">
 <script src="resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/layers/negative-scroll-positions.html b/LayoutTests/fast/layers/negative-scroll-positions.html
index 0aeb13d..b259dac 100644
--- a/LayoutTests/fast/layers/negative-scroll-positions.html
+++ b/LayoutTests/fast/layers/negative-scroll-positions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/layers/script-tests/TEMPLATE.html b/LayoutTests/fast/layers/script-tests/TEMPLATE.html
index e4f992b..fd31b93 100644
--- a/LayoutTests/fast/layers/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/layers/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/loader/hashchange-event-properties.html b/LayoutTests/fast/loader/hashchange-event-properties.html
index 5ca9d06..7e46d66 100644
--- a/LayoutTests/fast/loader/hashchange-event-properties.html
+++ b/LayoutTests/fast/loader/hashchange-event-properties.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <body>
-<link rel="stylesheet" href="../js/resources/js-test-style.css" type="text/css">
 <script src="../js/resources/js-test-pre.js"></script>
 <div id="description"></div>
 <pre id="console"></pre>
diff --git a/LayoutTests/fast/loader/stateobjects/popstate-fires-on-history-traversal.html b/LayoutTests/fast/loader/stateobjects/popstate-fires-on-history-traversal.html
index d300334..c390056 100644
--- a/LayoutTests/fast/loader/stateobjects/popstate-fires-on-history-traversal.html
+++ b/LayoutTests/fast/loader/stateobjects/popstate-fires-on-history-traversal.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <body>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css" type="text/css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <div id="description"></div>
 <pre id="console"></pre>
diff --git a/LayoutTests/fast/loader/stateobjects/popstate-fires-with-page-cache.html b/LayoutTests/fast/loader/stateobjects/popstate-fires-with-page-cache.html
index 188cdc0..4e7cf15 100644
--- a/LayoutTests/fast/loader/stateobjects/popstate-fires-with-page-cache.html
+++ b/LayoutTests/fast/loader/stateobjects/popstate-fires-with-page-cache.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <body>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css" type="text/css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <div id="description"></div>
 <pre id="console"></pre>
diff --git a/LayoutTests/fast/media/media-query-serialization.html b/LayoutTests/fast/media/media-query-serialization.html
index 3cbc557..02fa188 100644
--- a/LayoutTests/fast/media/media-query-serialization.html
+++ b/LayoutTests/fast/media/media-query-serialization.html
@@ -4,7 +4,6 @@
 <link rel="help" href="http://dev.w3.org/csswg/cssom/" />
 <style type="text/css" media="NOT braille, tv and (orientation: 'landscape') AND (min-WIDTH:100px) and (max-width: 200px ), all and (color) and (color)">
 </style>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/mutation/mutation-observer-constructor.html b/LayoutTests/fast/mutation/mutation-observer-constructor.html
index 1966a63..263c660 100644
--- a/LayoutTests/fast/mutation/mutation-observer-constructor.html
+++ b/LayoutTests/fast/mutation/mutation-observer-constructor.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <title></title>
 </head>
diff --git a/LayoutTests/fast/mutation/observe-exceptions.html b/LayoutTests/fast/mutation/observe-exceptions.html
index 7fef3cf..d7082e1 100644
--- a/LayoutTests/fast/mutation/observe-exceptions.html
+++ b/LayoutTests/fast/mutation/observe-exceptions.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <title></title>
 </head>
diff --git a/LayoutTests/fast/parser/block-nesting-cap.html b/LayoutTests/fast/parser/block-nesting-cap.html
index 451c5a5..2865c38 100644
--- a/LayoutTests/fast/parser/block-nesting-cap.html
+++ b/LayoutTests/fast/parser/block-nesting-cap.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/close-while-stopping.html b/LayoutTests/fast/parser/close-while-stopping.html
index 0cb17f5..96f276f 100644
--- a/LayoutTests/fast/parser/close-while-stopping.html
+++ b/LayoutTests/fast/parser/close-while-stopping.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/comment-in-textarea.html b/LayoutTests/fast/parser/comment-in-textarea.html
index 8347af0..be1a27d 100644
--- a/LayoutTests/fast/parser/comment-in-textarea.html
+++ b/LayoutTests/fast/parser/comment-in-textarea.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/double-write-from-closed-iframe.html b/LayoutTests/fast/parser/double-write-from-closed-iframe.html
index 4c384f6..e771779 100644
--- a/LayoutTests/fast/parser/double-write-from-closed-iframe.html
+++ b/LayoutTests/fast/parser/double-write-from-closed-iframe.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/entity-end-iframe-tag.html b/LayoutTests/fast/parser/entity-end-iframe-tag.html
index 9404185..6fbe558 100644
--- a/LayoutTests/fast/parser/entity-end-iframe-tag.html
+++ b/LayoutTests/fast/parser/entity-end-iframe-tag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/entity-end-script-tag-expected.txt b/LayoutTests/fast/parser/entity-end-script-tag-expected.txt
index c97d986..f8d8165 100644
--- a/LayoutTests/fast/parser/entity-end-script-tag-expected.txt
+++ b/LayoutTests/fast/parser/entity-end-script-tag-expected.txt
@@ -1,4 +1,4 @@
-CONSOLE MESSAGE: line 8: SyntaxError: Unexpected token '&'
+CONSOLE MESSAGE: line 7: SyntaxError: Unexpected token '&'
 Test parsing of entity-escaped </script> tag for Bug 7931: Escaped elements within a textarea block can cause the textarea box to be closed prematurely
 
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
diff --git a/LayoutTests/fast/parser/entity-end-script-tag.html b/LayoutTests/fast/parser/entity-end-script-tag.html
index 756e3a2..340a55f 100644
--- a/LayoutTests/fast/parser/entity-end-script-tag.html
+++ b/LayoutTests/fast/parser/entity-end-script-tag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/entity-end-style-tag.html b/LayoutTests/fast/parser/entity-end-style-tag.html
index 780c45a..c9616af 100644
--- a/LayoutTests/fast/parser/entity-end-style-tag.html
+++ b/LayoutTests/fast/parser/entity-end-style-tag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style id="mystyle">&lt;/style></style>
 </head>
diff --git a/LayoutTests/fast/parser/entity-end-textarea-tag.html b/LayoutTests/fast/parser/entity-end-textarea-tag.html
index f2ac7c7..bfa2be7 100644
--- a/LayoutTests/fast/parser/entity-end-textarea-tag.html
+++ b/LayoutTests/fast/parser/entity-end-textarea-tag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/entity-end-title-tag.html b/LayoutTests/fast/parser/entity-end-title-tag.html
index 11d3fd2..b49f7ef 100644
--- a/LayoutTests/fast/parser/entity-end-title-tag.html
+++ b/LayoutTests/fast/parser/entity-end-title-tag.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <title id="mytitle">&lt;/title></title>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/entity-end-xmp-tag.html b/LayoutTests/fast/parser/entity-end-xmp-tag.html
index 2adc8b3..cc08140 100644
--- a/LayoutTests/fast/parser/entity-end-xmp-tag.html
+++ b/LayoutTests/fast/parser/entity-end-xmp-tag.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/fragment-parser-doctype.html b/LayoutTests/fast/parser/fragment-parser-doctype.html
index cc3870b..8f752d3 100644
--- a/LayoutTests/fast/parser/fragment-parser-doctype.html
+++ b/LayoutTests/fast/parser/fragment-parser-doctype.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/fragment-parser.html b/LayoutTests/fast/parser/fragment-parser.html
index a08f1a3..3ffe5ed 100644
--- a/LayoutTests/fast/parser/fragment-parser.html
+++ b/LayoutTests/fast/parser/fragment-parser.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/localname-case-strict.html b/LayoutTests/fast/parser/localname-case-strict.html
index 4340df7..7babd3d 100644
--- a/LayoutTests/fast/parser/localname-case-strict.html
+++ b/LayoutTests/fast/parser/localname-case-strict.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/localname-case.html b/LayoutTests/fast/parser/localname-case.html
index 4f5b8f2e..bdf2a02 100644
--- a/LayoutTests/fast/parser/localname-case.html
+++ b/LayoutTests/fast/parser/localname-case.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/pre-first-line-break.html b/LayoutTests/fast/parser/pre-first-line-break.html
index 62f0e08..e104238 100644
--- a/LayoutTests/fast/parser/pre-first-line-break.html
+++ b/LayoutTests/fast/parser/pre-first-line-break.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/parser/script-tests/TEMPLATE.html b/LayoutTests/fast/parser/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/parser/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/parser/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/alternative-length-miscalculation.html b/LayoutTests/fast/regex/alternative-length-miscalculation.html
index 09be4ab..260e048 100644
--- a/LayoutTests/fast/regex/alternative-length-miscalculation.html
+++ b/LayoutTests/fast/regex/alternative-length-miscalculation.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/assertion.html b/LayoutTests/fast/regex/assertion.html
index 6c3ef0e..b0c8896 100644
--- a/LayoutTests/fast/regex/assertion.html
+++ b/LayoutTests/fast/regex/assertion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/constructor.html b/LayoutTests/fast/regex/constructor.html
index 04ceb9a..d5bb8f0 100644
--- a/LayoutTests/fast/regex/constructor.html
+++ b/LayoutTests/fast/regex/constructor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/cross-frame-callable.html b/LayoutTests/fast/regex/cross-frame-callable.html
index 5f22e79..a5e974a 100644
--- a/LayoutTests/fast/regex/cross-frame-callable.html
+++ b/LayoutTests/fast/regex/cross-frame-callable.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/dotstar.html b/LayoutTests/fast/regex/dotstar.html
index 96e6479..c93e47b 100644
--- a/LayoutTests/fast/regex/dotstar.html
+++ b/LayoutTests/fast/regex/dotstar.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/early-acid3-86.html b/LayoutTests/fast/regex/early-acid3-86.html
index b32be97..95e5ae3 100644
--- a/LayoutTests/fast/regex/early-acid3-86.html
+++ b/LayoutTests/fast/regex/early-acid3-86.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/ecma-regex-examples.html b/LayoutTests/fast/regex/ecma-regex-examples.html
index 69ed64f..4ca5a09 100644
--- a/LayoutTests/fast/regex/ecma-regex-examples.html
+++ b/LayoutTests/fast/regex/ecma-regex-examples.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/invalid-range-in-class.html b/LayoutTests/fast/regex/invalid-range-in-class.html
index 38e5cd3..2ca7368 100644
--- a/LayoutTests/fast/regex/invalid-range-in-class.html
+++ b/LayoutTests/fast/regex/invalid-range-in-class.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/malformed-escapes.html b/LayoutTests/fast/regex/malformed-escapes.html
index 7869b45..c63bb76 100644
--- a/LayoutTests/fast/regex/malformed-escapes.html
+++ b/LayoutTests/fast/regex/malformed-escapes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/non-capturing-backtracking.html b/LayoutTests/fast/regex/non-capturing-backtracking.html
index 60dd6ea..4c58ba6 100644
--- a/LayoutTests/fast/regex/non-capturing-backtracking.html
+++ b/LayoutTests/fast/regex/non-capturing-backtracking.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/non-pattern-characters.html b/LayoutTests/fast/regex/non-pattern-characters.html
index 4753546..4e0ba3d 100644
--- a/LayoutTests/fast/regex/non-pattern-characters.html
+++ b/LayoutTests/fast/regex/non-pattern-characters.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/overflow.html b/LayoutTests/fast/regex/overflow.html
index cc5d70c..b52b2a7 100644
--- a/LayoutTests/fast/regex/overflow.html
+++ b/LayoutTests/fast/regex/overflow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/parentheses.html b/LayoutTests/fast/regex/parentheses.html
index 1cfa4a7..7ded062 100644
--- a/LayoutTests/fast/regex/parentheses.html
+++ b/LayoutTests/fast/regex/parentheses.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/pcre-test-1.html b/LayoutTests/fast/regex/pcre-test-1.html
index f439f34..1041afd 100644
--- a/LayoutTests/fast/regex/pcre-test-1.html
+++ b/LayoutTests/fast/regex/pcre-test-1.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/pcre-test-4.html b/LayoutTests/fast/regex/pcre-test-4.html
index 0db5850..6ce7a8c 100644
--- a/LayoutTests/fast/regex/pcre-test-4.html
+++ b/LayoutTests/fast/regex/pcre-test-4.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/quantified-assertions.html b/LayoutTests/fast/regex/quantified-assertions.html
index 1c57ca9d..3157df3 100644
--- a/LayoutTests/fast/regex/quantified-assertions.html
+++ b/LayoutTests/fast/regex/quantified-assertions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/repeat-match-waldemar.html b/LayoutTests/fast/regex/repeat-match-waldemar.html
index 93dabc5..50f57cf 100644
--- a/LayoutTests/fast/regex/repeat-match-waldemar.html
+++ b/LayoutTests/fast/regex/repeat-match-waldemar.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/script-tests/TEMPLATE.html b/LayoutTests/fast/regex/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/regex/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/regex/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/slow.html b/LayoutTests/fast/regex/slow.html
index 75bffdb..2412774 100644
--- a/LayoutTests/fast/regex/slow.html
+++ b/LayoutTests/fast/regex/slow.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regex/toString.html b/LayoutTests/fast/regex/toString.html
index aae503a..78d1abc 100644
--- a/LayoutTests/fast/regex/toString.html
+++ b/LayoutTests/fast/regex/toString.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regions/content-webkit-from-flow-parsing.html b/LayoutTests/fast/regions/content-webkit-from-flow-parsing.html
index de5ebdc..06f2e10 100644
--- a/LayoutTests/fast/regions/content-webkit-from-flow-parsing.html
+++ b/LayoutTests/fast/regions/content-webkit-from-flow-parsing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regions/region-element-display-restriction.html b/LayoutTests/fast/regions/region-element-display-restriction.html
index 373529c..f22b9f7 100644
--- a/LayoutTests/fast/regions/region-element-display-restriction.html
+++ b/LayoutTests/fast/regions/region-element-display-restriction.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regions/script-tests/TEMPLATE.html b/LayoutTests/fast/regions/script-tests/TEMPLATE.html
index 4c34a58..2812e79 100644
--- a/LayoutTests/fast/regions/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/regions/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regions/webkit-flow-parsing.html b/LayoutTests/fast/regions/webkit-flow-parsing.html
index 13de065..12112d4 100644
--- a/LayoutTests/fast/regions/webkit-flow-parsing.html
+++ b/LayoutTests/fast/regions/webkit-flow-parsing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/regions/webkit-region-overflow-parsing.html b/LayoutTests/fast/regions/webkit-region-overflow-parsing.html
index 2a60730..417076d 100644
--- a/LayoutTests/fast/regions/webkit-region-overflow-parsing.html
+++ b/LayoutTests/fast/regions/webkit-region-overflow-parsing.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../fast/js/resources/js-test-style.css">
 <script src="../../fast/js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/replaced/table-percent-height-text-controls.html b/LayoutTests/fast/replaced/table-percent-height-text-controls.html
index af0a91d..833c1ae 100644
--- a/LayoutTests/fast/replaced/table-percent-height-text-controls.html
+++ b/LayoutTests/fast/replaced/table-percent-height-text-controls.html
@@ -1,7 +1,6 @@
 <html>
 <head>
 <title>Test for Buzilla Bug 15359: JPEG image not shown when height is specified as percentage inside a table</title>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/replaced/table-percent-height.html b/LayoutTests/fast/replaced/table-percent-height.html
index 30b5d23..bfb15f7 100644
--- a/LayoutTests/fast/replaced/table-percent-height.html
+++ b/LayoutTests/fast/replaced/table-percent-height.html
@@ -1,7 +1,6 @@
 <html>
 <head>
 <title>Test for Buzilla Bug 15359: JPEG image not shown when height is specified as percentage inside a table</title>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/replaced/table-percent-width.html b/LayoutTests/fast/replaced/table-percent-width.html
index 7f6df9b..23c961b 100644
--- a/LayoutTests/fast/replaced/table-percent-width.html
+++ b/LayoutTests/fast/replaced/table-percent-width.html
@@ -1,7 +1,6 @@
 <html>
 <head>
 <title> webkit.org/b/29447: Replaced elements squeezed when width is specified as percentage inside a table with Auto layout</title>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="../js/resources/js-test-post-function.js"></script>
 <script>
diff --git a/LayoutTests/fast/ruby/ruby-line-height.html b/LayoutTests/fast/ruby/ruby-line-height.html
index a92d573..298563d 100644
--- a/LayoutTests/fast/ruby/ruby-line-height.html
+++ b/LayoutTests/fast/ruby/ruby-line-height.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/spatial-navigation/snav-fully-aligned-horizontally-expected.txt b/LayoutTests/fast/spatial-navigation/snav-fully-aligned-horizontally-expected.txt
index 8de66b6..94a66fe 100644
--- a/LayoutTests/fast/spatial-navigation/snav-fully-aligned-horizontally-expected.txt
+++ b/LayoutTests/fast/spatial-navigation/snav-fully-aligned-horizontally-expected.txt
@@ -15,7 +15,7 @@
 How Now Brown Cow
 
 test
-PASS gFocusedDocument.activeElement.getAttribute("id") is "1"
+ PASS gFocusedDocument.activeElement.getAttribute("id") is "1"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "2"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "4"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "3"
diff --git a/LayoutTests/fast/spatial-navigation/snav-fully-aligned-vertically-expected.txt b/LayoutTests/fast/spatial-navigation/snav-fully-aligned-vertically-expected.txt
index 3e7f7e5..edf1898 100644
--- a/LayoutTests/fast/spatial-navigation/snav-fully-aligned-vertically-expected.txt
+++ b/LayoutTests/fast/spatial-navigation/snav-fully-aligned-vertically-expected.txt
@@ -10,7 +10,7 @@
 
 test
 test
-PASS gFocusedDocument.activeElement.getAttribute("id") is "4"
+ PASS gFocusedDocument.activeElement.getAttribute("id") is "4"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "6"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "8"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "end"
diff --git a/LayoutTests/fast/spatial-navigation/snav-tiny-table-traversal-expected.txt b/LayoutTests/fast/spatial-navigation/snav-tiny-table-traversal-expected.txt
index d62f466..70360c3 100644
--- a/LayoutTests/fast/spatial-navigation/snav-tiny-table-traversal-expected.txt
+++ b/LayoutTests/fast/spatial-navigation/snav-tiny-table-traversal-expected.txt
@@ -4,7 +4,7 @@
 a	a	a
 a
 a
-PASS gFocusedDocument.activeElement.getAttribute("id") is "1"
+ PASS gFocusedDocument.activeElement.getAttribute("id") is "1"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "4"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "7"
 PASS gFocusedDocument.activeElement.getAttribute("id") is "end"
diff --git a/LayoutTests/fast/spatial-navigation/snav-zero-margin-content-expected.txt b/LayoutTests/fast/spatial-navigation/snav-zero-margin-content-expected.txt
index dabf70b..2721e4e 100644
--- a/LayoutTests/fast/spatial-navigation/snav-zero-margin-content-expected.txt
+++ b/LayoutTests/fast/spatial-navigation/snav-zero-margin-content-expected.txt
@@ -1,3 +1,3 @@
 test1 test2
-PASS gFocusedDocument.activeElement.getAttribute("id") is "end"
+ PASS gFocusedDocument.activeElement.getAttribute("id") is "end"
 
diff --git a/LayoutTests/fast/speech/input-appearance-numberandspeech.html b/LayoutTests/fast/speech/input-appearance-numberandspeech.html
index c9c3ad4..b1930fb 100644
--- a/LayoutTests/fast/speech/input-appearance-numberandspeech.html
+++ b/LayoutTests/fast/speech/input-appearance-numberandspeech.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../../fast/js/resources/js-test-style.css">
 <style>
 </style>
 </head>
diff --git a/LayoutTests/fast/speech/input-appearance-searchandspeech.html b/LayoutTests/fast/speech/input-appearance-searchandspeech.html
index 7c17539..696d7b6 100644
--- a/LayoutTests/fast/speech/input-appearance-searchandspeech.html
+++ b/LayoutTests/fast/speech/input-appearance-searchandspeech.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../../fast/js/resources/js-test-style.css">
 <style>
 </style>
 </head>
diff --git a/LayoutTests/fast/speech/input-appearance-speechbutton.html b/LayoutTests/fast/speech/input-appearance-speechbutton.html
index 1f408bf..31c0b3b 100644
--- a/LayoutTests/fast/speech/input-appearance-speechbutton.html
+++ b/LayoutTests/fast/speech/input-appearance-speechbutton.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../../fast/js/resources/js-test-style.css">
 <style>
 </style>
 </head>
diff --git a/LayoutTests/fast/speech/input-onspeechchange-event.html b/LayoutTests/fast/speech/input-onspeechchange-event.html
index db51378..3957b72 100644
--- a/LayoutTests/fast/speech/input-onspeechchange-event.html
+++ b/LayoutTests/fast/speech/input-onspeechchange-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/input-ontextinput-event.html b/LayoutTests/fast/speech/input-ontextinput-event.html
index 639dd52..e1ec873 100644
--- a/LayoutTests/fast/speech/input-ontextinput-event.html
+++ b/LayoutTests/fast/speech/input-ontextinput-event.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/input-readonly-and-disabled.html b/LayoutTests/fast/speech/input-readonly-and-disabled.html
index 913dc3e..bb8b0c5 100644
--- a/LayoutTests/fast/speech/input-readonly-and-disabled.html
+++ b/LayoutTests/fast/speech/input-readonly-and-disabled.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/input-text-language-tag.html b/LayoutTests/fast/speech/input-text-language-tag.html
index a6a4c3a..b74abbc 100644
--- a/LayoutTests/fast/speech/input-text-language-tag.html
+++ b/LayoutTests/fast/speech/input-text-language-tag.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/input-text-speechbutton.html b/LayoutTests/fast/speech/input-text-speechbutton.html
index 6a7ad1e..9096ec3 100644
--- a/LayoutTests/fast/speech/input-text-speechbutton.html
+++ b/LayoutTests/fast/speech/input-text-speechbutton.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/input-text-speechstart.html b/LayoutTests/fast/speech/input-text-speechstart.html
index 1fa1582..065e379 100644
--- a/LayoutTests/fast/speech/input-text-speechstart.html
+++ b/LayoutTests/fast/speech/input-text-speechstart.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/speech-button-ignore-generated-events.html b/LayoutTests/fast/speech/speech-button-ignore-generated-events.html
index 6b8fa91..10c3d84 100644
--- a/LayoutTests/fast/speech/speech-button-ignore-generated-events.html
+++ b/LayoutTests/fast/speech/speech-button-ignore-generated-events.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/speech-input-result-list-not-enough-arguments.html b/LayoutTests/fast/speech/speech-input-result-list-not-enough-arguments.html
index e168679..9fa39f8 100644
--- a/LayoutTests/fast/speech/speech-input-result-list-not-enough-arguments.html
+++ b/LayoutTests/fast/speech/speech-input-result-list-not-enough-arguments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/speech-input-scripting.html b/LayoutTests/fast/speech/speech-input-scripting.html
index 5506ccf..d1bec5c 100644
--- a/LayoutTests/fast/speech/speech-input-scripting.html
+++ b/LayoutTests/fast/speech/speech-input-scripting.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/speech/speech-style-on-non-speech-elements.html b/LayoutTests/fast/speech/speech-style-on-non-speech-elements.html
index 3c93663..fa69374 100644
--- a/LayoutTests/fast/speech/speech-style-on-non-speech-elements.html
+++ b/LayoutTests/fast/speech/speech-style-on-non-speech-elements.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <style>
 .speechButton {
diff --git a/LayoutTests/fast/table/border-changes.html b/LayoutTests/fast/table/border-changes.html
index 4000347..a6b9a1a 100644
--- a/LayoutTests/fast/table/border-changes.html
+++ b/LayoutTests/fast/table/border-changes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/table/script-tests/TEMPLATE.html b/LayoutTests/fast/table/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/table/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/table/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/text/find-backwards.html b/LayoutTests/fast/text/find-backwards.html
index c06a5c0..6031255c 100644
--- a/LayoutTests/fast/text/find-backwards.html
+++ b/LayoutTests/fast/text/find-backwards.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/text/find-kana.html b/LayoutTests/fast/text/find-kana.html
index bd6f960..f017eba 100644
--- a/LayoutTests/fast/text/find-kana.html
+++ b/LayoutTests/fast/text/find-kana.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/text/find-russian.html b/LayoutTests/fast/text/find-russian.html
index 8b269e42..c79956f 100644
--- a/LayoutTests/fast/text/find-russian.html
+++ b/LayoutTests/fast/text/find-russian.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/text/find-soft-hyphen.html b/LayoutTests/fast/text/find-soft-hyphen.html
index 62f5862..ca971a6 100644
--- a/LayoutTests/fast/text/find-soft-hyphen.html
+++ b/LayoutTests/fast/text/find-soft-hyphen.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/text/font-size-zero.html b/LayoutTests/fast/text/font-size-zero.html
index 7c57a6b..4c5e9be 100644
--- a/LayoutTests/fast/text/font-size-zero.html
+++ b/LayoutTests/fast/text/font-size-zero.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/text/line-break-after-question-mark.html b/LayoutTests/fast/text/line-break-after-question-mark.html
index f78bb05..3032fb0 100644
--- a/LayoutTests/fast/text/line-break-after-question-mark.html
+++ b/LayoutTests/fast/text/line-break-after-question-mark.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/text/script-tests/TEMPLATE.html b/LayoutTests/fast/text/script-tests/TEMPLATE.html
index 7d2b8b8..056ea5d 100644
--- a/LayoutTests/fast/text/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/text/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/url/anchor.html b/LayoutTests/fast/url/anchor.html
index 90db29e..ae53270 100644
--- a/LayoutTests/fast/url/anchor.html
+++ b/LayoutTests/fast/url/anchor.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/file-http-base.html b/LayoutTests/fast/url/file-http-base.html
index 20bf449..f83a25d 100644
--- a/LayoutTests/fast/url/file-http-base.html
+++ b/LayoutTests/fast/url/file-http-base.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/file.html b/LayoutTests/fast/url/file.html
index 453418d..2c08b4d 100644
--- a/LayoutTests/fast/url/file.html
+++ b/LayoutTests/fast/url/file.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/host.html b/LayoutTests/fast/url/host.html
index 53dd381..3a8bb1d 100644
--- a/LayoutTests/fast/url/host.html
+++ b/LayoutTests/fast/url/host.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/idna2003.html b/LayoutTests/fast/url/idna2003.html
index 617fb91..7d7fa9b 100644
--- a/LayoutTests/fast/url/idna2003.html
+++ b/LayoutTests/fast/url/idna2003.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/idna2008.html b/LayoutTests/fast/url/idna2008.html
index 130fcf8..078dedd 100644
--- a/LayoutTests/fast/url/idna2008.html
+++ b/LayoutTests/fast/url/idna2008.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/ipv4.html b/LayoutTests/fast/url/ipv4.html
index 8a55245..9dbc1ab 100644
--- a/LayoutTests/fast/url/ipv4.html
+++ b/LayoutTests/fast/url/ipv4.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/ipv6.html b/LayoutTests/fast/url/ipv6.html
index e2dc56b..e5fbe5f 100644
--- a/LayoutTests/fast/url/ipv6.html
+++ b/LayoutTests/fast/url/ipv6.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/mailto.html b/LayoutTests/fast/url/mailto.html
index 2c706ea..9aba34c0 100644
--- a/LayoutTests/fast/url/mailto.html
+++ b/LayoutTests/fast/url/mailto.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/path-url.html b/LayoutTests/fast/url/path-url.html
index 1364603..eb3743c 100644
--- a/LayoutTests/fast/url/path-url.html
+++ b/LayoutTests/fast/url/path-url.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/path.html b/LayoutTests/fast/url/path.html
index ee4553b..ec4128e 100644
--- a/LayoutTests/fast/url/path.html
+++ b/LayoutTests/fast/url/path.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/port.html b/LayoutTests/fast/url/port.html
index 88ded2d..d7a2483 100644
--- a/LayoutTests/fast/url/port.html
+++ b/LayoutTests/fast/url/port.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/query.html b/LayoutTests/fast/url/query.html
index b97583e..b1d520d 100644
--- a/LayoutTests/fast/url/query.html
+++ b/LayoutTests/fast/url/query.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/relative-unix.html b/LayoutTests/fast/url/relative-unix.html
index d41e755..b2f4764 100644
--- a/LayoutTests/fast/url/relative-unix.html
+++ b/LayoutTests/fast/url/relative-unix.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/relative-win.html b/LayoutTests/fast/url/relative-win.html
index c993da7..870ab48 100644
--- a/LayoutTests/fast/url/relative-win.html
+++ b/LayoutTests/fast/url/relative-win.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/relative.html b/LayoutTests/fast/url/relative.html
index 358a1b7..e0944ea 100644
--- a/LayoutTests/fast/url/relative.html
+++ b/LayoutTests/fast/url/relative.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/scheme.html b/LayoutTests/fast/url/scheme.html
index 53a1b5d..33615e5 100644
--- a/LayoutTests/fast/url/scheme.html
+++ b/LayoutTests/fast/url/scheme.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/script-tests/TEMPLATE.html b/LayoutTests/fast/url/script-tests/TEMPLATE.html
index 8fa4318..64fd63c 100644
--- a/LayoutTests/fast/url/script-tests/TEMPLATE.html
+++ b/LayoutTests/fast/url/script-tests/TEMPLATE.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/segments-from-data-url.html b/LayoutTests/fast/url/segments-from-data-url.html
index 6b4796c..eb7be36 100644
--- a/LayoutTests/fast/url/segments-from-data-url.html
+++ b/LayoutTests/fast/url/segments-from-data-url.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/segments.html b/LayoutTests/fast/url/segments.html
index cf8a743..d8768fd 100644
--- a/LayoutTests/fast/url/segments.html
+++ b/LayoutTests/fast/url/segments.html
@@ -2,7 +2,6 @@
 <html>
 <head>
 <meta charset="utf-8">
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/standard-url.html b/LayoutTests/fast/url/standard-url.html
index 24f53f7..a3fbcbe 100644
--- a/LayoutTests/fast/url/standard-url.html
+++ b/LayoutTests/fast/url/standard-url.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/trivial-segments.html b/LayoutTests/fast/url/trivial-segments.html
index ac0cb47..6b49702 100644
--- a/LayoutTests/fast/url/trivial-segments.html
+++ b/LayoutTests/fast/url/trivial-segments.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/url/trivial.html b/LayoutTests/fast/url/trivial.html
index de68e88..46d0d83 100644
--- a/LayoutTests/fast/url/trivial.html
+++ b/LayoutTests/fast/url/trivial.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="resources/utilities.js"></script>
 </head>
diff --git a/LayoutTests/fast/workers/dedicated-worker-lifecycle.html b/LayoutTests/fast/workers/dedicated-worker-lifecycle.html
index 19d646e..5f52ad1 100644
--- a/LayoutTests/fast/workers/dedicated-worker-lifecycle.html
+++ b/LayoutTests/fast/workers/dedicated-worker-lifecycle.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/workers/shared-worker-exception.html b/LayoutTests/fast/workers/shared-worker-exception.html
index eaef078..06248d6 100644
--- a/LayoutTests/fast/workers/shared-worker-exception.html
+++ b/LayoutTests/fast/workers/shared-worker-exception.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/workers/shared-worker-frame-lifecycle.html b/LayoutTests/fast/workers/shared-worker-frame-lifecycle.html
index 4096bc6..1e482d7 100644
--- a/LayoutTests/fast/workers/shared-worker-frame-lifecycle.html
+++ b/LayoutTests/fast/workers/shared-worker-frame-lifecycle.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/workers/shared-worker-name.html b/LayoutTests/fast/workers/shared-worker-name.html
index 38f7036..5d0bef8 100644
--- a/LayoutTests/fast/workers/shared-worker-name.html
+++ b/LayoutTests/fast/workers/shared-worker-name.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/workers/worker-context-multi-port.html b/LayoutTests/fast/workers/worker-context-multi-port.html
index 0f876a8..ed8c8ad 100644
--- a/LayoutTests/fast/workers/worker-context-multi-port.html
+++ b/LayoutTests/fast/workers/worker-context-multi-port.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/workers/worker-multi-port.html b/LayoutTests/fast/workers/worker-multi-port.html
index 6d8596d..2520e64 100644
--- a/LayoutTests/fast/workers/worker-multi-port.html
+++ b/LayoutTests/fast/workers/worker-multi-port.html
@@ -1,5 +1,4 @@
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort.html b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort.html
index 53fc0d6..9ac8829 100644
--- a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort.html
+++ b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-abort.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer.html b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer.html
index 423b284..fdc3188 100644
--- a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer.html
+++ b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-arraybuffer.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-document.html b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-document.html
index ac1dfe9..94d4920 100644
--- a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-document.html
+++ b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-document.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 <style type="text/css">
 .box {
diff --git a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-text.html b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-text.html
index bacea94..abc6ca1 100644
--- a/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-text.html
+++ b/LayoutTests/fast/xmlhttprequest/xmlhttprequest-responsetype-text.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css"/>
 <script src="../js/resources/js-test-pre.js"></script>
 <style type="text/css">
 .box {
diff --git a/LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217.html b/LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217.html
index 41efa2e..6bd5979 100644
--- a/LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217.html
+++ b/LayoutTests/fast/xpath/4XPath/Borrowed/cz_20030217.html
@@ -2,7 +2,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/4XPath/Borrowed/kd_20010423.html b/LayoutTests/fast/xpath/4XPath/Borrowed/kd_20010423.html
index 6a80e2b..ebd5545 100644
--- a/LayoutTests/fast/xpath/4XPath/Borrowed/kd_20010423.html
+++ b/LayoutTests/fast/xpath/4XPath/Borrowed/kd_20010423.html
@@ -2,7 +2,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/4XPath/Borrowed/od_20000608.html b/LayoutTests/fast/xpath/4XPath/Borrowed/od_20000608.html
index a481f3d..b93b68f 100644
--- a/LayoutTests/fast/xpath/4XPath/Borrowed/od_20000608.html
+++ b/LayoutTests/fast/xpath/4XPath/Borrowed/od_20000608.html
@@ -56,7 +56,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/4XPath/Borrowed/rs_20010831.html b/LayoutTests/fast/xpath/4XPath/Borrowed/rs_20010831.html
index 15c5836..3e26429 100644
--- a/LayoutTests/fast/xpath/4XPath/Borrowed/rs_20010831.html
+++ b/LayoutTests/fast/xpath/4XPath/Borrowed/rs_20010831.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/4XPath/Borrowed/sr_20021217.html b/LayoutTests/fast/xpath/4XPath/Borrowed/sr_20021217.html
index 207c3ab..b98e3ad 100644
--- a/LayoutTests/fast/xpath/4XPath/Borrowed/sr_20021217.html
+++ b/LayoutTests/fast/xpath/4XPath/Borrowed/sr_20021217.html
@@ -2,7 +2,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_boolean_expr.html b/LayoutTests/fast/xpath/4XPath/Core/test_boolean_expr.html
index 32c1637..32d1696 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_boolean_expr.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_boolean_expr.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_core_functions.html b/LayoutTests/fast/xpath/4XPath/Core/test_core_functions.html
index 6776a05..0161d3b 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_core_functions.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_core_functions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 <script src="../../xpath-test-pre.js"></script>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_literal_expr.html b/LayoutTests/fast/xpath/4XPath/Core/test_literal_expr.html
index 16f0754..e9986fd8 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_literal_expr.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_literal_expr.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_location_path.html b/LayoutTests/fast/xpath/4XPath/Core/test_location_path.html
index 3b0e39e..f0fa1f3 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_location_path.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_location_path.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 <script src="../../xpath-test-pre.js"></script>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_node_test.html b/LayoutTests/fast/xpath/4XPath/Core/test_node_test.html
index b20eb95..5f8b1a5 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_node_test.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_node_test.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_nodeset_expr.html b/LayoutTests/fast/xpath/4XPath/Core/test_nodeset_expr.html
index bd0c447..35e01ce 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_nodeset_expr.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_nodeset_expr.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 <script src="../../xpath-test-pre.js"></script>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_numeric_expr.html b/LayoutTests/fast/xpath/4XPath/Core/test_numeric_expr.html
index c23aee7..d1cb947 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_numeric_expr.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_numeric_expr.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_parser.html b/LayoutTests/fast/xpath/4XPath/Core/test_parser.html
index 82339e5..86540d9 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_parser.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_parser.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 <script src="../../xpath-test-pre.js"></script>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_predicate_list.html b/LayoutTests/fast/xpath/4XPath/Core/test_predicate_list.html
index 5852b04..1e4969a 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_predicate_list.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_predicate_list.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 <script src="../../xpath-test-pre.js"></script>
diff --git a/LayoutTests/fast/xpath/4XPath/Core/test_step.html b/LayoutTests/fast/xpath/4XPath/Core/test_step.html
index e90cb1d..0c238b2 100644
--- a/LayoutTests/fast/xpath/4XPath/Core/test_step.html
+++ b/LayoutTests/fast/xpath/4XPath/Core/test_step.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../../../js/resources/js-test-style.css">
 <script src="../../../js/resources/js-test-pre.js"></script>
 <script src="test.js"></script>
 <script src="../../xpath-test-pre.js"></script>
diff --git a/LayoutTests/fast/xpath/ambiguous-operators.html b/LayoutTests/fast/xpath/ambiguous-operators.html
index f22a185..998ba69 100644
--- a/LayoutTests/fast/xpath/ambiguous-operators.html
+++ b/LayoutTests/fast/xpath/ambiguous-operators.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 <style>
diff --git a/LayoutTests/fast/xpath/attr-namespace.html b/LayoutTests/fast/xpath/attr-namespace.html
index cecd54c..6ca0ca7 100644
--- a/LayoutTests/fast/xpath/attr-namespace.html
+++ b/LayoutTests/fast/xpath/attr-namespace.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/attribute-node-predicate.html b/LayoutTests/fast/xpath/attribute-node-predicate.html
index a1661ae..0337a91 100644
--- a/LayoutTests/fast/xpath/attribute-node-predicate.html
+++ b/LayoutTests/fast/xpath/attribute-node-predicate.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/detached-subtree-invalidate-iterator.html b/LayoutTests/fast/xpath/detached-subtree-invalidate-iterator.html
index 33673eb..f75ca32 100644
--- a/LayoutTests/fast/xpath/detached-subtree-invalidate-iterator.html
+++ b/LayoutTests/fast/xpath/detached-subtree-invalidate-iterator.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/document-order.html b/LayoutTests/fast/xpath/document-order.html
index 10f89fb..fab6ee2 100644
--- a/LayoutTests/fast/xpath/document-order.html
+++ b/LayoutTests/fast/xpath/document-order.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/evaluate-twice.html b/LayoutTests/fast/xpath/evaluate-twice.html
index fec906e..54bbe5f 100644
--- a/LayoutTests/fast/xpath/evaluate-twice.html
+++ b/LayoutTests/fast/xpath/evaluate-twice.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/invalid-functions.html b/LayoutTests/fast/xpath/invalid-functions.html
index 00cc995..d7ec1b8 100644
--- a/LayoutTests/fast/xpath/invalid-functions.html
+++ b/LayoutTests/fast/xpath/invalid-functions.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/node-name-case-sensitivity.html b/LayoutTests/fast/xpath/node-name-case-sensitivity.html
index 5644801..a7194c9 100644
--- a/LayoutTests/fast/xpath/node-name-case-sensitivity.html
+++ b/LayoutTests/fast/xpath/node-name-case-sensitivity.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/null-namespace-in-html.html b/LayoutTests/fast/xpath/null-namespace-in-html.html
index 5fee53a..1e9331a 100644
--- a/LayoutTests/fast/xpath/null-namespace-in-html.html
+++ b/LayoutTests/fast/xpath/null-namespace-in-html.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/position.html b/LayoutTests/fast/xpath/position.html
index 6b25a73..1c7fbc6 100644
--- a/LayoutTests/fast/xpath/position.html
+++ b/LayoutTests/fast/xpath/position.html
@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/abbreviations.html b/LayoutTests/fast/xpath/py-dom-xpath/abbreviations.html
index 090e2e9..a9eeabc 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/abbreviations.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/abbreviations.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/axes.html b/LayoutTests/fast/xpath/py-dom-xpath/axes.html
index 1417c7e..3157d21 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/axes.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/axes.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/data.html b/LayoutTests/fast/xpath/py-dom-xpath/data.html
index bb8df6d..ac8ef2b 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/data.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/data.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/expressions.html b/LayoutTests/fast/xpath/py-dom-xpath/expressions.html
index cee4468..1044075 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/expressions.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/expressions.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/functions.html b/LayoutTests/fast/xpath/py-dom-xpath/functions.html
index 90183e3..3223211 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/functions.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/functions.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/nodetests.html b/LayoutTests/fast/xpath/py-dom-xpath/nodetests.html
index 5f19996..4ea0a50 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/nodetests.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/nodetests.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/paths.html b/LayoutTests/fast/xpath/py-dom-xpath/paths.html
index e65289a..3d469d9 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/paths.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/paths.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/py-dom-xpath/predicates.html b/LayoutTests/fast/xpath/py-dom-xpath/predicates.html
index 557e6f7..c3cb5c2f 100644
--- a/LayoutTests/fast/xpath/py-dom-xpath/predicates.html
+++ b/LayoutTests/fast/xpath/py-dom-xpath/predicates.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../../js/resources/js-test-style.css">
 <script src="../../js/resources/js-test-pre.js"></script>
 <script src="../xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/reverse-axes.html b/LayoutTests/fast/xpath/reverse-axes.html
index 71f7357..478f98f 100644
--- a/LayoutTests/fast/xpath/reverse-axes.html
+++ b/LayoutTests/fast/xpath/reverse-axes.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>
diff --git a/LayoutTests/fast/xpath/string-value.html b/LayoutTests/fast/xpath/string-value.html
index 2dce29f..698bf84 100644
--- a/LayoutTests/fast/xpath/string-value.html
+++ b/LayoutTests/fast/xpath/string-value.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/substring-after.html b/LayoutTests/fast/xpath/substring-after.html
index 53633fe..abebd2e 100644
--- a/LayoutTests/fast/xpath/substring-after.html
+++ b/LayoutTests/fast/xpath/substring-after.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/substring-nan-position.html b/LayoutTests/fast/xpath/substring-nan-position.html
index d1a1813..716af4b 100644
--- a/LayoutTests/fast/xpath/substring-nan-position.html
+++ b/LayoutTests/fast/xpath/substring-nan-position.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/substring-non-positive-postion.html b/LayoutTests/fast/xpath/substring-non-positive-postion.html
index 321bf25..f7dec7c3 100644
--- a/LayoutTests/fast/xpath/substring-non-positive-postion.html
+++ b/LayoutTests/fast/xpath/substring-non-positive-postion.html
@@ -1,7 +1,6 @@
 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 </head>
 <body>
diff --git a/LayoutTests/fast/xpath/xpath-detached-iframe-resolver-crash.html b/LayoutTests/fast/xpath/xpath-detached-iframe-resolver-crash.html
index c3e81a3..c3c387a 100644
--- a/LayoutTests/fast/xpath/xpath-detached-iframe-resolver-crash.html
+++ b/LayoutTests/fast/xpath/xpath-detached-iframe-resolver-crash.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script>
     if (window.layoutTestController) {
diff --git a/LayoutTests/fast/xpath/xpath-namespaces.html b/LayoutTests/fast/xpath/xpath-namespaces.html
index 79dc6d3..fd72ced 100644
--- a/LayoutTests/fast/xpath/xpath-namespaces.html
+++ b/LayoutTests/fast/xpath/xpath-namespaces.html
@@ -1,6 +1,5 @@
 <html>
 <head>
-<link rel="stylesheet" href="../js/resources/js-test-style.css">
 <script src="../js/resources/js-test-pre.js"></script>
 <script src="xpath-test-pre.js"></script>
 </head>