Bug 1431041: Make placeholder apply to <input type="number">. r=smaug
MozReview-Commit-ID: GLbdLxHLiH4
This commit is contained in:
@@ -7026,7 +7026,7 @@ HTMLInputElement::PlaceholderApplies() const
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return IsSingleLineTextControl(false);
|
return IsSingleLineTextOrNumberControl(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<link rel='stylesheet' href='style-shown.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='style-shown.css'>
|
<input class='shown-ref' value='foo'>
|
||||||
<body>
|
<input type="number" class='shown-ref' placeholder='foo'>
|
||||||
<input class='shown-ref' value='foo'>
|
<input type="email" class='shown-ref' placeholder='foo'>
|
||||||
</body>
|
<input type="search" class='shown-ref' placeholder='foo'>
|
||||||
</html>
|
<input type="tel" class='shown-ref' placeholder='foo'>
|
||||||
|
<input type="url" class='shown-ref' placeholder='foo'>
|
||||||
|
<input type="month" class='shown-ref' placeholder='foo'>
|
||||||
|
<input type="week" class='shown-ref' placeholder='foo'>
|
||||||
|
<input type="datetime-local" class='shown-ref' placeholder='foo'>
|
||||||
|
|||||||
@@ -1,7 +1,11 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<link rel='stylesheet' href='style-shown.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='style-shown.css'>
|
<input class='shown' placeholder='foo'>
|
||||||
<body>
|
<input type="number" class='shown' placeholder='foo'>
|
||||||
<input class='shown' placeholder='foo'>
|
<input type="email" class='shown' placeholder='foo'>
|
||||||
</body>
|
<input type="search" class='shown' placeholder='foo'>
|
||||||
</html>
|
<input type="tel" class='shown' placeholder='foo'>
|
||||||
|
<input type="url" class='shown' placeholder='foo'>
|
||||||
|
<input type="month" class='shown' placeholder='foo'>
|
||||||
|
<input type="week" class='shown' placeholder='foo'>
|
||||||
|
<input type="datetime-local" class='shown' placeholder='foo'>
|
||||||
|
|||||||
Reference in New Issue
Block a user