Commit a0ba52d6 authored by mrbean-bremen's avatar mrbean-bremen
Browse files

Use Hidden as default SvgOverflow value

- changes behavior to be as described in this file and in the W3C test
masking-path-03-b
- fixes that test
- this has been a regression after removing the unconditional clip box
for every view box, (see #279)
parent 2f426fa3
......@@ -21,6 +21,9 @@ namespace Svg
[TypeConverter(typeof(SvgOverflowConverter))]
public enum SvgOverflow
{
/// <summary>Overflow is not rendered.</summary>
Hidden,
/// <summary>The value is inherited from the parent element.</summary>
Inherit,
......@@ -30,9 +33,6 @@ namespace Svg
/// <summary>Overflow is rendered.</summary>
Visible,
/// <summary>Overflow is not rendered.</summary>
Hidden,
/// <summary>Overflow causes a scrollbar to appear (horizontal, vertical or both).</summary>
Scroll
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment