Bug 243412: Remove -moz- prefixes from box-sizing in tests for submission to W3C test repository.

This commit is contained in:
L. David Baron 2014-02-04 18:06:18 -08:00
Родитель 5815633a98
Коммит 2e6fcaf959
13 изменённых файлов: 23 добавлений и 23 удалений

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Border-Box with specified width</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: border-box should make the element's (percentage) width be the distance from the left border edge to the right border edge." />
<meta name="assert" content="box-sizing: border-box should make the element's (percentage) width be the distance from the left border edge to the right border edge." />
<style type="text/css"><![CDATA[
.container {
width: 300px;
@ -16,7 +16,7 @@
}
.box-sized {
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 50%;
z-index: 1;
float: left;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Border-Box with specified width</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: border-box should make the element's (percentage) width be the distance from the left border edge to the right border edge." />
<meta name="assert" content="box-sizing: border-box should make the element's (percentage) width be the distance from the left border edge to the right border edge." />
<style type="text/css"><![CDATA[
.container {
width: 300px;
@ -16,7 +16,7 @@
}
.box-sized {
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 50%;
z-index: 1;
float: left;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Border-Box with specified width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: border-box should make the element's (percentage) width be the distance from the left border edge to the right border edge and the height be the distance from the top border edge to the bottom border edge." />
<meta name="assert" content="box-sizing: border-box should make the element's (percentage) width be the distance from the left border edge to the right border edge and the height be the distance from the top border edge to the bottom border edge." />
<style type="text/css"><![CDATA[
.container {
width: 300px;
@ -17,7 +17,7 @@
}
.box-sized {
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 50%;
height: 100%;
z-index: 1;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Border-Box with min/max width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: border-box should make the element's (length) width be the distance from the left border edge to the right border edge and the height be the distance from the top border edge to the bottom border edge." />
<meta name="assert" content="box-sizing: border-box should make the element's (length) width be the distance from the left border edge to the right border edge and the height be the distance from the top border edge to the bottom border edge." />
<style type="text/css"><![CDATA[
.container {
min-width: 500px;
@ -19,7 +19,7 @@
}
.box-sized {
-moz-box-sizing: border-box;
box-sizing: border-box;
min-width: 250px;
max-width: 350px;
min-height: 70px;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Content-Box with specified width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: content-box should make the element's (percentage) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge."/>
<meta name="assert" content="box-sizing: content-box should make the element's (percentage) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge."/>
<style type="text/css"><![CDATA[
.container {
width: 300px;
@ -17,7 +17,7 @@
}
.box-sized {
-moz-box-sizing: content-box;
box-sizing: content-box;
width: 50%;
height: 100%;
z-index: 1;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Content-Box with specified width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: content-box should make the element's (calc) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge."/>
<meta name="assert" content="box-sizing: content-box should make the element's (calc) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge."/>
<style type="text/css"><![CDATA[
.container {
width: 300px;
@ -17,7 +17,7 @@
}
.box-sized {
-moz-box-sizing: content-box;
box-sizing: content-box;
width: calc(50% - 10px);
height: calc(100% - 10px);
z-index: 1;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Content-Box with min/max width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: content-box should make the element's (percentage) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge."/>
<meta name="assert" content="box-sizing: content-box should make the element's (percentage) width be the distance from the left content edge to the right content edge and the height be the distance from the top content edge to the bottom content edge."/>
<style type="text/css"><![CDATA[
.container {
min-width: 500px;
@ -18,7 +18,7 @@
}
.box-sized {
-moz-box-sizing: content-box;
box-sizing: content-box;
width: 50%;
height: 100%;
z-index: 1;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Padding-Box with specified width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge."/>
<meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge."/>
<style type="text/css"><![CDATA[
.container {
width: 300px;
@ -16,7 +16,7 @@
}
.box-sized {
-moz-box-sizing: padding-box;
box-sizing: padding-box;
width: 50%;
z-index: 1;
float: left;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Padding-Box with specified width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge."/>
<meta name="assert" content="box-sizing: padding-box should make the element's (percentage) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge."/>
<style type="text/css"><![CDATA[
.container {
width: 300px;
@ -17,7 +17,7 @@
}
.box-sized {
-moz-box-sizing: padding-box;
box-sizing: padding-box;
width: 50%;
height: 100%;
z-index: 1;

Просмотреть файл

@ -4,7 +4,7 @@
<title>CSS Test: Box Sizing - Padding-Box with min/max width/height</title>
<link rel="author" title="Scott Johnson" href="mailto:sjohnson@mozilla.com" />
<link rel="help" href="http://www.w3.org/TR/css3-ui/#box-sizing" />
<meta name="assert" content="-moz-box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge."/>
<meta name="assert" content="box-sizing: padding-box should make the element's (calc) width be the distance from the left padding edge to the right padding edge and the height be the distance from the top padding edge to the bottom padding edge."/>
<style type="text/css"><![CDATA[
.container {
min-width: 500px;
@ -19,7 +19,7 @@
}
.box-sized {
-moz-box-sizing: padding-box;
box-sizing: padding-box;
min-width: 250px;
max-width: 350px;
min-height: 70px;

Просмотреть файл

@ -21,7 +21,7 @@
.with-padding {
padding: 5px 5px;
-moz-box-sizing: padding-box;
box-sizing: padding-box;
}
#img1 {

Просмотреть файл

@ -22,7 +22,7 @@
.with-borderpadding {
padding: 5px 5px;
border: 5px solid blue;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#img1 {

Просмотреть файл

@ -20,7 +20,7 @@
}
.content-box {
-moz-box-sizing: content-box;
box-sizing: content-box;
}
#img1 {