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

Side by Side Diff: LayoutTests/fast/layers/layer-status-change-crash.html

Issue 834173003: Change about caret painting in slimming paint mode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add tests Created 5 years, 11 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
« no previous file with comments | « no previous file | LayoutTests/fast/layers/layer-status-change-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <body>
3 <div id="div">This test passes if it does not crash.</div>
4 <script>
5 if (window.testRunner) {
6 testRunner.waitUntilDone();
7 testRunner.dumpAsText();
8
9 var div = document.getElementById('div');
10 testRunner.displayAsyncThen(function() {
11 div.style.position = 'relative';
12 div.style.backgroundColor = 'blue';
13 testRunner.displayAsyncThen(function() {
14 div.textContent += ' PASS';
15 testRunner.notifyDone();
16 });
17 });
18 } else {
19 document.body.textContent = 'This test needs DumpRenderTree.';
20 }
21 </script>
22 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/layers/layer-status-change-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698