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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/layers/layer-status-change-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/layers/layer-status-change-crash.html
diff --git a/LayoutTests/fast/layers/layer-status-change-crash.html b/LayoutTests/fast/layers/layer-status-change-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..2afaed2c91abce05b39a5aa7c8b5ec27f7131b32
--- /dev/null
+++ b/LayoutTests/fast/layers/layer-status-change-crash.html
@@ -0,0 +1,22 @@
+<!DOCTYPE HTML>
+<body>
+<div id="div">This test passes if it does not crash.</div>
+<script>
+if (window.testRunner) {
+ testRunner.waitUntilDone();
+ testRunner.dumpAsText();
+
+ var div = document.getElementById('div');
+ testRunner.displayAsyncThen(function() {
+ div.style.position = 'relative';
+ div.style.backgroundColor = 'blue';
+ testRunner.displayAsyncThen(function() {
+ div.textContent += ' PASS';
+ testRunner.notifyDone();
+ });
+ });
+} else {
+ document.body.textContent = 'This test needs DumpRenderTree.';
+}
+</script>
+</body>
« 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