#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_PROPERTIES_STYLE_BUILDING_UTILS_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_PROPERTIES_STYLE_BUILDING_UTILS_H_
#include "third_party/blink/renderer/core/style/border_image_length.h"
#include "third_party/blink/renderer/core/style/border_image_length_box.h"
#include "third_party/blink/renderer/platform/geometry/length.h"
#include "third_party/blink/renderer/platform/geometry/length_box.h"
namespace blink {
namespace style_building_utils {
inline bool BorderImageLengthMatchesAllSides(
const BorderImageLengthBox& border_image_length_box,
const BorderImageLength& border_image_length) { … }
inline bool LengthMatchesAllSides(const LengthBox& length_box,
const Length& length) { … }
}
}
#endif