Bug 1385813 - [Form Autofill] Set the width of edit address dialog on html markup rather than in css draft
authorScott Wu <scottcwwu@gmail.com>
Mon, 31 Jul 2017 16:48:57 +0800
changeset 618320 aa44056178e7e2d80d7f94c5b388b200e193df26
parent 618186 6d1b50a370b4adffbb1ee73b9f51707c90d6a2b1
child 640040 631198e615235ca1fc35b2540859730304d36cb9
push id71302
push userbmo:scwwu@mozilla.com
push dateMon, 31 Jul 2017 08:49:19 +0000
bugs1385813
milestone56.0a1
Bug 1385813 - [Form Autofill] Set the width of edit address dialog on html markup rather than in css MozReview-Commit-ID: FtpIt0G76O9
browser/extensions/formautofill/content/editAddress.xhtml
browser/extensions/formautofill/skin/shared/editAddress.css
--- a/browser/extensions/formautofill/content/editAddress.xhtml
+++ b/browser/extensions/formautofill/content/editAddress.xhtml
@@ -1,14 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- This Source Code Form is subject to the terms of the Mozilla Public
    - License, v. 2.0. If a copy of the MPL was not distributed with this
    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
 <!DOCTYPE html>
-<html xmlns="http://www.w3.org/1999/xhtml">
+<html xmlns="http://www.w3.org/1999/xhtml" width="620">
 <head>
   <title data-localization="addNewDialogTitle"/>
   <link rel="stylesheet" href="chrome://formautofill-shared/skin/editAddress.css" />
   <link rel="stylesheet" href="chrome://formautofill/skin/editAddress.css" />
   <script src="chrome://formautofill/content/editAddress.js"></script>
 </head>
 <body>
   <form autocomplete="off">
--- a/browser/extensions/formautofill/skin/shared/editAddress.css
+++ b/browser/extensions/formautofill/skin/shared/editAddress.css
@@ -1,16 +1,12 @@
 /* This Source Code Form is subject to the terms of the Mozilla Public
  * License, v. 2.0. If a copy of the MPL was not distributed with this
  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 
-html {
-  width: 620px;
-}
-
 body {
   font-size: 1rem;
 }
 
 form,
 label,
 div {
   display: flex;