Bug 1380124 - Fix 'desctruction' typos. r=njn draft
authorAndrew McCreight <continuation@gmail.com>
Tue, 11 Jul 2017 13:04:26 -0700
changeset 607069 f0059f07155eeda26e9b9c1c4e67db32a1e0e582
parent 607068 131c5d63a1983656f50f05290345ddce9f530e52
child 636926 801fad0246e29f038e69846ad3c2c9b829304010
push id67876
push userbmo:continuation@gmail.com
push dateTue, 11 Jul 2017 20:06:17 +0000
reviewersnjn
bugs1380124
milestone56.0a1
Bug 1380124 - Fix 'desctruction' typos. r=njn MozReview-Commit-ID: 8gNYd7NL58U
accessible/tests/browser/e10s/doc_treeupdate_whitespace.html
accessible/tests/mochitest/treeupdate/test_whitespace.html
gfx/layers/ipc/CompositorBridgeChild.cpp
--- a/accessible/tests/browser/e10s/doc_treeupdate_whitespace.html
+++ b/accessible/tests/browser/e10s/doc_treeupdate_whitespace.html
@@ -1,10 +1,10 @@
 <html xmlns="http://www.w3.org/1999/xhtml">
   <head>
     <meta charset="utf-8"/>
-    <title>Whitespace text accessible creation/desctruction</title>
+    <title>Whitespace text accessible creation/destruction</title>
   </head>
   <body id="body">
     <div id="container1">  <img src="http://example.com/a11y/accessible/tests/mochitest/moz.png">  <img id="img1" src="http://example.com/a11y/accessible/tests/mochitest/moz.png">  <img src="http://example.com/a11y/accessible/tests/mochitest/moz.png">  </div>
     <div id="container2-parent"> <a id="container2"></a> <a><img src="http://example.com/a11y/accessible/tests/mochitest/moz.png"></a> </div>
   </body>
 </html>
--- a/accessible/tests/mochitest/treeupdate/test_whitespace.html
+++ b/accessible/tests/mochitest/treeupdate/test_whitespace.html
@@ -1,13 +1,13 @@
 <!DOCTYPE html>
 <html>
 
 <head>
-  <title>Whitespace text accessible creation/desctruction</title>
+  <title>Whitespace text accessible creation/destruction</title>
 
   <link rel="stylesheet" type="text/css"
         href="chrome://mochikit/content/tests/SimpleTest/test.css" />
 
   <script type="application/javascript"
           src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
 
   <script type="application/javascript"
--- a/gfx/layers/ipc/CompositorBridgeChild.cpp
+++ b/gfx/layers/ipc/CompositorBridgeChild.cpp
@@ -187,17 +187,17 @@ CompositorBridgeChild::Destroy()
   mProcessToken = 0;
 
   // The call just made to SendWillClose can result in IPC from the
   // CompositorBridgeParent to the CompositorBridgeChild (e.g. caused by the destruction
   // of shared memory). We need to ensure this gets processed by the
   // CompositorBridgeChild before it gets destroyed. It suffices to ensure that
   // events already in the MessageLoop get processed before the
   // CompositorBridgeChild is destroyed, so we add a task to the MessageLoop to
-  // handle compositor desctruction.
+  // handle compositor destruction.
 
   // From now on we can't send any message message.
   MessageLoop::current()->PostTask(NewRunnableMethod(
     "CompositorBridgeChild::AfterDestroy",
     selfRef, &CompositorBridgeChild::AfterDestroy));
 }
 
 // static