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

Unified Diff: third_party/WebKit/LayoutTests/fast/html/body-offset-properties.html

Issue 2669403002: Move tests for sections elements to html/sections/. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/html/body-offset-properties.html
diff --git a/third_party/WebKit/LayoutTests/fast/html/body-offset-properties.html b/third_party/WebKit/LayoutTests/fast/html/body-offset-properties.html
deleted file mode 100644
index d3c01e6a4d887d7a3dcf02b04bcb5b42d9916529..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/html/body-offset-properties.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<body style="position: relative; width: 200px; margin: 0 auto;">
-<pre id="console">The body should have 0 for both offsetLeft and offsetTop.
-
-</pre>
-<script>
-if (window.testRunner)
- testRunner.dumpAsText();
-var console = document.getElementById("console");
-console.appendChild(document.createTextNode("body.offsetParent = " + document.body.offsetParent + "\n"));
-console.appendChild(document.createTextNode("body.offsetLeft = " + document.body.offsetLeft + "\n"));
-console.appendChild(document.createTextNode("body.offsetTop = " + document.body.offsetTop + "\n"));
-</script>

Powered by Google App Engine
This is Rietveld 408576698