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

Unified Diff: third_party/WebKit/LayoutTests/fast/backgrounds/unrenderable-rrect-crash.html

Issue 2112643002: Reinstate BoxPainter's unrederable background rrect logic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: test tweak Created 4 years, 6 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: third_party/WebKit/LayoutTests/fast/backgrounds/unrenderable-rrect-crash.html
diff --git a/third_party/WebKit/LayoutTests/fast/backgrounds/unrenderable-rrect-crash.html b/third_party/WebKit/LayoutTests/fast/backgrounds/unrenderable-rrect-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..a3bf2309ae2eb7cf63d1a8c0a38cf83d912f8433
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fast/backgrounds/unrenderable-rrect-crash.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+
+<style>
+.box {
+ width: 400px;
+ height: 200px;
+ box-sizing: border-box;
+
+ border-bottom-right-radius: 200px;
+ border: 60px solid green;
+ background-color: yellow;
+</style>
+
+<div class="box"></div>
+
+PASS: did not crash.
+
+<script>
+ if (window.testRunner)
+ testRunner.dumpAsText();
+</script>

Powered by Google App Engine
This is Rietveld 408576698