Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1532632 - Use readonly="readonly" instead of readonly="true" for …
Browse files Browse the repository at this point in the history
…textareas. r=ntim
  • Loading branch information
m.boselli committed Mar 6, 2019
1 parent 3661539 commit 054384a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dom/xslt/tests/XSLTMark/XSLTMark.xul
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@
<progressmeter id="totalProgress" mode="normal" value="0" flex="2"/>
</hbox>
<hbox flex="1">
<html:textarea id="transformOutput" class="out" readonly="true" flex="1"/>
<html:textarea id="transformOutput" class="out" readonly="readonly" flex="1"/>
</hbox>
<hbox flex="1">
<html:textarea id="transformDetailedOutput" class="out" readonly="true" flex="1"/>
<html:textarea id="transformDetailedOutput" class="out" readonly="readonly" flex="1"/>
</hbox>
</window>
2 changes: 1 addition & 1 deletion security/manager/pki/resources/content/certViewer.xul
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
</tree>

<label class="header" data-l10n-id="certmgr-fields" control="certDumpVal"/>
<html:textarea id="certDumpVal" flex="1" readonly="true"
<html:textarea id="certDumpVal" flex="1" readonly="readonly"
style="height: 11em; font-family: -moz-fixed;"/>
<separator class="thin"/>
<hbox>
Expand Down
2 changes: 1 addition & 1 deletion security/manager/pki/resources/content/clientauthask.xul
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<menupopup/>
</menulist>
<description>&clientAuthAsk.message3;</description>
<html:textarea readonly="true" id="details" style="height: 11em;"/>
<html:textarea readonly="readonly" id="details" style="height: 11em;"/>
<checkbox id="rememberBox" checked="true"/>

</dialog>
2 changes: 1 addition & 1 deletion toolkit/mozapps/update/content/updates.xul
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
<vbox class="update-content" flex="1">
<label id="errorIntro">&error.label;</label>
<separator/>
<html:textarea class="plain" readonly="true" id="errorReason" rows="3"/>
<html:textarea class="plain" readonly="readonly" id="errorReason" rows="3"/>
<separator/>
<label id="errorManual">&errorManual.label;</label>
<hbox>
Expand Down

0 comments on commit 054384a

Please sign in to comment.