mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-09 14:28:25 +00:00
23a22c597a
Editor creates a `<br>` element to end of a block if last line of the block is empty because caret should be placed as there is an empty line. Such special `<br>` element has `type` attribute whose value is "_moz". However, adding/removing the attribute is expensive and such hacky attribute shouldn't be referred nor changed by web apps. Therefore, this patch makes `HTMLBRElement` take another specific flag whether it's a special node for empty last line. For making the meaning clearer, this patch calls the such `<br>` elements as "padding `<br>` element for empty last line" insead of "moz-br". So, this patch also includes a lot of renaming methods and variables, and modifying related comments. Note that with this change, `IMEContentObserver` counts the padding `<br>` element in `<textarea>` because it's inserted before setting the new flag and setting the flag does not cause DOM tree mutation. This issue will be fixed by the following patches. Differential Revision: https://phabricator.services.mozilla.com/D39858 --HG-- extra : moz-landing-system : lando
38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* http://www.whatwg.org/specs/web-apps/current-work/#the-br-element
|
|
* http://www.whatwg.org/specs/web-apps/current-work/#other-elements,-attributes-and-apis
|
|
*
|
|
* © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and
|
|
* Opera Software ASA. You are granted a license to use, reproduce
|
|
* and create derivative works of this document.
|
|
*/
|
|
|
|
// http://www.whatwg.org/specs/web-apps/current-work/#the-br-element
|
|
[HTMLConstructor]
|
|
interface HTMLBRElement : HTMLElement {};
|
|
|
|
// http://www.whatwg.org/specs/web-apps/current-work/#other-elements,-attributes-and-apis
|
|
partial interface HTMLBRElement {
|
|
[CEReactions, SetterThrows]
|
|
attribute DOMString clear;
|
|
};
|
|
|
|
// Mozilla extensions
|
|
|
|
partial interface HTMLBRElement {
|
|
// Set to true if the <br> element is created by editor for placing caret
|
|
// at proper position in empty editor.
|
|
[ChromeOnly]
|
|
readonly attribute boolean isPaddingForEmptyEditor;
|
|
// Set to true if the <br> element is created by editor for placing caret
|
|
// at proper position making last empty line in a block element in HTML
|
|
// editor or <textarea> element visible.
|
|
[ChromeOnly]
|
|
readonly attribute boolean isPaddingForEmptyLastLine;
|
|
};
|