Skip to content

Commit ff227c1

Browse files
committed
Resolve conflict.
1 parent 36c28a1 commit ff227c1

File tree

1 file changed

+0
-5
lines changed
  • 2-ui/1-document/05-basic-dom-node-properties

1 file changed

+0
-5
lines changed

2-ui/1-document/05-basic-dom-node-properties/article.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,10 @@ The classes are:
2424
- [HTMLElement](https://html.spec.whatwg.org/multipage/dom.html#htmlelement) -- is finally the basic class for all HTML elements. It is inherited by concrete HTML elements:
2525
- [HTMLInputElement](https://html.spec.whatwg.org/multipage/forms.html#htmlinputelement) -- the class for `<input>` elements,
2626
- [HTMLBodyElement](https://html.spec.whatwg.org/multipage/semantics.html#htmlbodyelement) -- the class for `<body>` elements,
27-
<<<<<<< HEAD
28-
- [HTMLAnchorElement](https://html.spec.whatwg.org/multipage/semantics.html#htmlanchorelement) -- the class for `<a>` elements
29-
- ...and so on, each tag has its own class that may provide specific properties and methods.
30-
=======
3127
- [HTMLAnchorElement](https://html.spec.whatwg.org/multipage/semantics.html#htmlanchorelement) -- the class for `<a>` elements,
3228
- ...and so on.
3329

3430
There are many other tags with their own classes that may specific properties and methods, while some elements, such as `<span>`, `<section>`, `<article>` do not have any specific properties, so they are instances of `HTMLElement` class.
35-
>>>>>>> 4541b7af7584014a676da731f6e8774da5e059f6
3631

3732
So, the full set of properties and methods of a given node comes as the result of the inheritance.
3833

0 commit comments

Comments
 (0)