Exemplo n.º 1
0
 /// <summary>
 /// Init.
 /// </summary>
 internal CssData()
 {
     _mediaRules = new CssMediaRuleCollection();
     _pageRules  = new CssPageRuleCollection();
 }
Exemplo n.º 2
0
 internal CssData(CssData other)
 {
     ArgChecker.AssertArgNotNull(other, nameof(other));
     _mediaRules = new CssMediaRuleCollection(other._mediaRules);
     _pageRules  = new CssPageRuleCollection(other._pageRules);
 }
Exemplo n.º 3
0
 public CssMediaRuleCollection(CssMediaRuleCollection other)
     : base(other)
 {
 }