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

Unified Diff: chrome/browser/resources/media_internals/media_internals.css

Issue 7273089: Display active audio streams on chrome://media-internals. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixing bug and removing double quotes. Created 9 years, 5 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: chrome/browser/resources/media_internals/media_internals.css
diff --git a/chrome/browser/resources/media_internals/media_internals.css b/chrome/browser/resources/media_internals/media_internals.css
new file mode 100644
index 0000000000000000000000000000000000000000..b079e317ca2464d5a810882b4fb37ef2ec91b353
--- /dev/null
+++ b/chrome/browser/resources/media_internals/media_internals.css
@@ -0,0 +1,17 @@
+/*
Evan Stade 2011/07/15 22:31:05 /* Copyright (c) 2011 The Chromium Authors. All ri
Scott Franklin 2011/07/15 23:18:15 Done.
+ * Copyright (c) 2011 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.audio-stream[status = 'created'] {
Evan Stade 2011/07/15 22:31:05 no spaces around = (I don't know why)
Scott Franklin 2011/07/15 23:18:15 Done.
+ color: blue;
+}
+
+.audio-stream[status = 'closed'] {
+ text-decoration: line-through;
+}
+
+.audio-stream[status = 'error'] {
+ color: red;
+}

Powered by Google App Engine
This is Rietveld 408576698