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

Unified Diff: third_party/WebKit/LayoutTests/html/grouping-content/listing.html

Issue 2780363002: Rename subdirectory names in LayoutTests/html/. (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/html/grouping-content/listing.html
diff --git a/third_party/WebKit/LayoutTests/html/grouping-content/listing.html b/third_party/WebKit/LayoutTests/html/grouping-content/listing.html
deleted file mode 100644
index 77280c383dc545312197672f0b9027c74f47fb10..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/html/grouping-content/listing.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<p>This tests the listing tag. It's an obsolete synonym for the pre tag.</p>
-
-<div>Text just before the listing.</div>
-<listing id="mr. listing" width=100>
-This text is inside a listing tag.
-It acts exactly like the pre tag, so the text should be monospaced and not have any line breaks.
-Also, it eats the very first newline inside the listing, so there should not be a blank line above.
-</listing>
-
-<p>The listing tag has a width in it. To test the JavaScript binding, this page gets the width, here: <a id="width place"></a></p>
-
-<script>
- var listing = document.getElementById("mr. listing");
- var widthPlace = document.getElementById("width place");
- widthPlace.appendChild(document.createTextNode(listing.width));
-</script>

Powered by Google App Engine
This is Rietveld 408576698