docs(webapi): fix inherited properties description for Range#42549
Closed
MUSKANNISHAD wants to merge 7 commits intomdn:mainfrom
Closed
docs(webapi): fix inherited properties description for Range#42549MUSKANNISHAD wants to merge 7 commits intomdn:mainfrom
MUSKANNISHAD wants to merge 7 commits intomdn:mainfrom
Conversation
Collaborator
|
Hi! This PR contains some unrelated changes. I see you've opened quite a few PRs recently, and many of them have similar problems. Please check when you open a PR that it has exactly the changes you expect. I think it would be better for you to open fewer PRs and to be more careful with the PRs that you open. |
Contributor
Author
|
Thanks for pointing this out — you’re right. |
fe236da to
286cd94
Compare
Contributor
|
Preview URLs
External URLs (1)URL:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes an incorrect statement in the Range interface documentation that claimed there are no inherited properties.
The page now correctly states that Range inherits properties from
AbstractRange.Motivation
The previous description contradicted both the DOM specification and related MDN pages (e.g. StaticRange), which could confuse readers about the Range inheritance model.
Related issue
#42547