From 45856f42574fb623cc71653d7a46db4093323557 Mon Sep 17 00:00:00 2001
From: Shane Tomlinson <stomlinson@mozilla.com>
Date: Fri, 13 Jan 2012 16:29:00 +0000
Subject: [PATCH] Putting the license after the DOCTYPE so IE8 doesn't go into
 quirks mode.

---
 example/rp/index.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/example/rp/index.html b/example/rp/index.html
index 2da19c671..7c9492c92 100644
--- a/example/rp/index.html
+++ b/example/rp/index.html
@@ -1,8 +1,8 @@
+<!DOCTYPE html>
 <!-- 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>
 <head>
 <meta charset="utf-8">
@@ -58,7 +58,7 @@ pre {
   <p>
     <input type="checkbox" id="silent">&nbsp;Silent <br/>
     <input type="checkbox" id="allowPersistent">&nbsp;Allow persistent sign-in <br/>
-    <input type="text" id="requiredEmail" width="80">&nbsp;Require a specific email <br/>    
+    <input type="text" id="requiredEmail" width="80">&nbsp;Require a specific email <br/>
     <button>Get an assertion</button>
   </p>
 </div>
@@ -105,7 +105,7 @@ $(document).ready(function() {
 
     navigator.id.get(function(assertion) {
       if (!assertion) {
-        $(".assertion pre").text("navigator.id.get() returns NULL"); 
+        $(".assertion pre").text("navigator.id.get() returns NULL");
       } else {
         $(".assertion pre").text(assertion);
         checkAssertion(assertion);
-- 
GitLab