This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 807613 - Add a pref to make the placeholder disappear when a text…
… field is focused. r=bz
- Loading branch information
1 parent
63f55a4
commit 6dfb205
Showing
5 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
layout/reftests/forms/placeholder/placeholder-focus-pref.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html class="reftest-wait"> | ||
<link rel='stylesheet' type='text/css' href='placeholder-style.css'> | ||
<!-- Test: when focused, element should not placeholder when | ||
'dom.placeholder.show_on_focus' pref is false. --> | ||
<script type="text/javascript"> | ||
function focusPlaceholder() | ||
{ | ||
document.getElementById('p1').focus(); | ||
} | ||
function disableReftestWait() | ||
{ | ||
document.documentElement.className = ''; | ||
} | ||
</script> | ||
|
||
<body onload="focusPlaceholder();"> | ||
<input type="text" id="p1" value="" placeholder="my placeholder" onfocus="disableReftestWait();"> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters