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

Unified Diff: Source/core/html/track/TextTrackCue.idl

Issue 69993003: Split VTTCue from TextTrackCue (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month 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: Source/core/html/track/TextTrackCue.idl
diff --git a/Source/core/html/track/TextTrackCue.idl b/Source/core/html/track/TextTrackCue.idl
index db7112ae1eac914fb5b616bec1f7c90fed9a3d1a..f8cbfa00c401971564d97950a9ddeea7fd33cf6b 100644
--- a/Source/core/html/track/TextTrackCue.idl
+++ b/Source/core/html/track/TextTrackCue.idl
@@ -25,8 +25,8 @@
[
RuntimeEnabled=VideoTrack,
- Constructor(double startTime, double endTime, DOMString text),
- ConstructorCallWith=Document
+ CustomToV8,
+ DoNotGenerateWrap
] interface TextTrackCue : EventTarget {
readonly attribute TextTrack track;
@@ -35,19 +35,6 @@
[SetterRaisesException] attribute double endTime;
attribute boolean pauseOnExit;
- [SetterRaisesException] attribute DOMString vertical;
- attribute boolean snapToLines;
- [SetterRaisesException] attribute long line;
- [SetterRaisesException] attribute long position;
- [SetterRaisesException] attribute long size;
- [SetterRaisesException] attribute DOMString align;
-
- attribute DOMString text;
- DocumentFragment getCueAsHTML();
-
attribute EventHandler onenter;
attribute EventHandler onexit;
-
- [RuntimeEnabled=WebVTTRegions] attribute DOMString regionId;
};
-

Powered by Google App Engine
This is Rietveld 408576698