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

Side by Side Diff: LayoutTests/fast/dom/HTMLLinkElement/transition-exiting-stylesheet-initially-disabled.html

Issue 1140153006: Remove Navigation Transitions from Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed layout tests. Created 5 years, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/js-test.js"></script>
3 <script>
4
5 function checkResult() {
6 testPassed("Fired Load event.");
7 testStyle = window.getComputedStyle(document.getElementById("test"), null);
8 shouldBe('testStyle.color', '"rgb(0, 0, 0)"' /* black */);
9 finishJSTest();
10 }
11
12 description('This test checks that transition-existing-stylesheet link resources are initially disabled.');
13
14 if (window.testRunner) {
15 testRunner.waitUntilDone();
16 testRunner.dumpAsText();
17 testRunner.dumpResourceResponseMIMETypes();
18 }
19
20 window.successfullyParsed = true;
21 window.jsTestIsAsync = true;
22 </script>
23
24 <link id="testlink" rel="transition-exiting-stylesheet" href="resources/styleshe et.css" onload="checkResult()">
25 <h1 id="test"><!-- Test element --></h1>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698