Bug 1347244 - Add encoding information to memory test html files r?julienw draft
authorGreg Tatum <tatum.creative@gmail.com>
Tue, 21 Mar 2017 12:54:42 -0500
changeset 502463 a7ae7a2f13d7fbf84fb716cdda6c09fc5e77c0ff
parent 502328 9fb5e850ab7ab0b2b90640c604f66038407b411d
child 550159 35a1922bcc2bb541c05183e1e327558d1a3b22ff
push id50281
push userbmo:gtatum@mozilla.com
push dateTue, 21 Mar 2017 20:04:01 +0000
reviewersjulienw
bugs1347244
milestone55.0a1
Bug 1347244 - Add encoding information to memory test html files r?julienw MozReview-Commit-ID: 7KSIirB7TL0
devtools/client/memory/test/browser/doc_big_tree.html
devtools/client/memory/test/browser/doc_steady_allocation.html
--- a/devtools/client/memory/test/browser/doc_big_tree.html
+++ b/devtools/client/memory/test/browser/doc_big_tree.html
@@ -1,10 +1,13 @@
 <!DOCTYPE html>
 <html>
+  <head>
+    <meta charset="utf-8"/>
+  </head>
   <body>
     <script>
       "use strict";
 
       window.big = (function makeBig(depth = 0) {
         let big = Array(5);
         big.fill(undefined);
         if (depth < 5) {
--- a/devtools/client/memory/test/browser/doc_steady_allocation.html
+++ b/devtools/client/memory/test/browser/doc_steady_allocation.html
@@ -1,10 +1,13 @@
 <!DOCTYPE html>
 <html>
+  <head>
+    <meta charset="UTF-8" />
+  </head>
   <body>
     <script>
       "use strict";
 
       var objects = window.objects = [];
       var allocate = this.allocate = function allocate() {
         for (let i = 0; i < 100; i++) {
           objects.push({});