Disable stack execution on plugins
[claws.git] / src / plugins / litehtml_viewer / litehtml / css_position.h
blob978a81ab5db74a54a0d7c58106df96ddad991790
1 #ifndef LH_CSS_POSITION_H
2 #define LH_CSS_POSITION_H
4 #include "css_length.h"
6 namespace litehtml
8 struct css_position
10 css_length x;
11 css_length y;
12 css_length width;
13 css_length height;
16 struct css_size
18 css_length width;
19 css_length height;
21 css_size() = default;
22 css_size(css_length width, css_length height) : width(width), height(height) {}
25 using size_vector = std::vector<css_size>;
28 #endif // LH_CSS_POSITION_H