-
Updated
Sep 2, 2021 - JavaScript
dom
Here are 2,684 public repositories matching this topic...
Marko Version: 4.18.4
Details
I use some facebook markup that I let facebook parse from DOM:
<fb:login-button
auto-logout-link="false"
button-type="continue_with"
size="large"
scope="public_profile,email"
use-continue-as="true">
</fb:login-button>
In my onMount I then let the facebook API do it's thing with th
-
Updated
Sep 2, 2021 - Java
-
Updated
Aug 17, 2021 - JavaScript
-
Updated
Feb 15, 2021 - JavaScript
-
Updated
Sep 3, 2021 - JavaScript
-
Updated
May 12, 2021 - JavaScript
-
Updated
Aug 10, 2021 - CSS
-
Updated
Aug 10, 2021 - Nunjucks
-
Updated
Aug 29, 2021 - C#
Relevant spec sections:
https://drafts.csswg.org/selectors-4/#the-dir-pseudo
https://html.spec.whatwg.org/multipage/semantics-other.html#selector-ltr
The interesting cases to test are from the definition of "directionality" in HTML:
https://html.spec.whatwg.org/multipage/dom.html#the-directionality
- element with
dir="ltr"matches:dir(ltr)(#26159) - root element without `
-
Updated
Dec 9, 2019 - JavaScript
-
Updated
Sep 1, 2021 - TypeScript
-
Updated
Aug 11, 2021 - JavaScript
-
Updated
Jan 28, 2020 - Ruby
-
Updated
Feb 17, 2021 - HTML
-
Updated
Aug 8, 2021 - C++
I was working on something using the <details /> element and was looking to test whether the inner text was visible or not. What I found out while looking through the code/tests for toBeVisible() is that:
- The inner text needs to be inside another element. e.g.
<details>
<summary>Title</summary>
<div>Explanation text</div>
</details>- This is necessary becaus
-
Updated
Sep 2, 2021 - C++
-
Updated
Aug 31, 2021 - JavaScript
-
Updated
Aug 27, 2021 - JavaScript
Improve this page
Add a description, image, and links to the dom topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the dom topic, visit your repo's landing page and select "manage topics."


When looking up an attribute with .attr(), the name of the attribute should be lowercased before looking up in .attribs object.