Lines Matching refs:n

1405 var EOL = ['\n', '\r\n', '\r'];
1541 isLineStart = (ch === '\r' || ch === '\n');
1542 if (ch === '\r' && i + 1 < text.length && text.charAt(i + 1) === '\n') {
4687 "description": "The attr(n) function returns as a string the value of attribute n for the subject of the selector."
4867 "name": "n-resize",
4947 "syntax": "[ [ <url> [ <x> <y> ]? , ]* [ auto | default | none | context-menu | help | pointer | progress | wait | cell | crosshair | text | vertical-text | alias | copy | move | no-drop | not-allowed | e-resize | n-resize | ne-resize | nw-resize | s-resize | se-resize | sw-resize | w-resize | ew-resize | ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | all-scroll | zoom-in | zoom-out | grab | grabbing ] ]",
19185 "description": "If you reference an SVG image in a webpage (such as with the <img> element or as a background image), the SVG image can coordinate with the embedding element (its context) to have the image adopt property values set on the embedding element. To do this the embedding element needs to list the properties that are to be made available to the image by listing them as values of the -moz-context-properties property, and the image needs to opt in to using those properties by using values such as the context-fill value.\n\nThis feature is available since Firefox 55, but is only currently supported with SVG images loaded via chrome:// or resource:// URLs. To experiment with the feature in SVG on the Web it is necessary to set the svg.context-properties.content.enabled pref to true."
20376 "description": "The mask-border CSS property lets you create a mask along the edge of an element's border.\n\nThis property is a shorthand for mask-border-source, mask-border-slice, mask-border-width, mask-border-outset, mask-border-repeat, and mask-border-mode. As with all shorthand properties, any omitted sub-values will be set to their initial value."
20406 "description": "The mask-border-source CSS property specifies the source image used to create an element's mask border.\n\nThe mask-border-slice property is used to divide the source image into regions, which are then dynamically applied to the final mask border."
20525 "description": "The offset-path CSS property specifies the offset path where the element gets positioned. The exact element’s position on the offset path is determined by the offset-distance property. An offset path is either a specified path with one or multiple sub-paths or the geometry of a not-styled basic shape. Each shape or path must define an initial position for the computed value of \"0\" for offset-distance and an initial direction which specifies the rotation of the object to the initial position.\n\nIn this specification, a direction (or rotation) of 0 degrees is equivalent to the direction of the positive x-axis in the object’s local coordinate system. In other words, a rotation of 0 degree points to the right side of the UA if the object and its ancestors have no transformation applied."
21320 "description": "The scroll-snap-type-x CSS property defines how strictly snap points are enforced on the horizontal axis of the scroll container in case there is one.\n\nSpecifying any precise animations or physics used to enforce those snap points is not covered by this property but instead left up to the user agent."
21336 "description": "The scroll-snap-type-y CSS property defines how strictly snap points are enforced on the vertical axis of the scroll container in case there is one.\n\nSpecifying any precise animations or physics used to enforce those snap points is not covered by this property but instead left up to the user agent."
21348 "description": "The text-combine-upright CSS property specifies the combination of multiple characters into the space of a single character. If the combined text is wider than 1em, the user agent must fit the contents within 1em. The resulting composition is treated as a single upright glyph for layout and decoration. This property only has an effect in vertical writing modes.\n\nThis is used to produce an effect that is known as tate-chū-yoko (縦中横) in Japanese, or as 直書橫向 in Chinese."
21575 "description": "The max-zoom CSS descriptor sets the maximum zoom factor of a document defined by the @viewport at-rule. The browser will not zoom in any further than this, whether automatically or at the user's request.\n\nA zoom factor of 1.0 or 100% corresponds to no zooming. Larger values are zoomed in. Smaller values are zoomed out."
21581 "description": "The min-zoom CSS descriptor sets the minimum zoom factor of a document defined by the @viewport at-rule. The browser will not zoom out any further than this, whether automatically or at the user's request.\n\nA zoom factor of 1.0 or 100% corresponds to no zooming. Larger values are zoomed in. Smaller values are zoomed out."
22328 "description": "Represents an element that has an+b-1 siblings before it in the document tree, for any positive integer or zero value of n, and has a parent element."
22340 "description": "Represents an element that has an+b-1 siblings after it in the document tree, for any positive integer or zero value of n, and has a parent element."
22352 "description": "Represents an element that has an+b-1 siblings with the same expanded element name after it in the document tree, for any zero or positive integer value of n, and has a parent element."
22364 "description": "Represents an element that has an+b-1 siblings with the same expanded element name before it in the document tree, for any zero or positive integer value of n, and has a parent element."
23440 "description": "The ::-webkit-progress-value CSS pseudo-element represents the filled-in portion of the bar of a <progress> element. It is a child of the ::-webkit-progress-bar pseudo-element.\n\nIn order to let ::-webkit-progress-value take effect, -webkit-appearance needs to be set to none on the <progress> element."
24363 return '⚠️ Property is experimental. Be cautious when using it.️\n\n';
24365 return '?️ Property is nonstandard. Avoid using it.\n\n';
24367 return '?️️️ Property is obsolete. Avoid using it.\n\n';
24409 result += '\n(' + browserLabel + ')';
24412 result += "\n\nSyntax: " + entry.syntax;
24415 result += '\n\n';
24434 result += '\n\n(' + textToMarkedString(browserLabel) + ')';
24437 result += "\n\nSyntax: " + textToMarkedString(entry.syntax);
24440 result += '\n\n';
28216 MultiLineStream.prototype.goBack = function (n) {
28217 this.position -= n;
28219 MultiLineStream.prototype.advance = function (n) {
28220 this.position += n;
28225 MultiLineStream.prototype.peekChar = function (n) {
28226 if (n === void 0) { n = 0; }
28227 return this.source.charCodeAt(this.position + n) || 0;
28229 MultiLineStream.prototype.lookbackChar = function (n) {
28230 if (n === void 0) { n = 0; }
28231 return this.source.charCodeAt(this.position - n) || 0;
28288 var _NWL = '\n'.charCodeAt(0);
28546 result.push('\n');
28639 var n = this.stream.advanceWhileChar(function (ch) {
28642 return n > 0;
29861 var _NWL = '\n'.charCodeAt(0);
30803 var _NWL = '\n'.charCodeAt(0);
31036 function verb(n) { return function (v) { return step([n, v]); }; }
31809 this.styleSheet.accept(function (n) {
31810 if (n.type === _parser_cssNodes_js__WEBPACK_IMPORTED_MODULE_0__["NodeType"].SimpleSelector && n.length > 0) {
31811 var selector = docText.substr(n.offset, n.length);
32056 function computeRankNumber(n) {
32057 var nstr = n.toString();
32132 while (i >= 0 && ' \t\n\r":{[()]},*>+'.indexOf(text.charAt(i)) === -1) {
32556 function verb(n) { return function (v) { return step([n, v]); }; }
32947 function toTwoDigitHex(n) {
32948 var r = n.toString(16);
34040 node.getArguments().accept(function (n) {
34041 if (n instanceof _parser_cssNodes_js__WEBPACK_IMPORTED_MODULE_2__["BinaryExpression"]) {
34416 function verb(n) { return function (v) { return step([n, v]); }; }
34850 { func: 'nth($list, $n)', desc: localize('scss.builtin.nth', 'Returns a specific item in a list.') },
34851 { func: 'set-nth($list, $n, $value)', desc: localize('scss.builtin.set-nth', 'Replaces the nth item in a list.') },
34905 insertText: "@if ${1:expr} {\n\t$0\n}",
34912 insertText: "@for \\$${1:var} from ${2:start} ${3|to,through|} ${4:end} {\n\t$0\n}",
34919 insertText: "@each \\$${1:var} in ${2:list} {\n\t$0\n}",
34926 insertText: "@while ${1:condition} {\n\t$0\n}",
34933 insertText: "@mixin ${1:name} {\n\t$0\n}",
35015 markdownDoc.value += '\n\n';
35074 function verb(n) { return function (v) { return step([n, v]); }; }
35372 var value = this.result.join('\n');
37377 return { value: '```' + entry.language + '\n' + entry.value + '\n```\n' };