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

Unified Diff: LayoutTests/transitions/first-letter-color-transition.html

Issue 10696154: Merge 120639 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1180/
Patch Set: Created 8 years, 5 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: LayoutTests/transitions/first-letter-color-transition.html
===================================================================
--- LayoutTests/transitions/first-letter-color-transition.html (revision 122239)
+++ LayoutTests/transitions/first-letter-color-transition.html (working copy)
@@ -1,56 +0,0 @@
-<!DOCTYPE html>
-
-<html>
-<head>
-<style type="text/css" media="screen">
- .box {
- width: 100px;
- height: 100px;
- background-color: blue;
- }
-
- .box::first-letter {
- font-size: 24pt;
- color: black;
- -webkit-transition: color 0.1s;
- }
-
- body.go .box::first-letter {
- color: white;
- }
-
-</style>
-<script type="text/javascript" charset="utf-8">
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- var result = "";
- function transitionEnded(event)
- {
- if (event.propertyName == "color")
- result += "PASS";
- else
- result += "FAIL";
-
- document.getElementById('result').innerHTML = result;
- if (window.testRunner)
- testRunner.notifyDone();
- }
-
- window.addEventListener('webkitTransitionEnd', transitionEnded, false);
-
- window.addEventListener('load', function () {
- document.body.className = "go";
- }, false);
-</script>
-</head>
-<body>
- <div class="box">
- Lorem ipsum dolor sit amet.
- </div>
- <div id="result">
- </div>
-</body>
-</html>
« no previous file with comments | « LayoutTests/platform/efl/TestExpectations ('k') | LayoutTests/transitions/first-letter-color-transition-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698