We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AngleSharp
For more information, see the CONTRIBUTING guide.
CONTRIBUTING
CSS boder-style not properly expanded when 3 values are given.
<!DOCTYPE html> <html> <head><title></title></head> <body style="border-style: hidden double dashed;"></body> </html>
var styleDeclaration = document.Body.ComputeCurrentStyle();
Expected behavior: As per CSS border-style
When three values are specified, the first style applies to the top, the second to the left and right, the third to the bottom.
"border-top-style: hidden" "border-left-style: double" "border-right-style: double" "border-bottom-style: dashed"
Actual behavior:
"border-top-style: double" "border-left-style: double" "border-right-style: hidden" "border-bottom-style: dashed"
Environment details: Windows 10, .Net 4.7
Fix the order into which the property is expanded.
The text was updated successfully, but these errors were encountered:
Fixed border-style #34
275b0f4
Landed in devel.
devel
Sorry, something went wrong.
No branches or pull requests
Bug Report
Prerequisites
AngleSharp
directly)For more information, see the
CONTRIBUTING
guide.Description
CSS boder-style not properly expanded when 3 values are given.
Steps to Reproduce
var styleDeclaration = document.Body.ComputeCurrentStyle();
Expected behavior:
As per CSS border-style
Actual behavior:
Environment details:
Windows 10, .Net 4.7
Possible Solution
Fix the order into which the property is expanded.
The text was updated successfully, but these errors were encountered: