mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 13:25:00 +00:00
Bug 1338030 - regionCueStyleBox: implementation RegionCueStyleBox which correspong to "the children WebVTT region object". r=rillian
MozReview-Commit-ID: 2qwU1cYnI50 --HG-- extra : rebase_source : 5b63103e9786a94efcea0e0c7bb0988dfc0cf7a6
This commit is contained in:
parent
3c59a3adbb
commit
25491eae61
@ -635,6 +635,44 @@ const { XPCOMUtils } = require("resource://gre/modules/XPCOMUtils.jsm");
|
||||
RegionNodeBox.prototype = _objCreate(StyleBox.prototype);
|
||||
RegionNodeBox.prototype.constructor = RegionNodeBox;
|
||||
|
||||
function RegionCueStyleBox(window, cue) {
|
||||
StyleBox.call(this);
|
||||
this.cueDiv = parseContent(window, cue.text, PARSE_CONTENT_MODE.REGION_CUE);
|
||||
|
||||
var regionCueStyles = {
|
||||
position: "relative",
|
||||
writingMode: "horizontal-tb",
|
||||
unicodeBidi: "plaintext",
|
||||
width: "auto",
|
||||
height: "auto",
|
||||
textAlign: cue.align,
|
||||
};
|
||||
// TODO: fix me, LTR and RTL ? using margin replace the "left/right"
|
||||
// 6.1.14.3.3
|
||||
var offset = cue.computedPosition * cue.region.width / 100;
|
||||
// 6.1.14.3.4
|
||||
switch (cue.align) {
|
||||
case "start":
|
||||
case "left":
|
||||
regionCueStyles.left = offset + "%";
|
||||
regionCueStyles.right = "auto";
|
||||
break;
|
||||
case "end":
|
||||
case "right":
|
||||
regionCueStyles.left = "auto";
|
||||
regionCueStyles.right = offset + "%";
|
||||
break;
|
||||
case "middle":
|
||||
break;
|
||||
}
|
||||
|
||||
this.div = window.document.createElement("div");
|
||||
this.applyStyles(regionCueStyles);
|
||||
this.div.appendChild(this.cueDiv);
|
||||
}
|
||||
RegionCueStyleBox.prototype = _objCreate(StyleBox.prototype);
|
||||
RegionCueStyleBox.prototype.constructor = RegionCueStyleBox;
|
||||
|
||||
// Represents the co-ordinates of an Element in a way that we can easily
|
||||
// compute things with such as if it overlaps or intersects with another Element.
|
||||
// Can initialize it with either a StyleBox or another BoxPosition.
|
||||
|
Loading…
Reference in New Issue
Block a user