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

Unified Diff: LayoutTests/fast/css/first-letter-block-change.html

Issue 102993011: Revert "Update the first letter when the first line is changed by adding a new text at its start." (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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
« no previous file with comments | « no previous file | LayoutTests/fast/css/first-letter-block-change-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css/first-letter-block-change.html
diff --git a/LayoutTests/fast/css/first-letter-block-change.html b/LayoutTests/fast/css/first-letter-block-change.html
deleted file mode 100644
index 45534d4b578c216574f97aea2f7346b016976974..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/css/first-letter-block-change.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!doctype html>
-<html>
-<head>
-<title>Test for first-letter that is added by DOM scripting</title>
-<style type="text/css">
-p:first-letter {text-decoration: underline; color: #CB000F;}
-</style>
-<script type="text/javascript">
-if (window.testRunner)
- testRunner.waitUntilDone();
-
-window.onload = function() {
- document.body.offsetTop;
- addTextNode();
-};
-
-function addTextNode() {
- var textNode = document.createTextNode('I am adding a new text. ');
- var para = document.getElementById('test');
- para.insertBefore(textNode, para.firstChild);
- if (window.testRunner)
- testRunner.notifyDone();
-}
-</script>
-</head>
-<body>
-<p id="test">
-This is a test paragraph. You can insert extra text at its start;
-the :first-letter styles should be updated to accomodate this new text.
-</p>
-</body>
-</html>
« no previous file with comments | « no previous file | LayoutTests/fast/css/first-letter-block-change-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698