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

Unified Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-002-expected.html

Issue 200633005: [CSS Shapes] Remove deprecated shapes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectations Created 6 years, 9 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/fast/shapes/shape-inside/shape-inside-rounded-rectangle-002-expected.html
diff --git a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-002-expected.html b/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-002-expected.html
deleted file mode 100644
index 7df0f5d77b307c536109289720f2372511e8c106..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/shapes/shape-inside/shape-inside-rounded-rectangle-002-expected.html
+++ /dev/null
@@ -1,32 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../resources/subpixel-utils.js"></script>
-<script src="../resources/rounded-rectangle.js"></script>
-<script>
- function createSimulatedShapeElement() {
- var stylesheet = document.getElementById("stylesheet");
- var dimensions = { width: 200, height: 300,
- shapeX: 25, shapeY: 45,
- shapeWidth: 100, shapeHeight: 200,
- shapeRadiusX: 0, shapeRadiusY: 55 };
- generateSimulatedShapeElement("shape-inside1", stylesheet.sheet, dimensions, 9);
- dimensions.shapeRadiusX = 55;
- dimensions.shapeRadiusY = 0;
- generateSimulatedShapeElement("shape-inside2", stylesheet.sheet, dimensions, 9);
- }
-</script>
-<style id="stylesheet">
- body { margin: 0; }
-</style>
-</head>
-<body onload="createSimulatedShapeElement()">
-<div id="shape-inside1" style="display:inline-block"></div>
-<div id="shape-inside2" style="display:inline-block"></div>
-<div>
- This test requires the Ahem font. It creates two rectangular shape-insides with one of
- corner radius X or corner radius Y equal to zero. The content should fill and slightly
- overflow these two rectangular areas with alternating black and white boxes.
-</div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698