HTML APIs Flashcards

1
Q

What does the DOM (Document Object Model) represent?

A

The DOM represents a tree of nodes, including elements, attributes, and text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the Accessibility Tree (AOM)?

A

The Accessibility Tree (AOM) is derived from the DOM for accessibility purposes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the key functionalities of browser-provided APIs for HTML elements?

A

Browser-provided APIs offer methods, events, property querying, and updating for HTML elements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does the Element node provide in the DOM?

A

The Element node provides information about the attributes set on an element.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How can you query all images and log their alt attributes in JavaScript?

A

Use document.querySelectorAll('img') to select all images, then loop through them and log imageInstance.alt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the base interface for HTML elements?

A

The base interface for HTML elements is Element, with HTMLElement inheriting from it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does the Node interface represent in the DOM?

A

The Node interface represents every DOM node and provides methods to interact with the DOM tree.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the purpose of the Document interface?

A

The Document interface provides quick access to node types and inherits from Node.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the specific purpose of the HTMLDocument interface?

A

The HTMLDocument interface is specific to HTML documents and provides access to document-specific info like Document.location, Document.lastModified, and Document.cookie.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does the Window interface provide access to?

A

The Window interface provides access to functions, namespaces, objects, constructors, and details about the window/device and tab.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does the global window object represent?

A

The global window object represents the window in which the script is running, one for each browser tab.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly