Bug 1107778 - Remove a couple of unused test files that landed accidentally. r=me

This commit is contained in:
Mats Palmgren 2015-04-11 00:21:06 +00:00
parent c9abe27bec
commit a9adb5b74f
2 changed files with 0 additions and 256 deletions

View File

@ -1,137 +0,0 @@
<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.grid {
height: 60px;
border: 1px solid green;
position: relative;
}
span {
position: absolute;
background: lime;
border: 1px solid black;
box-sizing: border-box;
width: 20px;
height: 20px;
}
.test1 .a {
top: 0;
left: 20px;
width: 20px;
height: 20px;
}
.test1 .b {
top: 20px;
left: 20px;
width: 60px;
height: 20px;
}
.test1 .c {
top: 0;
left: 80px;
width: 60px;
height: 40px;
}
.test2 .a {
top: 0;
left: 20px;
width: 60px;
height: 20px;
}
.test2 .b {
top: 20px;
left: 20px;
width: 20px;
height: 20px;
}
.test2 .c {
top: 0;
left: 80px;
width: 60px;
height: 40px;
}
.test3 .a {
top: 0;
left: 0;
width: 60px;
height: 40px;
}
.test3 .b {
top: 40px;
left: 20px;
width: 60px;
height: 20px;
}
.test3 .c {
top: 0;
left: 60px;
width: 60px;
height: 40px;
}
.test3 .d { top: 40px; }
.test4 .c {
top: 0;
left: 0;
width: 60px;
height: 40px;
}
.test4 .d { left: 60px; }
.test5 .c {
top: 20px;
left: 0;
width: 60px;
height: 20px;
}
.test6 { left: 140px; top: 20px;}
</style>
</head>
<body>
<div class="grid test1">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test2">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test3">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test4">
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test5">
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test1">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="test6">d</span>
</div>
</body>
</html>

View File

@ -1,119 +0,0 @@
<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.grid {
display: grid;
border: 1px solid green;
grid-template-columns: 20px 20px 20px 20px;
grid-template-rows: 20px 20px 20px;
grid-auto-flow: row;
grid-auto-columns: 20px;
grid-auto-rows: 20px;
}
span {
background: lime;
border: 1px solid;
}
.test1 .a {
grid-row: 1;
grid-column: 2 / span 1;
}
.test1 .b {
grid-row: 2;
grid-column: 2 / span 3;
}
.test1 .c, .test2 .c {
grid-row: 1 / span 2;
grid-column: auto / span 3;
}
.test2 .a {
grid-row: 1;
grid-column: 2 / span 3;
}
.test2 .b {
grid-row: 2;
grid-column: 2 / span 1;
}
.test3 {
grid-template-areas:
'a a a . . .'
'a a a . . .'
'. b b . . .'
;
}
.test3 .a {
grid-area: a;
}
.test3 .b {
grid-column: 2 / span 3;
grid-row: b;
}
.test3 .c {
grid-row: auto / span 2;
grid-column: auto / span 3;
}
.test4 .c {
grid-row: auto / span 2;
grid-column: auto / span 3;
}
.test5 .c {
grid-row-start: 2;
grid-column: auto / span 3;
}
.test6 {
grid-row-start: 2;
grid-column: auto / span X;
}
</style>
</head>
<body>
<div class="grid test1">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="d">d</span><!-- placed at 1,1 b/c it's auto in both directions, compare test6 below -->
</div>
<div class="grid test2">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test3">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test4">
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test5">
<span class="c">c</span>
<span class="d">d</span>
</div>
<div class="grid test1">
<span class="a">a</span>
<span class="b">b</span>
<span class="c">c</span>
<span class="test6">d</span><!-- after c because it's only auto in one direction, unlike test1.d above -->
</div>
</body>
</html>