Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: dart/site/try/index.html

Issue 535883002: Use JavaScript to detect if Selection.modify is available. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Merged with r39804 Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | dart/site/try/src/interaction_manager.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 3 Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 for details. All rights reserved. Use of this source code is governed by a 4 for details. All rights reserved. Use of this source code is governed by a
5 BSD-style license that can be found in the LICENSE file. 5 BSD-style license that can be found in the LICENSE file.
6 --> 6 -->
7 <html lang="en" manifest="ssl.appcache" itemscope itemtype="http://schema.org/Pr oduct"> 7 <html lang="en" manifest="ssl.appcache" itemscope itemtype="http://schema.org/Pr oduct">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title>Try Dart!</title> 10 <title>Try Dart!</title>
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 <a href="http://www.google.com/intl/en/policies/privacy/">Privacy Policy</a> 268 <a href="http://www.google.com/intl/en/policies/privacy/">Privacy Policy</a>
269 </p> 269 </p>
270 </div> 270 </div>
271 </div> 271 </div>
272 </div> 272 </div>
273 </footer> 273 </footer>
274 <!-- 274 <!--
275 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script> 275 <script type="application/javascript" src="https://dart.googlecode.com/svn/branc hes/bleeding_edge/dart/pkg/browser/lib/dart.js"></script>
276 <script type="application/dart" src="leap.dart"></script> 276 <script type="application/dart" src="leap.dart"></script>
277 --> 277 -->
278 <script type="application/javascript">
279 if (self.localStorage &&
280 !Object.prototype.hasOwnProperty.call(
281 self.localStorage, 'hasSelectionModify')) {
282 self.localStorage.hasSelectionModify =
283 typeof window.getSelection().modify != 'undefined';
284 }
285 </script>
278 <script type="application/javascript" src="leap.dart.js"></script> 286 <script type="application/javascript" src="leap.dart.js"></script>
279 </body> 287 </body>
280 </html> 288 </html>
OLDNEW
« no previous file with comments | « no previous file | dart/site/try/src/interaction_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698