Files
tubestation/layout/reftests/w3c-css/submitted/shapes1/shape-outside-ellipse-048-ref.html
L. David Baron 0309ac9d81 Rename (renumber) new mozilla-central-reftests shapes1 tests to avoid filename collisions with existing tests. Followup to bug 1311244, bug 1326406, and bug 1326407.
Fixes https://github.com/w3c/csswg-test/issues/1227 .

This patch was written with the script:
#!/bin/bash

cd "$(dirname "$0")/shapes1"

echo "circle 31
ellipse 31
inset 15" | while read BASE INCREMENT
do
   echo shape-outside-$BASE-* | sed 's/ /\n/g;' | sed 's/\([0-9]\{3\}\)/ \1 /' | while read FILESTART OLDNUM FILEEND
   do
       NEWNUM=$(printf "%03d" $(($(echo $OLDNUM | sed 's/^0*//') + $INCREMENT)))
       OLDFILE="$FILESTART$OLDNUM$FILEEND"
       NEWFILE="$FILESTART$NEWNUM$FILEEND"
       hg mv "$OLDFILE" "$NEWFILE"
       sed -i -e "s/$OLDFILE/$NEWFILE/g" *
   done
done
2017-03-03 09:15:54 -08:00

47 lines
1.5 KiB
HTML

<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<meta charset="utf-8">
<title>CSS Shape Test: vertical-lr, float left, ellipse(farthest-side closest-side at top 40px left 60px) border-box reference</title>
<link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
<link rel="author" title="Mozilla" href="http://www.mozilla.org/">
<style>
.container {
writing-mode: vertical-lr;
position: absolute;
inline-size: 200px;
line-height: 0;
}
.shape {
float: left;
/* Omit shape-outside */
clip-path: ellipse(farthest-side closest-side at top 40px left 60px) border-box;
box-sizing: content-box;
block-size: 40px;
inline-size: 40px;
padding: 10px 20px;
border: solid lightgreen;
border-width: 10px;
margin-block-end: 20px;
background-color: orange;
}
.box {
position: absolute;
inline-size: 80px;
background-color: blue;
}
</style>
<body class="container">
<div class="shape"></div>
<div class="box" style="block-size: 24px; offset-block-start: 0px; offset-inline-start: 72px;"></div> <!-- Box at corner -->
<div class="box" style="block-size: 36px; offset-block-start: 24px; offset-inline-start: 80px;"></div>
<div class="box" style="block-size: 36px; offset-block-start: 60px; offset-inline-start: 80px;"></div>
<div class="box" style="block-size: 24px; offset-block-start: 96px; offset-inline-start: 72px;"></div> <!-- Box at corner -->
</body>
</html>