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

Unified Diff: third_party/WebKit/Source/devtools/front_end/terminal/xterm.js/addons/linkify/index.html

Issue 2372303003: DevTools: introduce external service client (behind experiment). (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/terminal/xterm.js/addons/linkify/index.html
diff --git a/third_party/WebKit/Source/devtools/front_end/terminal/xterm.js/addons/linkify/index.html b/third_party/WebKit/Source/devtools/front_end/terminal/xterm.js/addons/linkify/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..5f429326b807d3049c70c9a6ce926b794a08484e
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/terminal/xterm.js/addons/linkify/index.html
@@ -0,0 +1,36 @@
+<!doctype html>
+<html>
+ <head>
+ <link rel="stylesheet" href="../../src/xterm.css" />
+ <link rel="stylesheet" href="../../demo/style.css" />
+ <script src="../../src/xterm.js"></script>
+ <script src="linkify.js"></script>
+ <style>
+ body {
+ color: #111;
+ }
+
+ #terminal-container {
+ max-width: 900px;
+ margin: 0 auto;
+ }
+
+ #terminal-container a {
+ color: #fff;
+ }
+ </style>
+ </head>
+ <body>
+ <div id="terminal-container"></div>
+ <script>
+ var term = new Terminal(),
+ container = document.getElementById('terminal-container');
+
+ term.open(container);
+ term.writeln('Hello, welcome to xterm.js');
+ term.writeln('');
+ term.writeln('Check it out at github.com/sourcelair/xterm.js');
+ term.linkify();
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698