xref: /php-src/ext/dom/lexbor/lexbor/html/style.c (revision f0934090)
1 /*
2  * Copyright (C) 2022-2023 Alexander Borisov
3  *
4  * Author: Alexander Borisov <borisov@lexbor.com>
5  */
6 
7 #include "lexbor/html/style.h"
8 
9 
10 uintptr_t
lxb_html_style_id_by_name(lxb_html_document_t * doc,const lxb_char_t * name,size_t size)11 lxb_html_style_id_by_name(lxb_html_document_t *doc,
12                           const lxb_char_t *name, size_t size)
13 {
14     const lxb_css_entry_data_t *data;
15 
16     data = lxb_css_property_by_name(name, size);
17 
18     if (data == NULL) {
19         return lxb_html_document_css_customs_find_id(doc, name, size);
20     }
21 
22     return data->unique;
23 }
24