1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/addon-sdk/source/examples/annotator/data/editor/annotation-editor.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,39 @@ 1.4 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.5 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.7 + 1.8 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 1.9 +"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 1.10 + 1.11 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> 1.12 +<head> 1.13 + <title>Annotation</title> 1.14 + <style type="text/css" media="all"> 1.15 + body, html { 1.16 + font: 100% arial, helvetica, sans-serif; 1.17 + padding: 0; 1.18 + margin: 0; 1.19 + position: fixed; 1.20 + } 1.21 + textarea { 1.22 + width: 100%; 1.23 + height: 100%; 1.24 + margin: 10px; 1.25 + padding: 0; 1.26 + color: inherit !important; 1.27 + font: inherit !important; 1.28 + background: transparent; 1.29 + border: none; 1.30 + } 1.31 + </style> 1.32 + 1.33 +</head> 1.34 + 1.35 +<body> 1.36 + 1.37 +<textarea rows='10' cols='20' id='annotation-box'> 1.38 +</textarea> 1.39 + 1.40 +</body> 1.41 + 1.42 +</html>