Reasoning with Style

Reasoning with Style

Proceedings of the Twenty-Fourth International Joint Conference on Artificial Intelligence (IJCAI 2015) Reasoning with Style Mart´ı Bosch∗ y z Pierre Geneves` y z Nabil Laya¨ıday z ∗ Universitat Politecnica` de Catalunya y CNRS, LIG z Inria Abstract Mesbah and Mirshokraie, 2012]. The simplicity of CSS syn- tax may be misleading as it hides the complexity of its most The Cascading Style Sheets (CSS) language constitutes a key advanced aspects. For this reason, developers increasingly component of web applications. It offers a series of sophis- rely on frameworks that automatically generate CSS files. ticated features to stylize web pages. Its apparent simplicity This often results in a code that is very hard to maintain. This and power are however counter-balanced by the difficulty of also leads to redundant declarations and inaccessible selec- debugging and maintaining style sheets, tasks for which de- tors, that unnecessarily increase resources required to transfer velopers still lack appropriate tools. In particular, significant the CSS files (and therefore web traffic at a global scale) and portions of CSS code become either useless or redundant, and to process the page layout. Previous studies [Meyerovich and tend to accumulate over time. The situation becomes even Bodik, 2010] showed that the visual layout of web pages con- worse as more complex features are added to the CSS lan- sumes 40–70% of the processing time of the browser. Simpli- guage (e.g. CSS3 powerful selectors). A direct consequence fying CSS code is essential in reducing this cost. Current syn- is a waste of CPU that is required to display web pages, as tax optimizers1 perform only syntactic analyses, and are un- well as the significant amount of useless traffic at web scale. aware of the CSS semantics. Therefore, they can only achieve Style sheets are designed to operate on a set of documents a fraction of the potential optimizations. (possibly generated). However, existing techniques consist The standard CSS development practice involves the use of in syntax validators, optimizers and runtime debuggers that empirical methods such as runtime debuggers. While these operate in one particular document instance. As such, they tools are useful in testing, they depend strongly on the doc- do not provide guarantees concerning all web pages in CSS ument instance on which the style sheet is applied. How- refactoring, such as preservation of the formatting. This is ever, as style sheets usually apply to a wider set of docu- partly because they are essentially syntactic and do not take ments, modifications achieved on a particular instance might advantage of CSS semantics to detect redundancies. undesirably alter the presentation of other documents. On We propose a set of automated refactoring techniques aimed the other hand, CSS code very often comes from different at removing redundant and inaccessible declarations and sources, such as external files, the HTML’s style element, rules, without affecting the layout of any document to which or inline styles set directly as attributes on specific elements. the style sheet is applied. We implemented a prototype that This makes it hard to spot the origin of bugs, and incurs sig- has been extensively tested with popular web sites (such as nificant debugging costs. The tool we propose is intended to Google Sites, CNN, Apple, etc.). We show that significant remove redundant code, clean and refactor CSS files, lessen- size reduction can be obtained while preserving the code ing the reliance on debuggers as well as reducing file’s sizes. readability and improving maintainability. Our tool involves automated analysis of the style sheet se- mantics for performing size reductions which are not achiev- able by existing (syntactic) compressors. 1 Introduction Cascading Style Sheets (CSS) [Consortium, 2014; Lie, Contributions and Outline We recall the main concepts 2005] is a style sheet language used to format documents of CSS in Section 2. We propose automated refactoring tech- written in markup languages, and nowadays it is widely used niques in Section 3 that aim at removing redundant and in- to style web pages. To suit the current context, where so much accessible CSS declarations and rules, while preserving the attention is paid to the user experience in different kinds of layout of documents to which the style sheet is applied2. We devices, it includes a series of sophisticated features that offer implemented a prototype described in Section 4. We report a very wide range of possibilities to designers and developers. on experimental results with CSS of popular web sites (such Despite its widespread use and increasingly important as Google Sites, CNN, Apple, etc.) in Section 5. We show role, CSS received very little attention from the research community [Quint and Vatton, 2007; Marden and Munson, 1For example: cleancss.com, codebeautifier.com, csslint.net, etc. 1999] with the notable exceptions of [Geneves` et al., 2012; 2Work partially supported by ANR TYPEX ANR-11-BS02-00. 2227 that we obtain significant size reductions for these sites that techniques do not require any information other than the style represent a considerable fraction of web traffic. sheet itself, regardless of which instance is under considera- tion. For this purpose, our methods rely on the semantics 2 The CSS Language of the CSS components described previously. In particular, Cascading Style Sheets play nowadays a key role in the our method aim at analysing and leveraging the fact that in web infrastructure and in enhancing the user experience. Be- CSS, rules use selectors that match the set of elements that are sides web developers, the simplicity of its syntax has attracted styled by the rule’s declarations. Our main method consists also graphical and web designers. CSS permits separating the in the detection of semantic relations between CSS selectors. content from presentation and a few rules are capable of pro- When some of these relations are detected, further analysis of ducing impressively fancy presentations. A style sheet C can some CSS aspects might reveal that some declarations are in be seen as a sequence of rules, where each rule R consists of a fact unnecessary and can be deleted. selector S, and a set of declarations called declaration blocks. Selectors identify the set of elements that are styled by the 3.1 Deleting redundant declarations declarations di. Each declaration di is a pair of a property In the context of this paper, we will state a CSS declaration pi and its associated value vi, that define how the elements as redundant if (1) it is always masked by another declaration, selected by S will look like in the browser. or (2) it is verbose as the styling that it provides is already provided by some other declaration. 2.1 Selectors CSS selectors decide which elements will be styled by the Masked declarations rules’ declarations. The selectors’ language is very expressive A declaration da is always inactive iff it is masked by some and permits matching elements based on the elements’ struc- other declaration db concerning the same CSS property. In ture and attributes, as well as grouping selectors that share the order to mask da, db must apply to at least the same set of same declarations. Selectors Level 3 [C¸elik et al., 2011] also elements as da, and this is why relations between the selectors includes a series of advanced features that empower CSS’ under which da and db are stated become crucial: selectors styling capabilities while inevitably making it more complex. must either hold an equivalence or a containment relation. An efficient use of selectors is one of the key aspects towards the conception of maintainable CSS code. Listing 1: Example of masked declaration 2.2 Specificity 1 li.foo{ text-indent: none; 2 color: blue; When several rules apply to a given element, CSS priori- 3 font-weight: bold} tizes the declarations that have the !important specifier. 4 li[class=’foo’]{ text-indent: 10px; In case of equality, CSS picks the declaration whose selec- 5 color: blue} tor has a highest specificity. The specificity of a selector is represented by a four integer vector, whose components are, ¦ ¥ from most to less important, determined as: (1) 1 if the prop- In Listing 1 we have two rules with equivalent selectors: li.foo li[class=’foo’] li erty is declared under the style attribute, 0 otherwise, (2) “ ” and “ ” both select an class foo the number of references to the id attribute with the # sym- element with the attribute set to “ ”. They just bol, (3) the number of class selectors, attribute selectors and use different syntax to achieve the same semantics. Any el- pseudo-classes, and (4) the number of element type selectors ement matched by the first rule will also be matched by the and pseudo-elements. If the selectors have the same speci- second one and viceversa, and as both rules have declarations color text-indent ficity, the latter rule in the syntactic order gets precedence. concerning the properties and , CSS specificity will decide which values will apply. In Listing 1, 2.3 Media Rules both selectors have the same specificity, so the declarations A media rule starts by @media followed by a condition under the latter one “li[class=’foo’]” will have pref- called media query. This defines a block in which we can erence. Consequently, for these conflicting declarations, the add a set of CSS rules that only apply when the media query values from “li[class=’foo’]” will apply, and the ones is satisfied. The media queries define the style sheet target from “li.foo” will be always inactive (masked). By delet- according to expressions concerning devices’ features, as for ing those declarations we achieve a lighter code with the same example the dimensions.

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    7 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us